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

1 2 3 4 56 7 8 9

  /external/apache-xml/src/main/java/org/apache/xalan/templates/
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 +
ElemCopyOf.java 213 * @param newChild Child to add to this node's child list
217 public ElemTemplateElement appendChild(ElemTemplateElement newChild)
221 new Object[]{ newChild.getNodeName(),
222 this.getNodeName() }); //"Can not add " +((ElemTemplateElement)newChild).m_elemName +
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeCustom.cpp 70 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
72 imp->insertBefore(newChild, refChild, es, AttachLazily);
87 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
89 imp->replaceChild(newChild, oldChild, es, AttachLazily);
119 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
120 imp->appendChild(newChild, es, AttachLazily);
  /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/dom/
Node.idl 53 [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, RaisesException] Node insertBefore(Node newChild, Node refChild);
54 [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, RaisesException] Node replaceChild(Node newChild, Node oldChild);
56 [Custom, PerWorldBindings, ActivityLog=AccessForIsolatedWorlds, RaisesException] Node appendChild(Node newChild);
ContainerNode.h 99 void insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
100 void replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
102 void appendChild(PassRefPtr<Node> newChild, ExceptionState& = ASSERT_NO_EXCEPTION, AttachBehavior = AttachNow);
109 void parserInsertBefore(PassRefPtr<Node> newChild, Node* refChild);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 57 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionState&);
122 Node* insertAdjacent(const String& where, Node* newChild, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderButton.cpp 41 void RenderButton::addChild(RenderObject* newChild, RenderObject* beforeChild)
51 m_inner->addChild(newChild, beforeChild);