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

  /frameworks/base/sax/java/android/sax/
Children.java 25 Child[] children = new Child[16];
28 * Looks up a child by name and creates a new one if necessary.
34 Child current = children[index];
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
42 Child previous;
47 // We already have a child with that name.
55 // Add a new child to the bucket.
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
63 * Looks up a child by name
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-137000.js 76 * to chain constructors from child to parent.
108 * the parameter to both the Base and Child constructors,
114 function Child(id)
118 Child.prototype=Base;
121 var c1 = new Child('child1');
  /external/tinyxml/
xmltest.cpp 160 // It is a child of the document, and can be selected by name.
182 // a particular child.
222 // And add the node to the existing list after the first child.
261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) );
267 XmlTest ( "First child exists.", true, ( node != 0 && node->ToText() ) );
522 TiXmlText* text = docH.FirstChildElement( "document" ).FirstChildElement( (const char*) russianElementName ).Child( 0 ).Text();
530 TiXmlDeclaration* dec = docH.Child( 0 ).Node()->ToDeclaration();
879 TiXmlUnknown* unknown = docH.Child( 1 ).Unknown();
882 TiXmlNode* node = docH.Child( 2 ).Node();
898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment()
    [all...]
tinyxml.h 486 const TiXmlNode* FirstChild() const { return firstChild; } ///< The first child of this node. Will be null if there are no children.
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.
491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
493 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
506 for( child = parent->FirstChild(); child; child = child->NextSibling() )
511 child = 0
    [all...]
tinyxml.cpp 785 // 2) An element with only a text child is printed as <foo> text </foo>
884 const TiXmlNode* child = this->FirstChild(); local
885 if ( child ) {
886 const TiXmlText* childText = child->ToText();
1621 TiXmlNode* child = node->FirstChild(); local
1622 if ( child )
1623 return TiXmlHandle( child );
1633 TiXmlNode* child = node->FirstChild( value ); local
1634 if ( child )
1635 return TiXmlHandle( child );
1645 TiXmlElement* child = node->FirstChildElement(); local
1657 TiXmlElement* child = node->FirstChildElement( value ); local
1670 TiXmlNode* child = node->FirstChild(); local
1689 TiXmlNode* child = node->FirstChild( value ); local
1708 TiXmlElement* child = node->FirstChildElement(); local
1727 TiXmlElement* child = node->FirstChildElement( value ); local
    [all...]
  /external/webkit/WebCore/css/
CSSSelector.h 94 Child,
CSSSelector.cpp 90 DEFINE_STATIC_LOCAL(AtomicString, firstChild, ("first-child"));
95 DEFINE_STATIC_LOCAL(AtomicString, nthChild, ("nth-child("));
97 DEFINE_STATIC_LOCAL(AtomicString, nthLastChild, ("nth-last-child("));
107 DEFINE_STATIC_LOCAL(AtomicString, lastChild, ("last-child"));
128 DEFINE_STATIC_LOCAL(AtomicString, onlyChild, ("only-child"));
502 else if (cs->relation() == CSSSelector::Child)
CSSGrammar.y 767 | '>' maybe_space { $$ = CSSSelector::Child; }
845 if ($2 == CSSSelector::Child) {
    [all...]
CSSStyleSelector.cpp     [all...]
  /external/v8/tools/
profile.js 467 * Finds an immediate child of the specified parent with the specified
468 * label, creates a child node if necessary. If a parent node isn't
471 * @param {string} label Child node label.
500 var child = (parent ? parent : subTree).findOrAddChild(node.label);
501 child.selfWeight += node.selfWeight;
502 return child;
543 node.forEachChild(function (child) {
544 morePairsToProcess.push({node: child, param: newParam}); });
597 * Adds a child node.
599 * @param {string} label Child node label
    [all...]
profile_view.js 204 * Adds a child to the node.
206 * @param {devtools.profiler.ProfileView.Node} node Child node.
  /prebuilt/common/ant/
ant.jar 

Completed in 7264 milliseconds