Searched refs:PushAttribute (Results 1 – 4 of 4) sorted by relevance
/external/tinyxml2/ |
D | tinyxml2.cpp | 2683 void XMLPrinter::PushAttribute( const char* name, const char* value ) in PushAttribute() function in tinyxml2::XMLPrinter 2694 void XMLPrinter::PushAttribute( const char* name, int v ) in PushAttribute() function in tinyxml2::XMLPrinter 2698 PushAttribute( name, buf ); in PushAttribute() 2702 void XMLPrinter::PushAttribute( const char* name, unsigned v ) in PushAttribute() function in tinyxml2::XMLPrinter 2706 PushAttribute( name, buf ); in PushAttribute() 2710 void XMLPrinter::PushAttribute(const char* name, int64_t v) in PushAttribute() function in tinyxml2::XMLPrinter 2714 PushAttribute(name, buf); in PushAttribute() 2718 void XMLPrinter::PushAttribute(const char* name, uint64_t v) in PushAttribute() function in tinyxml2::XMLPrinter 2722 PushAttribute(name, buf); in PushAttribute() 2726 void XMLPrinter::PushAttribute( const char* name, bool v ) in PushAttribute() function in tinyxml2::XMLPrinter [all …]
|
D | tinyxml2.h | 2247 void PushAttribute( const char* name, const char* value ); 2248 void PushAttribute( const char* name, int value ); 2249 void PushAttribute( const char* name, unsigned value ); 2250 void PushAttribute( const char* name, int64_t value ); 2251 void PushAttribute( const char* name, uint64_t value ); 2252 void PushAttribute( const char* name, bool value ); 2253 void PushAttribute( const char* name, double value );
|
D | xmltest.cpp | 967 printer.PushAttribute("attrib-text", "text"); in main() 968 printer.PushAttribute("attrib-int", int(1)); in main() 969 printer.PushAttribute("attrib-unsigned", unsigned(2)); in main() 970 printer.PushAttribute("attrib-int64", int64_t(3)); in main() 971 printer.PushAttribute("attrib-uint64", uint64_t(37)); in main() 972 printer.PushAttribute("attrib-bool", true); in main() 973 printer.PushAttribute("attrib-double", 4.0); in main() 1007 printer.PushAttribute("attrib-text", "text"); in main()
|
D | readme.md | 216 printer.PushAttribute( "foo", "bar" );
|