Lines Matching refs:Value

767 const char* XMLNode::Value() const  in Value()  function in AlibabaCloud::OSS::tinyxml2::XMLNode
1051 …SetError( XML_ERROR_PARSING_DECLARATION, initialLineNum, "XMLDeclaration value=%s", decl->Value()); in ParseDeep()
1173 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone()
1183 return ( text && XMLUtil::StringEqual( text->Value(), Value() ) ); in ShallowEqual()
1222 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone()
1231 return ( comment && XMLUtil::StringEqual( comment->Value(), Value() )); in ShallowEqual()
1271 …XMLDeclaration* dec = doc->NewDeclaration( Value() ); // fixme: this will always allocate memory. … in ShallowClone()
1280 return ( declaration && XMLUtil::StringEqual( declaration->Value(), Value() )); in ShallowEqual()
1319 … XMLUnknown* text = doc->NewUnknown( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone()
1328 return ( unknown && XMLUtil::StringEqual( unknown->Value(), Value() )); in ShallowEqual()
1345 const char* XMLAttribute::Value() const in Value() function in AlibabaCloud::OSS::tinyxml2::XMLAttribute
1386 if ( XMLUtil::ToInt( Value(), value )) { in QueryIntValue()
1395 if ( XMLUtil::ToUnsigned( Value(), value )) { in QueryUnsignedValue()
1404 if (XMLUtil::ToInt64(Value(), value)) { in QueryInt64Value()
1413 if ( XMLUtil::ToBool( Value(), value )) { in QueryBoolValue()
1422 if ( XMLUtil::ToFloat( Value(), value )) { in QueryFloatValue()
1431 if ( XMLUtil::ToDouble( Value(), value )) { in QueryDoubleValue()
1526 if ( !value || XMLUtil::StringEqual( a->Value(), value )) { in Attribute()
1527 return a->Value(); in Attribute()
1577 return FirstChild()->Value(); in GetText()
1645 const char* t = FirstChild()->Value(); in QueryIntText()
1658 const char* t = FirstChild()->Value(); in QueryUnsignedText()
1671 const char* t = FirstChild()->Value(); in QueryInt64Text()
1684 const char* t = FirstChild()->Value(); in QueryBoolText()
1697 const char* t = FirstChild()->Value(); in QueryDoubleText()
1710 const char* t = FirstChild()->Value(); in QueryFloatText()
1926 …XMLElement* element = doc->NewElement( Value() ); // fixme: this will always allocate memory. … in ShallowClone()
1928 …element->SetAttribute( a->Name(), a->Value() ); // fixme: this will always allocate memory. In… in ShallowClone()
1944 if ( !XMLUtil::StringEqual( a->Value(), b->Value() ) ) { in ShallowEqual()
2790 PushAttribute( attribute->Name(), attribute->Value() ); in VisitEnter()
2806 PushText( text.Value(), text.CData() ); in Visit()
2813 PushComment( comment.Value() ); in Visit()
2819 PushDeclaration( declaration.Value() ); in Visit()
2826 PushUnknown( unknown.Value() ); in Visit()