OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LastChild
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h
531
const TiXmlNode*
LastChild
() const { return
lastChild
; } /// The last child of this node. Will be null if there are no children.
532
TiXmlNode*
LastChild
() { return
lastChild
; }
534
const TiXmlNode*
LastChild
( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
535
TiXmlNode*
LastChild
( const char * _value ) {
536
return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->
LastChild
( _value ));
542
const TiXmlNode*
LastChild
( const std::string& _value ) const { return
LastChild
(_value.c_str ()); } ///< STL std::string form.
543
TiXmlNode*
LastChild
( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
[
all
...]
tinyxml.cpp
141
lastChild
= 0;
182
lastChild
= 0;
201
node->prev =
lastChild
;
204
if (
lastChild
)
205
lastChild
->next = node;
209
lastChild
= node;
288
assert(
lastChild
== afterThis );
289
lastChild
= node;
322
lastChild
= node;
350
lastChild
= removeThis->prev
[
all
...]
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
531
const TiXmlNode*
LastChild
() const { return
lastChild
; } /// The last child of this node. Will be null if there are no children.
532
TiXmlNode*
LastChild
() { return
lastChild
; }
534
const TiXmlNode*
LastChild
( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
535
TiXmlNode*
LastChild
( const char * _value ) {
536
return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->
LastChild
( _value ));
542
const TiXmlNode*
LastChild
( const std::string& _value ) const { return
LastChild
(_value.c_str ()); } ///< STL std::string form.
543
TiXmlNode*
LastChild
( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
[
all
...]
tinyxml.cpp
141
lastChild
= 0;
182
lastChild
= 0;
201
node->prev =
lastChild
;
204
if (
lastChild
)
205
lastChild
->next = node;
209
lastChild
= node;
288
assert(
lastChild
== afterThis );
289
lastChild
= node;
322
lastChild
= node;
350
lastChild
= removeThis->prev
[
all
...]
/external/tinyxml/
tinyxml.h
491
const TiXmlNode*
LastChild
() const { return
lastChild
; } /// The last child of this node. Will be null if there are no children.
492
TiXmlNode*
LastChild
() { return
lastChild
; }
493
const TiXmlNode*
LastChild
( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
494
TiXmlNode*
LastChild
( const char * value );
499
const TiXmlNode*
LastChild
( const std::string& _value ) const { return
LastChild
(_value.c_str ()); } ///< STL std::string form.
500
TiXmlNode*
LastChild
( const std::string& _value ) { return
LastChild
(_value.c_str ()); } ///< STL std::string form
[
all
...]
xmltest.cpp
285
for( node = doc.
LastChild
();
326
for( node = todoElement->
LastChild
( "Item" );
753
XmlTest( "Test InsertAfterChild on empty node. ", ( childNode1 == parent.
LastChild
() ), true );
/external/tinyxml2/
tinyxml2.h
490
const XMLNode*
LastChild
() const { return
lastChild
; }
491
XMLNode*
LastChild
() { return const_cast<XMLNode*>(const_cast<const XMLNode*>(this)->
LastChild
() ); }
597
XMLNode*
lastChild
;
[
all
...]
Completed in 225 milliseconds