Searched defs:refChild (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInsertNodeBeforeCommand.cpp35 InsertNodeBeforeCommand::InsertNodeBeforeCommand(PassRefPtr<Node> insertChild, PassRefPtr<Node> refChild, argument
37 : SimpleEditCommand(refChild->document())
39 , m_refChild(refChild)
H A DRemoveNodeCommand.cpp61 RefPtr<Node> refChild = m_refChild.release(); local
65 parent->insertBefore(m_node.get(), refChild.get(), IGNORE_EXCEPTION);
H A DSplitElementCommand.cpp89 RefPtr<Node> refChild = m_element2->firstChild(); local
93 m_element2->insertBefore(children[i].get(), refChild.get(), IGNORE_EXCEPTION);
H A DCompositeEditCommand.cpp314 void CompositeEditCommand::insertNodeBefore(PassRefPtr<Node> insertChild, PassRefPtr<Node> refChild, ShouldAssumeContentIsAlwaysEditable shouldAssumeContentIsAlwaysEditable) argument
316 ASSERT(!refChild->hasTagName(bodyTag));
317 applyCommandToComposite(InsertNodeBeforeCommand::create(insertChild, refChild, shouldAssumeContentIsAlwaysEditable));
320 void CompositeEditCommand::insertNodeAfter(PassRefPtr<Node> insertChild, PassRefPtr<Node> refChild) argument
323 ASSERT(refChild);
324 ASSERT(!refChild->hasTagName(bodyTag));
325 ContainerNode* parent = refChild->parentNode();
328 if (parent->lastChild() == refChild)
331 ASSERT(refChild->nextSibling());
332 insertNodeBefore(insertChild, refChild
342 Node* refChild = p.deprecatedNode(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8NodeCustom.cpp71 Node* refChild = V8Node::HasInstance(args[1], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1])) : 0; local
72 imp->insertBefore(newChild, refChild, es, AttachLazily);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.cpp234 void CounterNode::insertAfter(CounterNode* newChild, CounterNode* refChild, const AtomicString& identifier) argument
240 // If the refChild is not our child we can not complete the request. This hardens against bugs in RenderCounter.
242 if (refChild && refChild->m_parent != this)
246 while (m_lastChild != refChild)
252 if (refChild) {
253 next = refChild->m_nextSibling;
254 refChild->m_nextSibling = newChild;
261 newChild->m_previousSibling = refChild;
264 ASSERT(next->m_previousSibling == refChild);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DContainerNode.cpp220 void ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& es, AttachBehavior attachBehavior) argument
229 if (!refChild) {
238 // NotFoundError: Raised if refChild is not a child of this node
239 if (refChild->parentNode() != this) {
244 if (refChild->previousSibling() == newChild || refChild == newChild) // nothing to do
247 RefPtr<Node> next = refChild;
H A DNode.cpp516 void Node::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionState& es, AttachBehavior attachBehavior) argument
519 toContainerNode(this)->insertBefore(newChild, refChild, es, attachBehavior);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java954 * @param refChild Insert in front of this child
960 public Node insertBefore(Node newChild, Node refChild) argument
H A DElemTemplateElement.java428 * @param refChild Insert in front of this child
434 public Node insertBefore(Node newChild, Node refChild) throws DOMException argument
436 if(null == refChild)
442 if(newChild == refChild)
465 if(refChild == node)
475 ((ElemTemplateElement)newChild).m_nextSibling = (ElemTemplateElement)refChild;
488 "refChild was not found in insertBefore method!");
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java650 * @param refChild Insert in front of this child
656 public Node insertBefore(Node newChild, Node refChild) throws DOMException argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java484 * @param refChild
491 public final Node insertBefore(Node newChild, Node refChild) argument
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 922 milliseconds