Searched defs:addChild (Results 26 - 50 of 109) sorted by relevance

12345

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeAdaptor.java64 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);"
94 public void addChild(Object t, Object child); method in interface:TreeAdaptor
/external/deqp/modules/glshared/
H A DglsShaderPerformanceCase.cpp226 void ShaderPerformanceCaseGroup::addChild (ShaderPerformanceCase* perfCase) function in class:deqp::gls::ShaderPerformanceCaseGroup
229 TestCaseGroup::addChild(perfCase);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DAbstractResults.java61 void addChild(Comparable child, boolean sort) { method in class:AbstractResults
/external/junit/src/main/java/org/junit/runner/
H A DDescription.java181 public void addChild(Description description) { method in class:Description
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h55 Parent->addChild(this);
67 /// addChild - Add a child scope.
68 void addChild(LexicalScope *S) { Children.push_back(S); } function in class:llvm::LexicalScope
H A DDIE.h661 DIE &addChild(DIE *Child) { function in class:llvm::DIE
/external/parameter-framework/upstream/parameter/
H A DElement.cpp275 void CElement::addChild(CElement *pChild) function in class:CElement
314 addChild(pChild);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DViewLoader.java74 if (parent != null) parent.addChild(viewNode);
166 public void addChild(ViewNode viewNode) { method in class:ViewLoader.ViewNode
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java135 parent.addChild(fileEntry);
145 directoryEntry = (DirectoryEntry)parent.addChild(directoryEntry);
307 public synchronized FileSystemEntry addChild(FileSystemEntry entry) { method in class:ClassFileNameHandler.DirectoryEntry
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DLexicalScopes.h162 Parent->addChild(this);
176 /// addChild - Add a child scope.
177 void addChild(LexicalScope *S) { Children.push_back(S); } function in class:llvm::LexicalScope
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventSocketProxy.java308 public void addChild(Object root, Object child) { method in class:DebugEventSocketProxy
311 transmit("addChild\t"+rootID+"\t"+childID);
/external/deqp/framework/randomshaders/
H A DrsgStatement.cpp160 void BlockStatement::addChild (Statement* statement) function in class:rsg::BlockStatement
179 addChild(child);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNode.java130 public void addChild(XMPNode node) throws XMPException method in class:XMPNode
147 public void addChild(int index, XMPNode node) throws XMPException method in class:XMPNode
455 destination.addChild((XMPNode) child.clone());
856 * Sets the parent node, this is solely done by <code>addChild(...)</code>
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3debughandlers.c85 static void addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE root, pANTLR3_BASE_TREE child);
106 delboy->addChild = addChild;
1025 addChild (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE root, pANTLR3_BASE_TREE child) function
1029 sprintf(buffer, "addChild\t%d\t%d\n", delboy->adaptor->getUniqueID(delboy->adaptor, root),
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py263 self.dbg.addChild(t, child)
282 def addChild(self, t, child): member in class:DebugTreeAdaptor
285 self.addChild(t, n)
291 self.adaptor.addChild(t, child)
292 self.dbg.addChild(t, child)
707 def addChild(self, root, child): member in class:DebugEventListener
713 @see antlr3.tree.TreeAdaptor.addChild()
809 def addChild(self, root, child): member in class:TraceDebugEventListener
810 self.record("addChild %s, %s" % (
1098 def addChild(sel member in class:DebugEventSocketProxy
[all...]
H A Dtree.py170 def addChild(self, t): member in class:Tree
316 use "t=adaptor.nil(); t.addChild(x); t.addChild(y);"
348 def addChild(self, t, child): member in class:TreeAdaptor
729 def addChild(self, childTree): member in class:BaseTree
1015 self.addChild(newTree, newSubTree)
1020 def addChild(self, tree, child): member in class:BaseTreeAdaptor
1034 tree.addChild(child)
1085 # add oldRoot to newRoot; addChild takes care of case where oldRoot
1088 newRoot.addChild(oldRoo
[all...]
/external/parameter-framework/upstream/tools/coverage/
H A Dcoverage.py122 def addChild(self, child): member in class:Element
341 self.addChild(childElement)
480 self.addChild(criteria)
510 self.addChild(self.rootRule)
513 self.addChild(self.criteronStates)
626 self.addChild(CriterionState(state))
703 exported.addChild(child.export())
706 def addChild(self, child): member in class:Criteria
709 super().addChild(child)
787 self.criteria.addChild(Criterio
[all...]
/external/parameter-framework/upstream/tools/xmlGenerator/
H A DEddParser.py183 def addChild(self, child, append=True) : member in class:Element
878 context[-2].addChild(myelement)
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDIE.h176 /// addChild - Add a child to the DIE.
178 void addChild(DIE *Child) { function in class:llvm::DIE
/external/deqp/framework/common/
H A DtcuCommandLine.cpp260 void addChild (CaseTreeNode* child) { m_children.push_back(child); } function in class:tcu::CaseTreeNode
369 nodeStack.back()->addChild(newChild);
437 nodeStack[stackPos]->addChild(newChild);
476 nodeStack[stackPos]->addChild(curGroup);
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h98 addChild(std::unique_ptr<DomTreeNodeBase<NodeT>> C) { function in class:llvm::DomTreeNodeBase
561 return (DomTreeNodes[BB] = IDomNode->addChild(
656 return (this->DomTreeNodes[BB] = IDomNode->addChild(
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DDominators.h91 DomTreeNodeBase<NodeT> *addChild(DomTreeNodeBase<NodeT> *C) { function in class:llvm::DomTreeNodeBase
491 IDomNode->addChild(new DomTreeNodeBase<NodeT>(BB, IDomNode));
640 return this->DomTreeNodes[BB] = IDomNode->addChild(C);
/external/v8/tools/
H A Dprofile.js671 * parentClone.addChild(nodeClone);
744 CallTree.Node.prototype.addChild = function(label) {
790 return this.findChild(label) || this.addChild(label);
/external/clang/lib/Basic/
H A DVirtualFileSystem.cpp472 InMemoryNode *addChild(StringRef Name, std::unique_ptr<InMemoryNode> Child) { function in class:clang::vfs::detail::InMemoryDirectory
539 Dir->addChild(Name, llvm::make_unique<detail::InMemoryFile>(
551 Dir = cast<detail::InMemoryDirectory>(Dir->addChild(
/external/vogar/lib/
H A Dkxml-libcore-20110123.jarorg/kxml2/ org/kxml2/kdom/ org/kxml2/kdom/Element.class Element.java package org.kxml2. ...

Completed in 1105 milliseconds

12345