HomeSort by relevance Sort by last modified time
    Searched defs:newChild (Results 1 - 25 of 25) sorted by null

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AOptimizedMultipleCommand.java 40 void replaceChild(Node oldChild, Node newChild) {
41 if (newChild == null) {
42 throw new IllegalArgumentException("newChild cannot be null.");
47 commands[i] = (PCommand) newChild;
48 newChild.parent(this);
AMultipleCommand.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
85 if(newChild != null)
87 i.set((PCommand) newChild);
88 newChild.parent(this);
ASequenceExpression.java 78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
85 if(newChild != null)
87 i.set((PExpression) newChild);
88 newChild.parent(this);
ACallCommand.java 146 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
151 setPosition((PPosition) newChild);
159 if(newChild != null)
161 i.set((TWord) newChild);
162 newChild.parent(this);
177 if(newChild != null)
179 i.set((PExpression) newChild);
180 newChild.parent(this);
AFunctionExpression.java 115 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
120 setName((PVariable) newChild);
128 if(newChild != null)
130 i.set((PExpression) newChild);
131 newChild.parent(this);
ADefCommand.java 183 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
188 setPosition((PPosition) newChild);
196 if(newChild != null)
198 i.set((TWord) newChild);
199 newChild.parent(this);
214 if(newChild != null)
216 i.set((PVariable) newChild);
217 newChild.parent(this);
230 setCommand((PCommand) newChild);
  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 226 TIntermTyped *newChild = childTempConstant->fold(op, 0, mInfoSink);
228 if (newChild)
229 return newChild;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 362 RefPtrWillBeRawPtr<Element> newChild = target->cloneElementWithoutChildren();
363 m_targetElementInstance = toSVGElement(newChild.get());
365 shadowTreeRootElement->appendChild(newChild.release());
480 RefPtrWillBeRawPtr<Node> newChild = child->cloneNode(false);
481 targetInstance->appendChild(newChild.get());
482 if (newChild->isSVGElement()) {
484 if (!buildShadowTree(toSVGElement(child), toSVGElement(newChild), foundUse))
571 RefPtrWillBeRawPtr<Node> newChild = cloneNodeAndAssociate(*target);
572 ASSERT(newChild->isSVGElement());
573 transferUseWidthAndHeightIfNeeded(*use, toSVGElement(newChild.get()), *target)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 106 XmlChild* newChild = NULL;
110 newChild = new XmlText(*(pChild->AsText()));
112 newChild = new XmlElement(*(pChild->AsElement()));
114 *ppLast = newChild;
115 ppLast = &(newChild->next_child_);
117 last_child_ = newChild;
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlelement.cc 89 XmlChild* newChild = NULL;
93 newChild = new XmlText(*(pChild->AsText()));
95 newChild = new XmlElement(*(pChild->AsElement()));
97 *ppLast = newChild;
98 ppLast = &(newChild->next_child_);
100 last_child_ = newChild;
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTrees.java 240 CommonTree newChild = new CommonTree(new CommonToken(5));
243 t.replaceChildren(0, 0, newChild);
257 CommonTree newChild = new CommonTree(new CommonToken(99, "c"));
258 t.replaceChildren(0, 0, newChild);
270 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
271 t.replaceChildren(1, 1, newChild);
283 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
284 t.replaceChildren(0, 0, newChild);
296 CommonTree newChild = new CommonTree(new CommonToken(99,"x"));
297 t.replaceChildren(2, 2, newChild);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp 433 RefPtrWillBeRawPtr<Node> newChild = nullptr;
437 newChild = textToFragment(text, exceptionState);
439 newChild = Text::create(document(), text);
448 parent->replaceChild(newChild.release(), this, exceptionState);
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.cpp 353 CaseTreeNode* const newChild = new CaseTreeNode(curName);
357 nodeStack.back()->addChild(newChild);
361 delete newChild;
366 nodeStack.push_back(newChild);
421 CaseTreeNode* const newChild = new CaseTreeNode(curName);
425 nodeStack[stackPos]->addChild(newChild);
429 delete newChild;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
org.eclipse.help_3.5.0.v20100524.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-junit.jar 
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 729 milliseconds