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

  /development/simulator/app/
Preferences.cpp 50 pPrefs = mpDoc->FirstChild("prefs");
156 pPrefs = mpDoc->FirstChild("prefs");
183 pNode = pNode->FirstChild();
209 pRoot = mpDoc->FirstChild("prefs");
212 for (pNode = pRoot->FirstChild(); pNode != NULL;)
282 pPrefs = mpDoc->FirstChild("prefs");
PhoneData.cpp 201 for (pChild = pNode->FirstChild(); pChild != NULL;
243 pChild = pNode->FirstChild();
293 pChild = pNode->FirstChild();
452 for (pChild = pNode->FirstChild(); pChild != NULL;
612 for (pChild = pDoc->FirstChild(); pChild != NULL;
670 for (pChild = pNode->FirstChild(); pChild != NULL;
737 pChild = pNode->FirstChild();
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 39 const TiXmlNode* node = elem->FirstChild();
  /external/tinyxml/
xmltest.cpp 161 node = doc.FirstChild( "ToDo" );
223 node = todoElement->FirstChild( "Item" );
260 node = node->FirstChild();
266 node = node->FirstChild();
276 for( node = doc.FirstChild();
317 for( node = todoElement->FirstChild( "Item" );
373 TiXmlHandle commentHandle = docHandle.FirstChildElement( "room" ).FirstChild();
374 TiXmlHandle textHandle = docHandle.FirstChildElement( "room" ).ChildElement( "door", 0 ).FirstChild();
385 TiXmlDeclaration* declaration = doc.FirstChild()->ToDeclaration();
569 text = latinDoc.FirstChildElement()->FirstChild()->ToText()
    [all...]
tinyxml.cpp 148 firstChild = 0;
157 TiXmlNode* node = firstChild;
178 TiXmlNode* node = firstChild;
188 firstChild = 0;
203 firstChild = node; // it was an empty list.
238 assert( firstChild == beforeThis );
239 firstChild = node;
292 firstChild = node;
316 firstChild = removeThis->next;
322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) cons
    [all...]
tinyxml.h 486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
487 TiXmlNode* FirstChild() { return firstChild; }
488 const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
489 TiXmlNode* FirstChild( const char * value ); ///< The first child of this node with the matching 'value'. Will be null if none found.
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 170 for( child = node.FirstChild(); child; child = child->NextSibling() )
    [all...]

Completed in 185 milliseconds