HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 126 - 150 of 235) sorted by null

1 2 3 4 56 7 8 910

  /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/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCallTemplate.java 324 * @param newChild Child to add to this node's children list
330 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
333 int type = ((ElemTemplateElement) newChild).getXSLToken();
337 setParamElem((ElemWithParam) newChild);
342 return super.appendChild(newChild);
ElemSort.java 309 * @param newChild Child to add to the child list
315 public Node appendChild(Node newChild) throws DOMException
319 new Object[]{ newChild.getNodeName(),
320 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
ElemForEach.java 429 * @param newChild Child to add to child list
433 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
436 int type = ((ElemTemplateElement) newChild).getXSLToken();
440 setSortElem((ElemSort) newChild);
442 return newChild;
445 return super.appendChild(newChild);
ElemValueOf.java 261 * @param newChild Child to add to children list
267 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
271 new Object[]{ newChild.getNodeName(),
272 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderButton.h 43 virtual void addChild(RenderObject* newChild, RenderObject *beforeChild = 0) OVERRIDE;
RenderButton.cpp 38 void RenderButton::addChild(RenderObject* newChild, RenderObject* beforeChild)
47 m_inner->addChild(newChild, beforeChild);
CounterNode.h 68 void insertAfter(CounterNode* newChild, CounterNode* beforeChild, const AtomicString& identifier);
RenderInline.h 47 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE;
127 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild);
128 virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE FINAL;
133 RenderObject* newChild, RenderBoxModelObject* oldCont);
RenderMultiColumnFlowThread.h 100 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE;
RenderTextControl.cpp 54 void RenderTextControl::addChild(RenderObject* newChild, RenderObject* beforeChild)
58 Node* node = newChild->node();
60 RenderBlockFlow::addChild(newChild, firstChild());
62 RenderBlockFlow::addChild(newChild, beforeChild);
RenderInline.cpp 288 void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild)
291 return addChildToContinuation(newChild, beforeChild);
292 return addChildIgnoringContinuation(newChild, beforeChild);
327 void RenderInline::addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild)
333 if (!newChild->isInline() && !newChild->isFloatingOrOutOfFlowPositioned()) {
336 // |newChild|. We then make that block box a continuation of this inline. We take all of
354 splitFlow(beforeChild, newBox, newChild, oldContinuation);
358 RenderBoxModelObject::addChild(newChild, beforeChild);
360 newChild->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.idl 51 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node insertBefore(Node newChild, Node? refChild);
52 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node replaceChild(Node newChild, Node oldChild);
54 [CustomElementCallbacks, PerWorldBindings, RaisesException, TypeChecking=Interface] Node appendChild(Node newChild);
ContainerNode.h 83 PassRefPtrWillBeRawPtr<Node> insertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION);
84 PassRefPtrWillBeRawPtr<Node> replaceChild(PassRefPtrWillBeRawPtr<Node> newChild, PassRefPtrWillBeRawPtr<Node> oldChild, ExceptionState& = ASSERT_NO_EXCEPTION);
86 PassRefPtrWillBeRawPtr<Node> appendChild(PassRefPtrWillBeRawPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION);
99 void parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& refChild);
245 inline bool checkAcceptChildGuaranteedNodeTypes(const Node& newChild, ExceptionState&) const;
246 inline bool checkAcceptChild(const Node* newChild, const Node* oldChild, ExceptionState&) const;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 123 public Node appendChild(Node newChild) throws DOMException {
124 mNodeList.getArrayList().add((MockXmlNode) newChild);
125 return newChild;
253 public Node insertBefore(Node newChild, Node refChild)
294 public Node replaceChild(Node newChild, Node oldChild)
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 80 def insertBefore(self, newChild, refChild):
81 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
82 for c in tuple(newChild.childNodes):
85 return newChild
86 if newChild.nodeType not in self._child_node_types:
88 "%s cannot be child of %s" % (repr(newChild), repr(self)))
89 if newChild.parentNode is not None:
90 newChild.parentNode.removeChild(newChild)
92 self.appendChild(newChild)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 80 def insertBefore(self, newChild, refChild):
81 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
82 for c in tuple(newChild.childNodes):
85 return newChild
86 if newChild.nodeType not in self._child_node_types:
88 "%s cannot be child of %s" % (repr(newChild), repr(self)))
89 if newChild.parentNode is not None:
90 newChild.parentNode.removeChild(newChild)
92 self.appendChild(newChild)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
background.js 135 var newChild = new Node(
137 this.appendChild(newChild);
140 'title': newChild._title,
141 'url': newChild._url,
143 }, callbackChain.wrap((function(wantedChild, newChild, createdNode) {
144 newChild._id = createdNode.id;
145 newChild._nodesMap[newChild._id] = newChild;
147 newChild.updateChildren(wantedChild.children, callbackChain)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Node.java 26 abstract void replaceChild(Node oldChild, Node newChild);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridDropHandler.java 473 INode newChild = null;
686 newChild = targetNode.appendChild(fqcn);
690 newChild = targetNode.insertChildAt(fqcn, index);
706 mGrid.setGridAttribute(newChild, ATTR_LAYOUT_COLUMN, column);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AbsoluteLayoutRule.java 174 INode newChild = targetNode.appendChild(fqcn);
177 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER);
204 newChild.setAttribute(ANDROID_URI, ATTR_LAYOUT_X,
206 newChild.setAttribute(ANDROID_URI, ATTR_LAYOUT_Y,
209 addInnerElements(newChild, element, idMap);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 189 def insert(self, position, newChild):
190 if isinstance(newChild, basestring) \
191 and not isinstance(newChild, NavigableString):
192 newChild = NavigableString(newChild)
195 if hasattr(newChild, 'parent') and newChild.parent is not None:
198 if newChild.parent is self:
199 index = self.index(newChild)
206 newChild.extract(
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 620 XMPNode newChild = addChildNode (xmp, xmpParent, xmlNode, null, isTopLevel);
635 addQualifierNode(newChild, XML_LANG, attribute.getNodeValue());
661 newChild.setValue(textValue);
1044 XMPNode newChild = new XMPNode(
1046 newChild.setAlias(isAlias);
1051 xmpParent.addChild(newChild);
1055 xmpParent.addChild(1, newChild);
1074 newChild.setName(ARRAY_ITEM_NAME);
1077 return newChild;
    [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;

Completed in 943 milliseconds

1 2 3 4 56 7 8 910