OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ToElement
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/third_party/skia/src/ports/
SkXMLParser_tinyxml.cpp
34
if (node->
ToElement
())
35
walk_elem(parser, node->
ToElement
());
/external/skia/src/ports/
SkXMLParser_tinyxml.cpp
34
if (node->
ToElement
())
35
walk_elem(parser, node->
ToElement
());
/external/chromium_org/third_party/sfntly/cpp/src/test/
test_xml_utils.cc
42
for (const TiXmlAttribute* attribute = node->
ToElement
()->FirstAttribute();
/external/sfntly/cpp/src/test/
test_xml_utils.cc
42
for (const TiXmlAttribute* attribute = node->
ToElement
()->FirstAttribute();
/external/tinyxml2/
tinyxml2.h
444
virtual XMLElement*
ToElement
() { return 0; } ///< Safely cast to an Element, or null.
451
virtual const XMLElement*
ToElement
() const { return 0; }
850
virtual XMLElement*
ToElement
() { return this; }
851
virtual const XMLElement*
ToElement
() const { return this; }
[
all
...]
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h
641
Calls NextSibling and
ToElement
. Will skip all non-Element
650
Calls NextSibling and
ToElement
. Will skip all non-Element
698
virtual const TiXmlElement*
ToElement
() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
705
virtual TiXmlElement*
ToElement
() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
[
all
...]
tinyxmlparser.cpp
680
bool isElement = node->
ToElement
() != 0;
[
all
...]
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
641
Calls NextSibling and
ToElement
. Will skip all non-Element
650
Calls NextSibling and
ToElement
. Will skip all non-Element
698
virtual const TiXmlElement*
ToElement
() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
705
virtual TiXmlElement*
ToElement
() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
[
all
...]
tinyxmlparser.cpp
680
bool isElement = node->
ToElement
() != 0;
[
all
...]
/external/tinyxml/
xmltest.cpp
163
todoElement = node->
ToElement
();
170
itemElement = node->
ToElement
();
225
itemElement = node->
ToElement
();
257
XmlTest( "Root element exists.", true, ( node != 0 && node->
ToElement
() ) );
263
XmlTest( "Sibling element exists & is an element.", true, ( node != 0 && node->
ToElement
() ) );
tinyxml.h
590
Calls NextSibling and
ToElement
. Will skip all non-Element
597
Calls NextSibling and
ToElement
. Will skip all non-Element
637
const TiXmlElement*
ToElement
() const { return ( this && type == ELEMENT ) ? (const TiXmlElement*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
644
TiXmlElement*
ToElement
() { return ( this && type == ELEMENT ) ? (TiXmlElement*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
tinyxml.cpp
482
if ( node->
ToElement
() )
483
return node->
ToElement
();
496
if ( node->
ToElement
() )
497
return node->
ToElement
();
510
if ( node->
ToElement
() )
511
return node->
ToElement
();
524
if ( node->
ToElement
() )
525
return node->
ToElement
();
538
if ( node->
ToElement
() )
539
return node->
ToElement
();
[
all
...]
tinyxmlparser.cpp
657
bool isElement = node->
ToElement
() != 0;
[
all
...]
/external/srec/tools/grxmlcompile/
grxmldoc.cpp
152
node.
ToElement
()->Print( stdout, level);
361
#define GETATTR(nAmE) ((attr=node.
ToElement
()->Attribute(nAmE))!=NULL) ? attr:""
676
std::string s = node.
ToElement
()->GetText(); // getCdata();
799
for(TiXmlAttribute* attr=node.
ToElement
()->FirstAttribute();
[
all
...]
Completed in 915 milliseconds