Searched defs:insertBefore (Results 1 - 25 of 37) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeCustom.cpp28 WebDOMNode WebDOMNode::insertBefore(const WebDOMNode& newChild, const WebDOMNode& refChild) function in class:WebDOMNode
34 if (impl()->insertBefore(toWebCore(newChild), toWebCore(refChild), ec, true))
/external/javassist/src/main/javassist/expr/
H A DHandler.java108 public void insertBefore(String src) throws CannotCompileException { method in class:Handler
/external/webkit/Source/WebCore/bindings/js/
H A DJSNodeCustom.cpp189 JSValue JSNode::insertBefore(ExecState* exec) function in class:WebCore::JSNode
193 bool ok = imp->insertBefore(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, true);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as123 insertBefore(index+1, text, programName);
127 insertBefore(t.tokenIndex, text, programName);
130 public function insertBefore(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void { function
/external/webkit/Source/WebCore/rendering/
H A DRenderObjectChildList.cpp409 RenderObject* insertBefore = (type == BEFORE) ? owner->virtualChildren()->firstChild() : 0; local
461 owner->addChild(generatedContentContainer, insertBefore);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java225 insertBefore(programName,index+1, text);
228 public void insertBefore(Token t, Object text) { method in class:TokenRewriteStream
229 insertBefore(DEFAULT_PROGRAM_NAME, t, text);
232 public void insertBefore(int index, Object text) { method in class:TokenRewriteStream
233 insertBefore(DEFAULT_PROGRAM_NAME, index, text);
236 public void insertBefore(String programName, Token t, Object text) { method in class:TokenRewriteStream
237 insertBefore(programName, t.getTokenIndex(), text);
240 public void insertBefore(String programName, int index, Object text) { method in class:TokenRewriteStream
/external/clang/include/clang/Edit/
H A DCommit.h70 bool insertBefore(SourceLocation loc, StringRef text) { function in class:clang::edit::Commit
/external/llvm/lib/IR/
H A DInstruction.cpp76 /// insertBefore - Insert an unlinked instructions into a basic block
78 void Instruction::insertBefore(Instruction *InsertPos) { function in class:Instruction
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dstreams.py1141 self.insertBefore(programName, index+1, text)
1144 def insertBefore(self, *args): member in class:TokenRewriteStream
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java93 public Node insertBefore(Node a, Node b) {throw new DTMException(NOT_SUPPORTED_ERR);} method in class:DOM2DTMdefaultNamespaceDeclarationNode
/external/javassist/src/main/javassist/
H A DCtBehavior.java518 insertBefore(fname + ".enter();", false);
531 * by <code>insertBefore()</code>, <code>insertAfter()</code>, etc.
539 * @see #insertBefore(String)
684 public void insertBefore(String src) throws CannotCompileException { method in class:CtBehavior
685 insertBefore(src, true);
688 private void insertBefore(String src, boolean rebuild) method in class:CtBehavior
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h163 virtual HRESULT STDMETHODCALLTYPE insertBefore(
387 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMDocument
390 /* [retval][out] */ IDOMNode** result) { return DOMNode::insertBefore(newChild, refChild, result); }
618 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMElement
621 /* [retval][out] */ IDOMNode** result) { return DOMNode::insertBefore(newChild, refChild, result); }
H A DDOMCoreClasses.cpp216 HRESULT STDMETHODCALLTYPE DOMNode::insertBefore( function in class:DOMNode
236 if (!m_node->insertBefore(newChildNode->node(), refChildNode ? refChildNode->node() : 0, ec))
H A DDOMHTMLClasses.h243 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLDocument
246 /* [retval][out] */ IDOMNode **result) { return DOMDocument::insertBefore(newChild, refChild, result); }
517 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLElement
520 /* [retval][out] */ IDOMNode **result) { return DOMElement::insertBefore(newChild, refChild, result); }
776 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLFormElement
779 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::insertBefore(newChild, refChild, result); }
1081 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLSelectElement
1084 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::insertBefore(newChild, refChild, result); }
1405 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLOptionElement
1408 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::insertBefore(newChil
1703 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLInputElement
2113 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLTextAreaElement
2438 virtual HRESULT STDMETHODCALLTYPE insertBefore( function in class:DOMHTMLIFrameElement
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DListHashSet.h116 pair<iterator, bool> insertBefore(const ValueType& beforeValue, const ValueType& newValue);
117 pair<iterator, bool> insertBefore(iterator it, const ValueType&);
572 pair<typename ListHashSet<T, inlineCapacity, U>::iterator, bool> ListHashSet<T, inlineCapacity, U>::insertBefore(iterator it, const ValueType& newValue) function in class:WTF::ListHashSet
583 pair<typename ListHashSet<T, inlineCapacity, U>::iterator, bool> ListHashSet<T, inlineCapacity, U>::insertBefore(const ValueType& beforeValue, const ValueType& newValue) function in class:WTF::ListHashSet
585 return insertBefore(find(beforeValue), newValue);
/external/webkit/Source/WebCore/dom/
H A DContainerNode.cpp103 bool ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) function in class:WebCore::ContainerNode
111 // insertBefore(node, 0) is equivalent to appendChild(node)
192 ASSERT(!newChild->parentNode()); // Use insertBefore if you need to handle reparenting (and want DOM mutation events).
H A DNode.cpp636 bool Node::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) function in class:WebCore::Node
642 return toContainerNode(this)->insertBefore(newChild, refChild, ec, shouldLazyAttach);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java960 public Node insertBefore(Node newChild, Node refChild) method in class:ElemLiteralResult.Attribute
H A DElemTemplateElement.java434 public Node insertBefore(Node newChild, Node refChild) throws DOMException method in class:ElemTemplateElement
488 "refChild was not found in insertBefore method!");
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java656 public Node insertBefore(Node newChild, Node refChild) throws DOMException method in class:UnImplNode
659 error(XMLErrorResources.ER_FUNCTION_NOT_SUPPORTED); //"insertBefore not supported!");
1852 parent.insertBefore(newNode, this);
/external/webkit/Source/WebCore/inspector/front-end/
H A DTextViewer.js438 this._container.insertBefore(prefixChunk.element, oldChunk.element);
444 this._container.insertBefore(lineChunk.element, oldChunk.element);
450 this._container.insertBefore(suffixChunk.element, oldChunk.element);
516 var insertBefore = insertionIndexForObjectInListSortedByFunction(lineNumber, this._textChunks, compareLineNumbers); variable
517 return insertBefore - 1;
531 var insertBefore = insertionIndexForObjectInListSortedByFunction(visibleFrom, this._textChunks, compareOffsetTops); variable
532 return insertBefore - 1;
561 var insertBefore = insertionIndexForObjectInListSortedByFunction(visibleFrom, lineNumbers, compareLineRowOffsetTops); variable
562 return lineNumbers[insertBefore - 1];
774 parentElement.insertBefore(lineRo
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java491 public final Node insertBefore(Node newChild, Node refChild) method in class:DTMNodeProxy
2093 parent.insertBefore(newNode, this);
/external/quake/quake/src/WinQuake/
H A Dgl_draw.cpp161 void insertBefore(entry* e){ function in struct:textureStore::entry
211 e->insertBefore(mFirst);
/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.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 4274 milliseconds

12