Searched refs:insertAfter (Results 1 - 25 of 72) sorted by relevance

123

/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerAlloca.cpp76 NewASCToLocal->insertAfter(allocaInst);
77 NewASCToGeneric->insertAfter(NewASCToLocal);
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt048rewrite.py35 tokens.insertAfter(2, "x")
45 tokens.insertAfter(1, "x")
178 tokens.insertAfter(2, "y")
213 tokens.insertAfter(4, "y")
479 tokens.insertAfter(17, "// comment")
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java63 * input.insertAfter(t, "text to put after t");}
64 * input.insertAfter(u, "text after u");}
75 * tokens.insertAfter("pass1", t, "text to put after t");}
76 * tokens.insertAfter("pass2", u, "text after u");}
211 public void insertAfter(Token t, Object text) { method in class:TokenRewriteStream
212 insertAfter(DEFAULT_PROGRAM_NAME, t, text);
215 public void insertAfter(int index, Object text) { method in class:TokenRewriteStream
216 insertAfter(DEFAULT_PROGRAM_NAME, index, text);
219 public void insertAfter(String programName, Token t, Object text) { method in class:TokenRewriteStream
220 insertAfter(programNam
223 public void insertAfter(String programName, int index, Object text) { method in class:TokenRewriteStream
[all...]
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
H A Djquery.ba-hashchange.min.js9 (function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.docu (…)
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp140 insertAfter(exit, inst); // after last phi
162 insertAfter(exit, inst);
171 insertAfter(exit, inst);
212 BasicBlock::insertAfter(Instruction *p, Instruction *q) function in class:nv50_ir::BasicBlock
H A Dnv50_ir_build_util.h240 bb->insertAfter(pos, i);
H A Dnv50_ir_peephole.cpp1159 logop->bb->insertAfter(logop, set1);
1160 logop->bb->insertAfter(logop, set0);
1207 cvt->bb->insertAfter(cvt, bset);
2155 bb->insertAfter(entry, ik);
2347 ld1->bb->insertAfter(ld1, ld2);
H A Dnv50_ir_ra.cpp421 bb->insertAfter(cal, mov);
1451 defi->bb->insertAfter(defi, st);
1742 i->bb->insertAfter(i, hzd);
1774 insn->bb->insertAfter(insn, split);
1959 cst->bb->insertAfter(cst, mov);
/external/icu/icu4c/source/i18n/
H A Dplurrule.cpp577 RuleChain *insertAfter = prules->mRules; local
578 while (insertAfter->fNext!=NULL &&
579 insertAfter->fNext->fKeyword.compare(PLURAL_KEYWORD_OTHER, 5) != 0 ){
580 insertAfter=insertAfter->fNext;
582 newChain->fNext = insertAfter->fNext;
583 insertAfter->fNext = newChain;
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestTokenRewriteStream.java67 tokens.insertAfter(2, "x");
84 tokens.insertAfter(1, "x");
214 tokens.insertAfter(17, "// comment");
398 tokens.insertAfter(2, "y");
456 tokens.insertAfter(4, "y");
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as63 * input.insertAfter(t, "text to put after t");}
64 * input.insertAfter(u, "text after u");}
75 * tokens.insertAfter("pass1", t, "text to put after t");}
76 * tokens.insertAfter("pass2", u, "text after u");}
118 insertAfter(t.tokenIndex, text, programName);
121 public function insertAfter(index:int, text:Object, programName:String = DEFAULT_PROGRAM_NAME):void { function
254 // So, if they did an insertAfter(lastValidIndex, "foo"), include
/external/llvm/lib/IR/
H A DInstruction.cpp85 /// insertAfter - Insert an unlinked instructions into a basic block
87 void Instruction::insertAfter(Instruction *InsertPos) { function in class:Instruction
88 InsertPos->getParent()->getInstList().insertAfter(InsertPos->getIterator(),
/external/llvm/lib/Target/PowerPC/
H A DPPCLoopPreIncPrep.cpp404 NewPtr->insertAfter(cast<Instruction>(PtrInc));
416 ReplNewPtr->insertAfter(RealNewPtr);
/external/javassist/src/main/javassist/
H A DCtBehavior.java520 insertAfter(src, true);
531 * by <code>insertBefore()</code>, <code>insertAfter()</code>, etc.
534 * <code>insertAfter()</code> is true, the declared local variable
535 * is not visible from the code inserted by <code>insertAfter()</code>.
540 * @see #insertAfter(String)
740 public void insertAfter(String src) method in class:CtBehavior
743 insertAfter(src, false);
758 public void insertAfter(String src, boolean asFinally) method in class:CtBehavior
926 public void insertAfter(String src) throws CannotCompileException {
/external/llvm/include/llvm/IR/
H A DInstruction.h93 void insertAfter(Instruction *InsertPos);
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
H A DLogTransformer.java310 method.insertAfter(after);
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h598 iterator insertAfter(iterator I, MachineInstr *MI) { function in class:llvm::MachineBasicBlock
603 return Insts.insertAfter(I.getInstrIterator(), MI);
H A DSlotIndexes.h656 newItr = indexList.insertAfter(startEntry->getIterator(), endEntry);
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp478 StackAddr->insertAfter(&*I);
480 StoreStackAddr->insertAfter(StackAddr);
H A DGCRootLowering.cpp176 SI->insertAfter(*I);
H A DAtomicExpandPass.cpp193 TrailingFence->insertAfter(I);
/external/llvm/lib/Transforms/Scalar/
H A DRewriteStatepointsForGC.cpp1677 Store->insertAfter(cast<Instruction>(CastedRelocatedValue));
1702 Store->insertAfter(RematerializedValue);
1879 Store->insertAfter(Inst);
1883 Store->insertAfter(cast<Instruction>(Alloca));
2045 Store->insertAfter(I);
2047 Store->insertAfter(Alloca);
2051 (new StoreInst(Replacement, Alloca))->insertAfter(Replacement);
2055 (new StoreInst(Replacement, Alloca))->insertAfter(Replacement);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DTokenRewriteStream.js32 * input.insertAfter(t, "text to put after t");}
33 * input.insertAfter(u, "text after u");}
44 * tokens.insertAfter("pass1", t, "text to put after t");}
45 * tokens.insertAfter("pass2", u, "text after u");}
243 insertAfter: function() {
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
H A Dopen_element_stack.js148 OpenElementStack.prototype.insertAfter = function (referenceElement, newElement) {
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
H A Dopen_element_stack_test.js69 stack.insertAfter(element1, element3);
73 stack.insertAfter(element2, element1);

Completed in 482 milliseconds

123