HomeSort by relevance Sort by last modified time
    Searched refs:QueryIntAttribute (Results 1 - 5 of 5) sorted by null

  /bionic/tests/
malloc_test.cpp 350 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val));
363 ASSERT_EQ(tinyxml2::XML_SUCCESS, bin->QueryIntAttribute("nr", &val));
  /external/tinyxml/
tinyxml.h 882 /** QueryIntAttribute examines the attribute - it is an alternative to the
889 int QueryIntAttribute( const char* name, int* _value ) const;
890 /// QueryDoubleAttribute examines the attribute - see QueryIntAttribute().
892 /// QueryFloatAttribute examines the attribute - see QueryIntAttribute().
911 int QueryIntAttribute( const std::string& name, int* _value ) const { return QueryIntAttribute( name.c_str(), _value );
    [all...]
xmltest.cpp 453 result = ele->QueryIntAttribute( "attr1", &iVal );
456 result = ele->QueryIntAttribute( "attr2", &iVal );
458 result = ele->QueryIntAttribute( "bar", &iVal );
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h     [all...]
  /external/tinyxml2/
tinyxml2.h 779 use QueryIntAttribute() if you need error checking.
791 /** QueryIntAttribute interprets the attribute as an integer, and returns the value
796 /// See QueryIntAttribute
798 /// See QueryIntAttribute
800 /// See QueryIntAttribute
802 /// See QueryIntAttribute
882 checking, see QueryIntAttribute()
884 int IntAttribute( const char* name ) const { int i=0; QueryIntAttribute( name, &i ); return i; }
894 /** Given an attribute name, QueryIntAttribute() returns
904 QueryIntAttribute( "foo", &value ); // if "foo" isn't found, value will still be 10
    [all...]

Completed in 197 milliseconds