Searched defs:newChild (Results 76 - 100 of 123) sorted by relevance

12345

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAIfCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
199 setPosition((PPosition) newChild);
205 setExpression((PExpression) newChild);
211 setBlock((PCommand) newChild);
217 setOtherwise((PCommand) newChild);
H A DALoopCommand.java231 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
236 setPosition((PPosition) newChild);
242 setVariable((PVariable) newChild);
248 setStart((PExpression) newChild);
254 setEnd((PExpression) newChild);
260 setCommand((PCommand) newChild);
H A DALoopIncCommand.java268 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
273 setPosition((PPosition) newChild);
279 setVariable((PVariable) newChild);
285 setStart((PExpression) newChild);
291 setEnd((PExpression) newChild);
297 setIncrement((PExpression) newChild);
303 setCommand((PCommand) newChild);
H A DALoopToCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
199 setPosition((PPosition) newChild);
205 setVariable((PVariable) newChild);
211 setExpression((PExpression) newChild);
217 setCommand((PCommand) newChild);
H A DAWithCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
199 setPosition((PPosition) newChild);
205 setVariable((PVariable) newChild);
211 setExpression((PExpression) newChild);
217 setCommand((PCommand) newChild);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemForEach.java429 * @param newChild Child to add to child list
433 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
436 int type = ((ElemTemplateElement) newChild).getXSLToken();
440 setSortElem((ElemSort) newChild);
442 return newChild;
445 return super.appendChild(newChild);
H A DElemNumber.java577 * @param newChild Child to add to child list
583 public ElemTemplateElement appendChild(ElemTemplateElement newChild) argument
587 new Object[]{ newChild.getNodeName(),
588 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
H A DElemLiteralResult.java747 * @param newChild New node to append to the list of this node's
753 public Node appendChild(Node newChild) throws DOMException argument
953 * @param newChild New child node to insert
960 public Node insertBefore(Node newChild, Node refChild) argument
1001 * @param newChild Replace existing child with this one
1008 public Node replaceChild(Node newChild, Node oldChild) throws DOMException argument
H A DElemTemplateElement.java249 * @param newChild Child to be added to child list
254 public Node appendChild(Node newChild) throws DOMException argument
257 if (null == newChild)
262 ElemTemplateElement elem = (ElemTemplateElement) newChild;
277 return newChild;
387 * @param newChild New child to replace with
394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException argument
400 ElemTemplateElement newChildElem = ((ElemTemplateElement) newChild);
427 * @param newChild New child node to insert
434 public Node insertBefore(Node newChild, Nod argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.cpp237 void CounterNode::insertAfter(CounterNode* newChild, CounterNode* refChild, const AtomicString& identifier) argument
239 ASSERT(newChild);
240 ASSERT(!newChild->m_parent);
241 ASSERT(!newChild->m_previousSibling);
242 ASSERT(!newChild->m_nextSibling);
248 if (newChild->m_hasResetType) {
257 refChild->m_nextSibling = newChild;
260 m_firstChild = newChild;
263 newChild->m_parent = this;
264 newChild
[all...]
H A DRenderMultiColumnFlowThread.cpp73 void RenderMultiColumnFlowThread::addChild(RenderObject* newChild, RenderObject* beforeChild) argument
75 RenderBlockFlow::addChild(newChild, beforeChild);
H A DRenderTextControl.cpp54 void RenderTextControl::addChild(RenderObject* newChild, RenderObject* beforeChild) argument
58 Node* node = newChild->node();
60 RenderBlockFlow::addChild(newChild, firstChild());
62 RenderBlockFlow::addChild(newChild, beforeChild);
H A DRenderMenuList.cpp143 void RenderMenuList::addChild(RenderObject* newChild, RenderObject* beforeChild) argument
146 m_innerBlock->addChild(newChild, beforeChild);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DIntermediate.cpp226 TIntermTyped *newChild = childTempConstant->fold(op, 0, mInfoSink); local
228 if (newChild)
229 return newChild;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGUseElement.cpp362 RefPtrWillBeRawPtr<Element> newChild = target->cloneElementWithoutChildren();
363 m_targetElementInstance = toSVGElement(newChild.get());
365 shadowTreeRootElement->appendChild(newChild.release());
480 RefPtrWillBeRawPtr<Node> newChild = child->cloneNode(false); local
481 targetInstance->appendChild(newChild.get());
482 if (newChild->isSVGElement()) {
484 if (!buildShadowTree(toSVGElement(child), toSVGElement(newChild), foundUse))
571 RefPtrWillBeRawPtr<Node> newChild = cloneNodeAndAssociate(*target); local
572 ASSERT(newChild->isSVGElement());
573 transferUseWidthAndHeightIfNeeded(*use, toSVGElement(newChild
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlelement.cc106 XmlChild* newChild = NULL; local
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/
H A Dxmlelement.cc89 XmlChild* newChild = NULL; local
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/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java914 * insertionCursor.appendChild(document.importNode(newChild)))
918 * @param newChild Must be a valid new node handle.
923 public void appendChild(int newChild, boolean clone, boolean cloneDepth); argument
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java88 * @param newChild New node to append to the list of this node's children
94 public Node appendChild(Node newChild) throws DOMException argument
649 * @param newChild New child node to insert
656 public Node insertBefore(Node newChild, Node refChild) throws DOMException argument
667 * @param newChild Replace existing child with this one
674 public Node replaceChild(Node newChild, Node oldChild) throws DOMException argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp118 bool ContainerNode::containsConsideringHostElements(const Node& newChild) const
121 return newChild.containsIncludingHostElements(*this);
122 return newChild.contains(this);
125 bool ContainerNode::checkAcceptChild(const Node* newChild, const Node* oldChild, ExceptionState& exceptionState) const argument
127 // Not mentioned in spec: throw NotFoundError if newChild is null
128 if (!newChild) {
134 if ((newChild->isElementNode() || newChild->isTextNode()) && isElementNode()) {
135 ASSERT(isChildTypeAllowed(*newChild));
136 if (containsConsideringHostElements(*newChild)) {
169 checkAcceptChildGuaranteedNodeTypes(const Node& newChild, ExceptionState& exceptionState) const argument
179 insertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node* refChild, ExceptionState& exceptionState) argument
256 insertBeforeCommon(Node& nextChild, Node& newChild) argument
296 parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& nextChild) argument
320 replaceChild(PassRefPtrWillBeRawPtr<Node> newChild, PassRefPtrWillBeRawPtr<Node> oldChild, ExceptionState& exceptionState) argument
680 appendChild(PassRefPtrWillBeRawPtr<Node> newChild, ExceptionState& exceptionState) argument
745 parserAppendChild(PassRefPtrWillBeRawPtr<Node> newChild) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.cpp433 RefPtrWillBeRawPtr<Node> newChild = nullptr; local
437 newChild = textToFragment(text, exceptionState);
439 newChild = Text::create(document(), text);
448 parent->replaceChild(newChild.release(), this, exceptionState);
/external/deqp/framework/common/
H A DtcuCommandLine.cpp353 CaseTreeNode* const newChild = new CaseTreeNode(curName); local
357 nodeStack.back()->addChild(newChild);
361 delete newChild;
366 nodeStack.push_back(newChild);
421 CaseTreeNode* const newChild = new CaseTreeNode(curName); local
425 nodeStack[stackPos]->addChild(newChild);
429 delete newChild;
/external/owasp/sanitizer/tools/findbugs/lib/
H A Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/dom4j/bean/ org/dom4j/datatype/ org/ ...
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java2230 * @param newChild Must be a valid new node handle.
2235 public void appendChild(int newChild, boolean clone, boolean cloneDepth) argument
H A DDTMDocumentImpl.java2050 * @param newChild Must be a valid new node handle.
2055 public void appendChild(int newChild, boolean clone, boolean cloneDepth) { argument
2056 boolean sameDoc = ((newChild & DOCHANDLE_MASK) == m_docHandle);

Completed in 528 milliseconds

12345