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

1 2 3 4 56 7

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 406 public Node insertChildAt(Node newChild, int index) {
408 if (newChild instanceof Element && getDocumentElement() != null) {
411 } else if (newChild instanceof DocumentType && getDoctype() != null) {
416 return super.insertChildAt(newChild, index);
NodeImpl.java 71 public Node appendChild(Node newChild) throws DOMException {
141 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
156 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
  /external/webkit/JavaScriptCore/API/tests/
JSNode.c 87 Node* newChild = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception));
90 Node_replaceChild(node, newChild, oldChild);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 560 INode newChild = targetNode.insertChildAt(fqcn, index);
564 addAttributes(newChild, element, idMap) {
581 newChild.setAttribute(ANDROID_URI, "layout_${it}", id ? id : "true");
584 addInnerElements(newChild, element, idMap);
  /external/webkit/WebKit/win/
DOMHTMLClasses.h 246 /* [in] */ IDOMNode *newChild,
248 /* [retval][out] */ IDOMNode **result) { return DOMDocument::insertBefore(newChild, refChild, result); }
251 /* [in] */ IDOMNode *newChild,
253 /* [retval][out] */ IDOMNode **result) { return DOMDocument::replaceChild(newChild, oldChild, result); }
520 /* [in] */ IDOMNode *newChild,
522 /* [retval][out] */ IDOMNode **result) { return DOMElement::insertBefore(newChild, refChild, result); }
525 /* [in] */ IDOMNode *newChild,
527 /* [retval][out] */ IDOMNode **result) { return DOMElement::replaceChild(newChild, oldChild, result); }
    [all...]
  /external/webkit/WebCore/rendering/
RenderObject.cpp 270 void RenderObject::addChild(RenderObject* newChild, RenderObject* beforeChild)
279 if (newChild->isListItem())
281 else if (newChild->isTableCol() && newChild->style()->display() == TABLE_COLUMN_GROUP)
283 else if (newChild->isRenderBlock() && newChild->style()->display() == TABLE_CAPTION)
285 else if (newChild->isTableSection())
287 else if (newChild->isTableRow())
289 else if (newChild->isTableCell()) {
295 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell()
    [all...]
RenderBlock.cpp 265 void RenderBlock::addChild(RenderObject* newChild, RenderObject* beforeChild)
286 if (newChild->isInline() || beforeChild->parent()->firstChild() != beforeChild)
287 beforeChild->parent()->addChild(newChild, beforeChild);
289 addChild(newChild, beforeChild->parent());
294 if ((newChild->isTableCol() && newChild->style()->display() == TABLE_COLUMN_GROUP)
295 || (newChild->isRenderBlock() && newChild->style()->display() == TABLE_CAPTION)
296 || newChild->isTableSection()
297 || newChild->isTableRow(
    [all...]
RenderMenuList.cpp 100 void RenderMenuList::addChild(RenderObject* newChild, RenderObject* beforeChild)
103 m_innerBlock->addChild(newChild, beforeChild);
RenderObject.h 219 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
220 virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild = 0) { return addChild(newChild, beforeChild); }
    [all...]
RenderBlock.h 69 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTM.java     [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 747 * @param newChild New node to append to the list of this node's
753 public Node appendChild(Node newChild) throws DOMException
953 * @param newChild New child node to insert
960 public Node insertBefore(Node newChild, Node refChild)
1001 * @param newChild Replace existing child with this one
1008 public Node replaceChild(Node newChild, Node oldChild) throws DOMException
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
UnImplNode.java 88 * @param newChild New node to append to the list of this node's children
94 public Node appendChild(Node newChild) throws DOMException
649 * @param newChild New child node to insert
656 public Node insertBefore(Node newChild, Node refChild) throws DOMException
667 * @param newChild Replace existing child with this one
674 public Node replaceChild(Node newChild, Node oldChild) throws DOMException
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 118 preload(classLoader, progress.newChild(40, SubMonitor.SUPPRESS_NONE));
176 progress.newChild(1));
191 progress.newChild(1));
  /external/webkit/WebCore/html/
HTMLMediaElement.h 52 bool checkDTD(const Node* newChild);
HTMLMediaElement.cpp 150 bool HTMLMediaElement::checkDTD(const Node* newChild)
152 return newChild->hasTagName(sourceTag) || HTMLElement::checkDTD(newChild);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsLayer.h 197 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
  /external/webkit/WebCore/platform/graphics/win/
GraphicsLayerCACF.cpp 193 bool GraphicsLayerCACF::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
195 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.h 62 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
  /external/webkit/WebKit/win/Interfaces/
DOMCore.idl 158 - (DOMNode *)insertBefore:(DOMNode *)newChild :(DOMNode *)refChild;
160 HRESULT insertBefore([in] IDOMNode* newChild, [in] IDOMNode* refChild, [out, retval] IDOMNode** result);
163 - (DOMNode *)replaceChild:(DOMNode *)newChild :(DOMNode *)oldChild;
165 HRESULT replaceChild([in] IDOMNode* newChild, [in] IDOMNode* oldChild, [out, retval] IDOMNode** result);
173 - (DOMNode *)appendChild:(DOMNode *)newChild;
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 196 bool GraphicsLayerAndroid::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
198 LOG("(%x) replaceChild %x by %x", this, oldChild, newChild);
199 bool ret = GraphicsLayer::replaceChild(oldChild, newChild);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 483 * @param newChild
491 public final Node insertBefore(Node newChild, Node refChild)
499 * @param newChild
507 public final Node replaceChild(Node newChild, Node oldChild)
529 * @param newChild
536 public final Node appendChild(Node newChild) throws DOMException
    [all...]
DTMDocumentImpl.java     [all...]
  /external/webkit/WebCore/dom/
Document.cpp 760 RefPtr<Node> newChild = importNode(oldChild, true, ec);
763 newElement->appendChild(newChild.release(), ec);
778 RefPtr<Node> newChild = importNode(oldChild, true, ec);
781 newFragment->appendChild(newChild.release(), ec);
    [all...]
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 287 - (DOMNode *)insertBefore:(DOMNode *)newChild :(DOMNode *)refChild;
288 - (DOMNode *)insertBefore:(DOMNode *)newChild refChild:(DOMNode *)refChild AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
289 - (DOMNode *)replaceChild:(DOMNode *)newChild :(DOMNode *)oldChild;
290 - (DOMNode *)replaceChild:(DOMNode *)newChild oldChild:(DOMNode *)oldChild AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
292 - (DOMNode *)appendChild:(DOMNode *)newChild;
    [all...]

Completed in 864 milliseconds

1 2 3 4 56 7