Searched defs:child (Results 126 - 150 of 543) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANumericAddExpression.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DANumericEqExpression.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DANumericNeExpression.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DAOrExpression.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DASetCommand.java132 void removeChild(@SuppressWarnings("unused") Node child) argument
134 // Remove child
135 if(this._position_ == child)
141 if(this._variable_ == child)
147 if(this._expression_ == child)
153 throw new RuntimeException("Not a child.");
159 // Replace child
178 throw new RuntimeException("Not a child.");
H A DASubtractExpression.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DAUvarCommand.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DAVarCommand.java101 void removeChild(@SuppressWarnings("unused") Node child) argument
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.");
H A DStart.java90 void removeChild(Node child) argument
92 if(this._pCommand_ == child)
98 if(this._eof_ == child)
104 throw new RuntimeException("Not a child.");
122 throw new RuntimeException("Not a child.");
H A DToken.java49 void removeChild(@SuppressWarnings("unused") Node child) argument
51 throw new RuntimeException("Not a child.");
57 throw new RuntimeException("Not a child.");
/external/libppp/src/
H A Dchap.h48 } child; member in struct:chap
/external/skia/src/svg/
H A DSkSVGElements.cpp66 bool SkSVGElement::onStartElement(SkSVGElement* child) { argument
67 *fChildren.append() = child;
/external/skia/src/views/
H A DSkViewInflate.cpp26 const SkDOM::Node* child = dom.getFirstChild(node); local
27 while (child)
29 SkView* view = this->createView(dom, child);
32 this->rInflate(dom, child, view);
37 const char* name = dom.getName(child);
40 if (!strcmp(name, "listenTo") && (target = dom.findAttr(child, "target")) != NULL)
43 if (!strcmp(name, "broadcastTo") && (target = dom.findAttr(child, "target")) != NULL)
46 child = dom.getNextSibling(child);
/external/skia/third_party/glu/libtess/
H A Dpriorityq-heap.c105 long child; local
109 child = curr << 1;
110 if( child < pq->size && LEQ( h[n[child+1].handle].key,
111 h[n[child].handle].key )) {
112 ++child;
115 assert(child <= pq->max);
117 hChild = n[child].handle;
118 if( child > pq->size || LEQ( h[hCurr].key, h[hChild].key )) {
125 curr = child;
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc19_shadowmem.c11 void* (*child)(void*); member in struct:__anon13955
31 assert( info->child == &child8 );
55 assert( info->child == &child16 );
79 assert( info->child == &child32 );
103 assert( info->child == &child64 );
167 info.child = child8;
198 info.child = child16;
229 info.child = child32;
260 info.child = child64;
284 void*(*fn)(void*) = info->child;
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGrid.cpp62 void AccessibilityARIAGrid::addChild(AccessibilityObject* child, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount) argument
64 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
67 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child);
107 for (RefPtr<AccessibilityObject> child = firstChild(); child; child = child->nextSibling()) {
109 if (child
170 AccessibilityObject* child = children[k].get(); local
[all...]
/external/webkit/Source/WebCore/dom/
H A DRangeBoundaryPoint.h130 inline void RangeBoundaryPoint::setToBeforeChild(Node* child) argument
132 ASSERT(child);
133 ASSERT(child->parentNode());
134 m_childBeforeBoundary = child->previousSibling();
135 m_containerNode = child->parentNode();
/external/webkit/Source/WebCore/platform/text/
H A DSuffixTree.h81 Node* child = m_children.at(i); local
82 if (child && !child->m_isLeaf)
83 delete child;
103 Node*& child = current->at(Codebook::codeWord(text[base + offset])); local
104 if (!child)
105 child = base + offset + 1 == limit ? &m_leaf : new Node();
106 current = child;
/external/webkit/Source/WebCore/rendering/
H A DRenderInline.h76 IntSize relativePositionedInlineOffset(const RenderBox* child) const;
146 virtual void dirtyLinesFromChangedChild(RenderObject* child) { m_lineBoxes.dirtyLinesFromChangedChild(this, child); } argument
151 virtual void childBecameNonInline(RenderObject* child);
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLFenced.cpp101 void RenderMathMLFenced::addChild(RenderObject* child, RenderObject*) argument
109 for (Node* position = child->node(); position; position = position->previousSibling()) {
130 if (child->isBlockFlow() && child->style()->display() != INLINE_BLOCK) {
140 block->addChild(child);
142 RenderBlock::addChild(child, lastChild());
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.cpp87 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child) argument
89 appendChildToContainer<SVGElementInstance, SVGElementInstance>(child.get(), this);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontree.c77 // Install a vector factory to create, track and free() any child
165 // whatever put it back on the stack (for instance if it had a child vector,
256 // First close the vector factory that supplied all the child pointer
370 /// Create a new vector for holding child nodes using the inbuilt
458 pANTLR3_BASE_TREE child; local
460 child = (pANTLR3_BASE_TREE)tree->getChild(tree, 0);
461 return child->getLine(child);
478 pANTLR3_BASE_TREE child; local
480 child
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs107 public override void AddChild(object root, object child) { argument
109 adaptor.GetUniqueID(child));
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTraceDebugEventListener.java86 public void addChild(Object root, Object child) { argument
88 adaptor.getUniqueID(child));
/external/chromium/chrome/browser/chromeos/login/
H A Dcaptcha_view.cc117 views::View* child) {
119 if (is_add && child == this)
115 ViewHierarchyChanged(bool is_add, views::View* parent, views::View* child) argument

Completed in 814 milliseconds

1234567891011>>