/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderMultiColumnBlock.cpp | 139 void RenderMultiColumnBlock::addChild(RenderObject* newChild, RenderObject* beforeChild) 146 m_flowThread->addChild(newChild, beforeChild);
|
RenderNamedFlowThread.h | 59 void addFlowChild(RenderObject* newChild);
|
RenderTextControl.h | 81 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE FINAL;
|
RenderInline.cpp | 262 void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild) 265 return addChildToContinuation(newChild, beforeChild); 266 return addChildIgnoringContinuation(newChild, beforeChild); 301 void RenderInline::addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild) 307 if (!newChild->isInline() && !newChild->isFloatingOrOutOfFlowPositioned()) { 310 // |newChild|. We then make that block box a continuation of this inline. We take all of 324 splitFlow(beforeChild, newBox, newChild, oldContinuation); 328 RenderBoxModelObject::addChild(newChild, beforeChild); 330 newChild->setNeedsLayoutAndPrefWidthsRecalc() [all...] |
RenderMenuList.h | 59 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
|
RenderBlock.h | 108 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0); 506 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild); 507 void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild); 508 void addChildToAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild); 510 void addChildIgnoringAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild = 0); [all...] |
RenderBlock.cpp | 350 void RenderBlock::addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild) 365 if (newChild->isFloatingOrOutOfFlowPositioned()) { 366 beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild); 372 bool childIsNormal = newChild->isInline() || !newChild->style()->columnSpan(); 377 flow->addChildIgnoringContinuation(newChild, beforeChild); 384 beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild); 388 flow->addChildIgnoringContinuation(newChild, 0); // Just treat like an append. 391 beforeChildParent->addChildIgnoringContinuation(newChild, beforeChild); 395 void RenderBlock::addChildToAnonymousColumnBlocks(RenderObject* newChild, RenderObject* beforeChild [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
malloc-tree | 73 newChild = Node(name, self.level + 1) 74 self.children[name] = newChild
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
GradleExportWizard.java | 91 localmonitor.newChild(count));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
FrameLayoutRule.java | 154 INode newChild = targetNode.appendChild(fqcn); 157 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER); 159 addInnerElements(newChild, element, idMap);
|
RelativeLayoutRule.java | 210 INode newChild = targetNode.insertChildAt(fqcn, index); 213 addAttributes(newChild, element, idMap, BaseLayoutRule.DEFAULT_ATTR_FILTER); 214 addInnerElements(newChild, element, idMap); 217 state.applyConstraints(newChild); 218 previous = newChild; 232 state.attachPrevious(previous, newChild); 233 previous = newChild;
|
GridLayoutRule.java | 327 INode newChild; 329 newChild = dropHandler.handleFreeFormDrop(targetNode, element); 331 newChild = dropHandler.handleGridModeDrop(targetNode, element); 335 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER); 337 addInnerElements(newChild, element, idMap); 657 INode newChild = targetNode.appendChild(fqcn); 658 addAttributes(newChild, element, idMap, DEFAULT_ATTR_FILTER); 664 grid.setGridAttribute(newChild, ATTR_LAYOUT_COLUMN, null); 665 grid.setGridAttribute(newChild, ATTR_LAYOUT_ROW, null); 672 addInnerElements(newChild, element, idMap) [all...] |
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testtree.py | 737 newChild = CommonTree(CommonToken(5)) 740 t.replaceChildren(0, 0, newChild) 754 newChild = CommonTree(CommonToken(99, text="c")) 755 t.replaceChildren(0, 0, newChild) 767 newChild = CommonTree(CommonToken(99, text="x")) 768 t.replaceChildren(1, 1, newChild) 780 newChild = CommonTree(CommonToken(99, text="x")) 781 t.replaceChildren(0, 0, newChild) 793 newChild = CommonTree(CommonToken(99, text="x")) 794 t.replaceChildren(2, 2, newChild) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLElement.h | 53 Element* insertAdjacentElement(const String& where, Element* newChild, ExceptionState&);
|
HTMLElement.cpp | 430 RefPtr<Node> newChild; 434 newChild = textToFragment(text, exceptionState); 436 newChild = Text::create(document(), text); 445 parent->replaceChild(newChild.release(), this, exceptionState); 455 Element* HTMLElement::insertAdjacentElement(const String& where, Element* newChild, ExceptionState& exceptionState) 457 if (!newChild) { 463 Node* returnValue = insertAdjacent(where, newChild, exceptionState); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGUseElement.cpp | 686 RefPtr<Element> newChild = targetInstance->correspondingElement()->cloneElementWithChildren(); 693 if (subtreeContainsDisallowedElement(newChild.get())) 694 removeDisallowedElementsFromSubtree(*newChild); 696 userAgentShadowRoot()->appendChild(newChild.release()); 728 RefPtr<Element> newChild = target->cloneElementWithChildren(); 729 ASSERT(newChild->isSVGElement()); 730 cloneParent->appendChild(newChild.release()); 775 RefPtr<Node> newChild = child->cloneNode(true); 776 svgElement->appendChild(newChild.release()); [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/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/chromium_org/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_org/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/chromium_org/third_party/jstemplate/ |
util.js | 391 * @param {Node} newChild Node to insert. 395 function domInsertBefore(newChild, oldChild) { 396 return oldChild.parentNode.insertBefore(newChild, oldChild); 402 * @param {Node} newChild New child to append. 406 function domReplaceChild(newChild, oldChild) { 407 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);
|
/external/chromium_org/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);
|