/external/tinyxml/ |
D | tinyxmlparser.cpp | 513 bool TiXmlBase::StringEqual( const char* p, in StringEqual() function in TiXmlBase 566 && !StringEqual( p, endTag, caseInsensitive, encoding ) in ReadText() 582 && !StringEqual( p, endTag, caseInsensitive, encoding ) ) in ReadText() 754 else if ( StringEqual( enc, "UTF-8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 756 else if ( StringEqual( enc, "UTF8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 825 if ( StringEqual( p, xmlHeader, true, encoding ) ) in Identify() 832 else if ( StringEqual( p, commentHeader, false, encoding ) ) in Identify() 839 else if ( StringEqual( p, cdataHeader, false, encoding ) ) in Identify() 848 else if ( StringEqual( p, dtdHeader, false, encoding ) ) in Identify() 1086 if ( StringEqual( p, endTag.c_str(), false, encoding ) ) in Parse() [all …]
|
D | tinyxml.h | 325 static bool StringEqual( const char* p,
|
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 534 bool TiXmlBase::StringEqual( const char* p, in StringEqual() function in TiXmlBase 587 && !StringEqual( p, endTag, caseInsensitive, encoding ) in ReadText() 603 && !StringEqual( p, endTag, caseInsensitive, encoding ) ) in ReadText() 777 else if ( StringEqual( enc, "UTF-8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 779 else if ( StringEqual( enc, "UTF8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 847 if ( StringEqual( p, xmlHeader, true, encoding ) ) in Identify() 854 else if ( StringEqual( p, commentHeader, false, encoding ) ) in Identify() 861 else if ( StringEqual( p, cdataHeader, false, encoding ) ) in Identify() 870 else if ( StringEqual( p, dtdHeader, false, encoding ) ) in Identify() 1122 if ( StringEqual( p, endTag.c_str(), false, encoding ) ) in Parse() [all …]
|
D | tinyxml.cpp | 690 if ( StringEqual( node->Value(), "true", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 691 || StringEqual( node->Value(), "yes", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 692 || StringEqual( node->Value(), "1", true, TIXML_ENCODING_UNKNOWN ) ) in QueryBoolAttribute() 697 else if ( StringEqual( node->Value(), "false", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 698 || StringEqual( node->Value(), "no", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 699 || StringEqual( node->Value(), "0", true, TIXML_ENCODING_UNKNOWN ) ) in QueryBoolAttribute()
|
D | tinyxml.h | 366 static bool StringEqual( const char* p,
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 534 bool TiXmlBase::StringEqual( const char* p, in StringEqual() function in TiXmlBase 587 && !StringEqual( p, endTag, caseInsensitive, encoding ) in ReadText() 603 && !StringEqual( p, endTag, caseInsensitive, encoding ) ) in ReadText() 777 else if ( StringEqual( enc, "UTF-8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 779 else if ( StringEqual( enc, "UTF8", true, TIXML_ENCODING_UNKNOWN ) ) in Parse() 847 if ( StringEqual( p, xmlHeader, true, encoding ) ) in Identify() 854 else if ( StringEqual( p, commentHeader, false, encoding ) ) in Identify() 861 else if ( StringEqual( p, cdataHeader, false, encoding ) ) in Identify() 870 else if ( StringEqual( p, dtdHeader, false, encoding ) ) in Identify() 1122 if ( StringEqual( p, endTag.c_str(), false, encoding ) ) in Parse() [all …]
|
D | tinyxml.cpp | 690 if ( StringEqual( node->Value(), "true", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 691 || StringEqual( node->Value(), "yes", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 692 || StringEqual( node->Value(), "1", true, TIXML_ENCODING_UNKNOWN ) ) in QueryBoolAttribute() 697 else if ( StringEqual( node->Value(), "false", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 698 || StringEqual( node->Value(), "no", true, TIXML_ENCODING_UNKNOWN ) in QueryBoolAttribute() 699 || StringEqual( node->Value(), "0", true, TIXML_ENCODING_UNKNOWN ) ) in QueryBoolAttribute()
|
D | tinyxml.h | 366 static bool StringEqual( const char* p,
|
/external/tinyxml2/ |
D | tinyxml2.cpp | 422 if ( StringEqual( str, "true" ) ) { in ToBool() 426 else if ( StringEqual( str, "false" ) ) { in ToBool() 489 if ( XMLUtil::StringEqual( p, xmlHeader, xmlHeaderLen ) ) { in Identify() 494 else if ( XMLUtil::StringEqual( p, commentHeader, commentHeaderLen ) ) { in Identify() 499 else if ( XMLUtil::StringEqual( p, cdataHeader, cdataHeaderLen ) ) { in Identify() 506 else if ( XMLUtil::StringEqual( p, dtdHeader, dtdHeaderLen ) ) { in Identify() 511 else if ( XMLUtil::StringEqual( p, elementHeader, elementHeaderLen ) ) { in Identify() 680 if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) { in FirstChildElement() 694 if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) { in LastChildElement() 707 && (!value || XMLUtil::StringEqual( value, element->Value() ))) in NextSiblingElement() [all …]
|
D | tinyxml2.h | 369 inline static bool StringEqual( const char* p, const char* q, int nChar=INT_MAX ) {
|
/external/chromium_org/v8/test/cctest/compiler/ |
D | simplified-graph-builder.h | 86 Node* StringEqual(Node* a, Node* b) { in StringEqual() function 87 return NewNode(simplified()->StringEqual(), a, b); in StringEqual()
|
D | test-simplified-lowering.cc | 1139 t.CheckLoweringBinop(compare_eq, t.simplified()->StringEqual()); in TEST()
|
/external/chromium_org/v8/src/compiler/ |
D | simplified-operator.h | 116 const Operator* StringEqual();
|
D | simplified-operator.cc | 111 V(StringEqual, Operator::kCommutative, 2) \
|
D | opcodes.h | 147 V(StringEqual) \
|
D | simplified-operator-unittest.cc | 58 PURE(StringEqual, Operator::kCommutative, 2),
|
D | js-typed-lowering.cc | 364 return r.ChangeToPureOperator(simplified()->StringEqual(), invert); in ReduceJSEqual() 415 return r.ChangeToPureOperator(simplified()->StringEqual(), invert); in ReduceJSStrictEqual()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | synchronize.h | 268 class StringEqual { 291 typedef std::unordered_set<const String*, StringKey, StringEqual> StringSet;
|
/external/openfst/src/include/fst/ |
D | synchronize.h | 299 class StringEqual { 322 typedef unordered_set<const String*, StringKey, StringEqual> StringSet;
|