Home
last modified time | relevance | path

Searched refs:bool_attribute (Results 1 – 13 of 13) sorted by relevance

/dports/devel/inilib/inilib-1.0.7b3/src/
H A Dbool_attribute.cc28 INI::bool_attribute::bool_attribute(bool _value) : value(_value) in bool_attribute() function in INI::bool_attribute
147 INI::bool_attribute::operator*=(bool a) in operator *=()
165 INI::bool_attribute::operator*=(int a) in operator *=()
213 INI::bool_attribute::operator/=(int a) in operator /=()
261 INI::bool_attribute::operator%=(int a) in operator %=()
309 INI::bool_attribute::operator+=(int a) in operator +=()
357 INI::bool_attribute::operator-=(int a) in operator -=()
388 INI::bool_attribute::operator++() in operator ++()
397 INI::bool_attribute::operator--() in operator --()
406 INI::bool_attribute::get_type() const in get_type()
[all …]
H A Dattribute.cc114 data = new bool_attribute(new_value); in operator =()
209 data = new bool_attribute(false); in operator bool()
219 data = new bool_attribute(false); in operator *=()
269 data = new bool_attribute(false); in operator *=()
296 data = new bool_attribute(false); in operator /=()
346 data = new bool_attribute(false); in operator /=()
373 data = new bool_attribute(false); in operator %=()
423 data = new bool_attribute(false); in operator %=()
450 data = new bool_attribute(false); in operator +=()
500 data = new bool_attribute(false); in operator +=()
[all …]
H A DMakefile.am17 bool_attribute.cc \
50 bool_attribute.h \
H A Dbool_attribute.h26 class bool_attribute : public attribute {
28 bool_attribute(bool);
H A DMakefile.in88 am__objects_1 = attribute.$(OBJEXT) bool_attribute.$(OBJEXT) \
210 bool_attribute.cc \
237 bool_attribute.h \
346 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bool_attribute.Po@am__quote@
/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/src/msw/
H A Dmsfont.c172 bool_attribute(char *s, BYTE *val) in bool_attribute() function
201 n=bool_attribute(s, &lfont->lfItalic); in parse_font()
203 n=bool_attribute(s, &lfont->lfUnderline); in parse_font()
205 n=bool_attribute(s, &lfont->lfStrikeOut); in parse_font()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/accessibility/
H A Dax_enum_util.cc1820 switch (bool_attribute) { in ToString()
1863 if (0 == strcmp(bool_attribute, "none")) in ParseBoolAttribute()
1865 if (0 == strcmp(bool_attribute, "busy")) in ParseBoolAttribute()
1867 if (0 == strcmp(bool_attribute, "editableRoot")) in ParseBoolAttribute()
1873 if (0 == strcmp(bool_attribute, "grabbed")) in ParseBoolAttribute()
1875 if (0 == strcmp(bool_attribute, "liveAtomic")) in ParseBoolAttribute()
1877 if (0 == strcmp(bool_attribute, "modal")) in ParseBoolAttribute()
1883 if (0 == strcmp(bool_attribute, "scrollable")) in ParseBoolAttribute()
1885 if (0 == strcmp(bool_attribute, "clickable")) in ParseBoolAttribute()
1887 if (0 == strcmp(bool_attribute, "clipsChildren")) in ParseBoolAttribute()
[all …]
H A Dax_enum_util.h61 AX_BASE_EXPORT const char* ToString(ax::mojom::BoolAttribute bool_attribute);
63 const char* bool_attribute);
H A Dax_node_data.cc521 base::EraseIf(bool_attributes, [attribute](const auto& bool_attribute) { in RemoveBoolAttribute() argument
522 return bool_attribute.first == attribute; in RemoveBoolAttribute()
1467 for (const std::pair<ax::mojom::BoolAttribute, bool>& bool_attribute : in ToString() local
1469 std::string value = bool_attribute.second ? "true" : "false"; in ToString()
1470 switch (bool_attribute.first) { in ToString()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/
H A Dax_enum_util.h57 AX_BASE_EXPORT const char* ToString(ax::mojom::BoolAttribute bool_attribute);
H A Dax_node_data.cc522 base::EraseIf(bool_attributes, [attribute](const auto& bool_attribute) { in RemoveBoolAttribute() argument
523 return bool_attribute.first == attribute; in RemoveBoolAttribute()
1551 for (const std::pair<ax::mojom::BoolAttribute, bool>& bool_attribute : in ToString() local
1553 std::string value = bool_attribute.second ? "true" : "false"; in ToString()
1554 switch (bool_attribute.first) { in ToString()
H A Dax_enum_util.cc966 const char* ToString(ax::mojom::BoolAttribute bool_attribute) { in ToString() argument
967 switch (bool_attribute) { in ToString()
/dports/devel/inilib/inilib-1.0.7b3/contrib/test_suite/
H A Dinilib_test.cc84 bool_attribute attribute4(true); in main()