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

1 2 3 4 5 67 8 9

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.cpp 469 RefPtr<Node> newChild;
473 newChild = textToFragment(text, es);
475 newChild = Text::create(document(), text);
481 parent->replaceChild(newChild.release(), this, es);
491 Node* HTMLElement::insertAdjacent(const String& where, Node* newChild, ExceptionState& es)
502 parent->insertBefore(newChild, this, es, AttachLazily);
504 return newChild;
510 insertBefore(newChild, firstChild(), es, AttachLazily);
511 return es.hadException() ? 0 : newChild;
515 appendChild(newChild, es, AttachLazily)
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp 260 void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild)
263 return addChildToContinuation(newChild, beforeChild);
264 return addChildIgnoringContinuation(newChild, beforeChild);
299 void RenderInline::addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild)
305 if (!newChild->isInline() && !newChild->isFloatingOrOutOfFlowPositioned()) {
308 // |newChild|. We then make that block box a continuation of this inline. We take all of
322 splitFlow(beforeChild, newBox, newChild, oldContinuation);
326 RenderBoxModelObject::addChild(newChild, beforeChild);
328 newChild->setNeedsLayoutAndPrefWidthsRecalc()
    [all...]
RenderMenuList.h 59 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
RenderNamedFlowThread.h 59 void addFlowChild(RenderObject* newChild);
RenderGrid.h 64 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0) OVERRIDE;
RenderNamedFlowThread.cpp 142 void RenderNamedFlowThread::addFlowChild(RenderObject* newChild)
147 Node* childNode = newChild->node();
157 m_flowThreadChildList.insertBefore(beforeChild, newChild);
159 m_flowThreadChildList.add(newChild);
  /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/PerformanceTests/DOM/resources/dom-perf/
template.js 278 * @param {Node} newChild Node to insert.
282 function Template_domInsertBefore(newChild, oldChild) {
283 return oldChild.parentNode.insertBefore(newChild, oldChild);
311 * @param {Node} newChild New child to append.
315 function Template_domReplaceChild(newChild, oldChild) {
316 return oldChild.parentNode.replaceChild(newChild, oldChild);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 684 RefPtr<Element> newChild = targetInstance->correspondingElement()->cloneElementWithChildren();
691 if (subtreeContainsDisallowedElement(newChild.get()))
692 removeDisallowedElementsFromSubtree(newChild.get());
694 userAgentShadowRoot()->appendChild(newChild.release());
725 RefPtr<Element> newChild = target->cloneElementWithChildren();
726 ASSERT(newChild->isSVGElement());
727 cloneParent->appendChild(newChild.release());
771 RefPtr<Node> newChild = child->cloneNode(true);
772 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);
  /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));

Completed in 1550 milliseconds

1 2 3 4 5 67 8 9