HomeSort by relevance Sort by last modified time
    Searched refs:newChild (Results 226 - 250 of 304) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeinsertbefore14.js 79 The method insertBefore inserts the node newChild before the existing child node refChild.
80 If refChild is null, insert newChild at the end of the list of children.
nodeinsertbefore17.js 82 The method insertBefore inserts the node newChild before the existing child node refChild.
83 If refChild is null, insert newChild at the end of the list of children.
nodeinsertbefore18.js 80 The method insertBefore inserts the node newChild before the existing child node refChild.
81 If refChild is null, insert newChild at the end of the list of children.
nodereplacechild02.js 79 The method replaceChild replaces the child node oldChild with newChild in the list of
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 66 virtual bool replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild);
  /external/webkit/Source/WebCore/rendering/
RenderBlock.cpp 338 void RenderBlock::addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild)
353 if (newChild->isFloatingOrPositioned())
354 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
358 bool childIsNormal = newChild->isInline() || !newChild->style()->columnSpan();
363 return flow->addChildIgnoringContinuation(newChild, beforeChild);
368 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
370 return flow->addChildIgnoringContinuation(newChild, 0); // Just treat like an append.
371 return beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild);
375 void RenderBlock::addChildToAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild
    [all...]
RenderBlock.h 77 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
342 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild);
343 void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild);
344 void addChildToAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild);
345 virtual void addChildIgnoringAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild = 0);
615 void makeChildrenAnonymousColumnBlocks(RenderObject* beforeChild, RenderBlock* newBlockBox, RenderObject* newChild);
625 RenderObject* newChild, RenderBoxModelObject* oldCont);
629 RenderBlock* columnsBlockForSpanningElement(RenderObject* newChild);
    [all...]
RenderObject.cpp 279 void RenderObject::addChild(RenderObject* newChild, RenderObject* beforeChild)
288 if (newChild->isTableCol() && newChild->style()->display() == TABLE_COLUMN_GROUP)
290 else if (newChild->isRenderBlock() && newChild->style()->display() == TABLE_CAPTION)
292 else if (newChild->isTableSection())
294 else if (newChild->isTableRow())
296 else if (newChild->isTableCell()) {
302 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell())
319 table->addChild(newChild);
    [all...]
  /external/markdown/markdown/
treeprocessors.py 130 for newChild in childResult:
131 node.insert(pos, newChild)
284 for newChild in lst:
286 if newChild.tail:
287 newChild.tail = \
288 markdown.inlinepatterns.handleAttributes(newChild.tail,
290 if newChild.text:
291 newChild.text = \
292 markdown.inlinepatterns.handleAttributes(newChild.text,
293 newChild)
    [all...]
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNode.c 87 Node* newChild = JSObjectGetPrivate(JSValueToObject(context, arguments[0], exception));
90 Node_replaceChild(node, newChild, oldChild);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.cpp 128 bool GraphicsLayerTextureMapper::replaceChild(GraphicsLayer* oldChild, GraphicsLayer* newChild)
130 if (GraphicsLayer::replaceChild(oldChild, newChild)) {
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.h 244 /* [in] */ IDOMNode *newChild,
246 /* [retval][out] */ IDOMNode **result) { return DOMDocument::insertBefore(newChild, refChild, result); }
249 /* [in] */ IDOMNode *newChild,
251 /* [retval][out] */ IDOMNode **result) { return DOMDocument::replaceChild(newChild, oldChild, result); }
518 /* [in] */ IDOMNode *newChild,
520 /* [retval][out] */ IDOMNode **result) { return DOMElement::insertBefore(newChild, refChild, result); }
523 /* [in] */ IDOMNode *newChild,
525 /* [retval][out] */ IDOMNode **result) { return DOMElement::replaceChild(newChild, oldChild, result); }
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.cpp 636 bool Node::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach)
642 return toContainerNode(this)->insertBefore(newChild, refChild, ec, shouldLazyAttach);
645 bool Node::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach)
651 return toContainerNode(this)->replaceChild(newChild, oldChild, ec, shouldLazyAttach);
663 bool Node::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach)
669 return toContainerNode(this)->appendChild(newChild, ec, shouldLazyAttach);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 395 * @param {Node} newChild Node to insert.
399 function domInsertBefore(newChild, oldChild) {
400 return oldChild.parentNode.insertBefore(newChild, oldChild);
406 * @param {Node} newChild New child to append.
410 function domReplaceChild(newChild, oldChild) {
411 return oldChild.parentNode.replaceChild(newChild, oldChild);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 395 * @param {Node} newChild Node to insert.
399 function domInsertBefore(newChild, oldChild) {
400 return oldChild.parentNode.insertBefore(newChild, oldChild);
406 * @param {Node} newChild New child to append.
410 function domReplaceChild(newChild, oldChild) {
411 return oldChild.parentNode.replaceChild(newChild, oldChild);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java     [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
jstemplate_compiled.js 359 * @param {Node} newChild Node to insert.
363 function domInsertBefore(newChild, oldChild) {
364 return oldChild.parentNode.insertBefore(newChild, oldChild);
392 * @param {Node} newChild New child to append.
396 function domReplaceChild(newChild, oldChild) {
397 return oldChild.parentNode.replaceChild(newChild, oldChild);
  /prebuilts/devtools/tools/lib/
jsilver-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
PerformanceResults.java 360 allScenariosSize = readScenarios(buildName, subMonitor.newChild(10)) ;
434 componentResults.updateBuild(buildName, scenarios, force, dataDir, subMonitor.newChild(1), timeGuess);
481 String[] names = read(true, null, configs, true, dataDir, null, subMonitor.newChild(100));
485 return read(false, null, configs, true, dataDir, null, subMonitor.newChild(900));
503 read(false, builds[i], configs, true, dataDir, null, subMonitor.newChild(900));
838 read(false, builds[i], null, force, dataDir, taskName, subMonitor.newChild(1000));
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/apache-xml/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...]
  /external/apache-xml/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...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 74 public Node appendChild(Node newChild) throws DOMException {
144 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
159 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 99 preload(classLoader, progress.newChild(40, SubMonitor.SUPPRESS_NONE));
152 progress.newChild(1));
167 progress.newChild(1));

Completed in 1055 milliseconds

1 2 3 4 5 6 7 8 91011>>