Displaying 2 results from an estimated 2 matches for "get_max_size".
2007 Apr 30
0
[997] branches/wxruby2/wxwidgets_282: Window - 2.6 -> 2.8 API, new methods and deprecations; update doc
.../ins><span class="cx">
</span><span class="cx"> h4. See also
</span><span class="cx">
</span><span class="lines">@@ -1039,14 +1081,16 @@
</span><span class="cx"> "Size":size.html *get_max_size*()
</span><span class="cx">
</span><span class="cx"> Returns the maximum size of the window, an indication to the sizer layout mechanism
</span><del>-that this is the maximum possible size.
</del><ins>+that this is the maximum pos...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...cial_substitution : 1;
+ unsigned is_name_type : 1;
+ unsigned is_objcproto_name : 1;
+
+ node_meta() { memset(this, 0, sizeof(*this)); }
+};
+
+class node
+{
+ node_meta meta;
+
+public:
+ node() = default;
+ node(node_meta meta) : meta(meta) {} // 5 meta line.
+
+ // unsigned get_max_size() const { return meta.max_size; }
+ bool has_array() const { return meta.has_array; }
+ void has_array(bool value) {
+ meta.has_array = value;
+ meta.has_rhs_component |= value;
+ }
+
+ bool has_function() const { return meta.has_function; }
+ void has_function(bool val...