HomeSort by relevance Sort by last modified time
    Searched full:child (Results 76 - 100 of 3947) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANumericExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._expression_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
ASequenceExpression.java 66 void removeChild(@SuppressWarnings("unused") Node child)
68 // Remove child
69 if(this._args_.remove(child))
74 throw new RuntimeException("Not a child.");
80 // Replace child
99 throw new RuntimeException("Not a child.");
AStringExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._value_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
AVariableExpression.java 70 void removeChild(@SuppressWarnings("unused") Node child)
72 // Remove child
73 if(this._variable_ == child)
79 throw new RuntimeException("Not a child.");
85 // Replace child
92 throw new RuntimeException("Not a child.");
AAddExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AAndExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ACommaExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ACommentCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._comment_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AContentTypeCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._string_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ADescendVariable.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._parent_ == child)
110 if(this._child_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ADivideExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AEqExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AEvarCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._expression_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AExpandVariable.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._parent_ == child)
110 if(this._child_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_location_path.html 22 result = DOM.evaluate("/child::*", CHILD2, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
23 checkSnapshot("/child::*", result, [ROOT]);
25 result = DOM.evaluate("child::*/child::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
26 checkSnapshot("child::*/child::*", result, GCHILDREN1.concat(GCHILDREN2, LCHILDREN));
  /external/webkit/Source/WebCore/rendering/
RenderFrameSet.cpp 129 RenderObject* child = firstChild();
130 if (!child)
145 child->paint(paintInfo, tx, ty);
151 child = child->nextSibling();
152 if (!child)
414 RenderObject* child = firstChild(); local
415 if (!child)
423 if (child->isFrameSet())
424 edgeInfo = toRenderFrameSet(child)->edgeInfo()
488 RenderObject* child = firstChild(); local
522 RenderBox* child = firstChildBox(); local
645 RenderBox* child = firstChildBox(); local
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.cpp 189 void WebFrameProxy::appendChild(WebFrameProxy* child)
191 ASSERT(child->page() == page());
192 ASSERT(!child->m_parentFrame);
193 ASSERT(!child->m_nextSibling);
194 ASSERT(!child->m_previousSibling);
196 child->m_parentFrame = this;
199 m_lastChild = child;
203 child->m_previousSibling = oldLast;
204 oldLast->m_nextSibling = child;
206 m_firstChild = child;
    [all...]
  /external/elfutils/libelf/
elf_readall.c 33 Elf *child = elf->state.ar.children; local
35 while (child != NULL)
37 if (child->map_address == NULL)
39 child->map_address = elf->map_address;
40 child->start_offset -= offset;
41 if (child->kind == ELF_K_AR)
42 child->state.ar.offset -= offset;
44 set_address (child, offset);
47 child = child->next
    [all...]
  /external/webkit/Source/WebCore/editing/
WrapContentsInDummySpanCommand.cpp 44 for (Node* child = m_element->firstChild(); child; child = child->nextSibling())
45 children.append(child);
71 for (Node* child = m_dummySpan->firstChild(); child; child = child->nextSibling())
72 children.append(child);
    [all...]
  /frameworks/base/core/java/android/widget/
ExpandableListAdapter.java 60 * @return the data child for the specified group
65 * Gets the data associated with the given child within the given group.
67 * @param groupPosition the position of the group that the child resides in
68 * @param childPosition the position of the child with respect to other
70 * @return the data of the child
86 * Gets the ID for the given child within the given group. This ID must be
91 * @param groupPosition the position of the group that contains the child
92 * @param childPosition the position of the child within the group for which
94 * @return the ID associated with the child
99 * Indicates whether the child and group IDs are stable across changes to th
    [all...]
  /external/chromium/chrome/browser/resources/
cookies_tree.js 38 addAt: function(child, index) {
39 TreeItem.prototype.addAt.call(this, child, index);
40 if (child.data && child.data.id)
41 this.tree.treeLookup[child.data.id] = child;
45 remove: function(child) {
46 TreeItem.prototype.remove.call(this, child);
47 if (child.data && child.data.id
    [all...]
  /cts/tools/utils/
android_api_description_splitter.py 105 for child in elem.childNodes:
106 if child.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
107 children.append(child)
109 for child in children:
110 if child.nodeName == "doc":
111 elem.removeChild(child)
112 children.remove(child)
114 for child in children:
115 child = self.__trimElem(child)
    [all...]
  /external/llvm/include/llvm/Object/
Archive.h 26 class Child {
31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
33 bool operator ==(const Child &other) const {
37 Child getNext() const;
51 Child child; member in class:llvm::object::Archive::child_iterator
53 child_iterator(const Child &c) : child(c) {}
54 const Child* operator->() const {
55 return &child;
    [all...]
  /external/mesa3d/src/talloc/
hieralloc.c 20 struct hieralloc_header * child; member in struct:hieralloc_header
70 hieralloc_header_t * child = header->child; local
71 while (child)
74 check_children(child);
75 child = child->nextSibling;
88 if (parent->child)
90 // hieralloc_header_t * child = parent->child;
209 hieralloc_header_t * child = header->child; local
243 hieralloc_header_t * child = header->child; local
479 const hieralloc_header_t * child = header->child; local
504 const hieralloc_header_t * child = header->child; local
547 const hieralloc_header_t * child = start->child; local
    [all...]
  /external/collada/src/dae/
daeMetaSequence.cpp 19 daeElement *daeMetaSequence::placeElement( daeElement *parent, daeElement *child, daeUInt &ordinal, daeInt offset, daeElement* before, daeElement *after ) {
22 //Needed to prevent infinate loops. If unbounded check to see if you have the child before just trying to place
23 if ( findChild( child->getElementName() ) == NULL ) {
31 if ( _children[x]->placeElement( parent, child, ordinal, i, before, after ) != NULL ) {
33 return child;
40 daeBool daeMetaSequence::removeElement( daeElement *parent, daeElement *child ) {
43 if ( _children[x]->removeElement( parent, child ) ) {

Completed in 245 milliseconds

1 2 34 5 6 7 8 91011>>