/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t046rewrite.g | 13 self.input.insertAfter($method.stop, "\n}\n") 32 self.input.insertAfter($lcurly, "\nint "+it+";")
|
D | t048rewrite.py | 35 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/JavaScript/tests/functional/ |
D | t046rewrite.g | 13 this.input.insertAfter($method.stop, "\n}\n") 33 this.input.insertAfter($lcurly, "\nint "+it+";")
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 211 public void insertAfter(Token t, Object text) { in insertAfter() method in TokenRewriteStream 212 insertAfter(DEFAULT_PROGRAM_NAME, t, text); in insertAfter() 215 public void insertAfter(int index, Object text) { in insertAfter() method in TokenRewriteStream 216 insertAfter(DEFAULT_PROGRAM_NAME, index, text); in insertAfter() 219 public void insertAfter(String programName, Token t, Object text) { in insertAfter() method in TokenRewriteStream 220 insertAfter(programName,t.getTokenIndex(), text); in insertAfter() 223 public void insertAfter(String programName, int index, Object text) { in insertAfter() method in TokenRewriteStream
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_bb.cpp | 140 insertAfter(exit, inst); // after last phi in insertHead() 162 insertAfter(exit, inst); in insertTail() 171 insertAfter(exit, inst); in insertTail() 212 BasicBlock::insertAfter(Instruction *p, Instruction *q) in insertAfter() function in nv50_ir::BasicBlock
|
D | nv50_ir_ra.cpp | 421 bb->insertAfter(cal, mov); in visit() 1451 defi->bb->insertAfter(defi, st); in spill() 1742 i->bb->insertAfter(i, hzd); in addHazard() 1774 insn->bb->insertAfter(insn, split); in condenseDefs() 1959 cst->bb->insertAfter(cst, mov); in insertConstraintMoves()
|
D | nv50_ir_build_util.h | 240 bb->insertAfter(pos, i); in insert()
|
D | nv50_ir_peephole.cpp | 1159 logop->bb->insertAfter(logop, set1); in handleLOGOP() 1160 logop->bb->insertAfter(logop, set0); in handleLOGOP() 1207 cvt->bb->insertAfter(cvt, bset); in handleCVT() 2155 bb->insertAfter(entry, ik); in visit() 2347 ld1->bb->insertAfter(ld1, ld2); in checkSplitLoad()
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestTokenRewriteStream.java | 67 tokens.insertAfter(2, "x"); in testInsertAfterLastIndex() 84 tokens.insertAfter(1, "x"); in test2InsertBeforeAfterMiddleIndex() 214 tokens.insertAfter(17, "// comment"); in testToStringStartStop2() 398 tokens.insertAfter(2, "y"); in testReplaceThenInsertAfterLastIndex() 456 tokens.insertAfter(4, "y"); in testReplaceRangeThenInsertAfterRightEdge()
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | TokenRewriteStream.as | 63 * 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):voi… method in org.antlr.runtime.TokenRewriteStream 254 // So, if they did an insertAfter(lastValidIndex, "foo"), include
|
/external/icu/icu4c/source/i18n/ |
D | plurrule.cpp | 564 RuleChain *insertAfter = prules->mRules; in parse() local 565 while (insertAfter->fNext!=NULL && in parse() 566 insertAfter->fNext->fKeyword.compare(PLURAL_KEYWORD_OTHER, 5) != 0 ){ in parse() 567 insertAfter=insertAfter->fNext; in parse() 569 newChain->fNext = insertAfter->fNext; in parse() 570 insertAfter->fNext = newChain; in parse()
|
/external/javassist/src/main/javassist/ |
D | CtBehavior.java | 520 insertAfter(src, true); in useCflow() 740 public void insertAfter(String src) in insertAfter() method in CtBehavior 743 insertAfter(src, false); in insertAfter() 758 public void insertAfter(String src, boolean asFinally) in insertAfter() method in CtBehavior
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopPreIncPrep.cpp | 357 NewPtr->insertAfter(cast<Instruction>(PtrInc)); in runOnLoop() 369 ReplNewPtr->insertAfter(RealNewPtr); in runOnLoop()
|
/external/llvm/lib/Target/ARM/ |
D | ARMLoadStoreOptimizer.cpp | 115 unsigned insertAfter, 731 unsigned insertAfter, int Offset, in MergeOpsUpdate() argument 740 const unsigned insertPos = memOps[insertAfter].Position; in MergeOpsUpdate() 783 MachineBasicBlock::iterator Loc = memOps[insertAfter].MBBI; in MergeOpsUpdate() 839 unsigned insertAfter = SIndex; in MergeLDR_STR() local 890 MergeOpsUpdate(MBB, MemOps, SIndex, i, insertAfter, SOffset, Base, in MergeLDR_STR() 897 if (MemOps[i].Position > MemOps[insertAfter].Position) { in MergeLDR_STR() 898 insertAfter = i; in MergeLDR_STR() 904 MergeOpsUpdate(MBB, MemOps, SIndex, MemOps.size(), insertAfter, SOffset, in MergeLDR_STR()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 77 void Instruction::insertAfter(Instruction *InsertPos) { in insertAfter() function in Instruction 78 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this); in insertAfter()
|
/external/llvm/lib/Transforms/Scalar/ |
D | RewriteStatepointsForGC.cpp | 1345 store->insertAfter(relocatedValue); in insertRelocationStores() 1504 store->insertAfter(inst); in relocationViaAlloca() 1510 store->insertAfter(cast<Instruction>(alloca)); in relocationViaAlloca() 1678 Store->insertAfter(I); in splitVectorValues() 1680 Store->insertAfter(Alloca); in splitVectorValues() 1684 (new StoreInst(Replacement, Alloca))->insertAfter(Replacement); in splitVectorValues() 1688 (new StoreInst(Replacement, Alloca))->insertAfter(Replacement); in splitVectorValues()
|
D | ConstantHoisting.cpp | 503 ClonedCastInst->insertAfter(CastInst); in emitBaseConstants()
|
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/ |
D | LogTransformer.java | 310 method.insertAfter(after); in doMethod()
|
/external/llvm/lib/CodeGen/ |
D | SjLjEHPrepare.cpp | 480 StackAddr->insertAfter(I); in setupEntryBlockAndCallSites() 482 StoreStackAddr->insertAfter(StackAddr); in setupEntryBlockAndCallSites()
|
D | GCRootLowering.cpp | 176 SI->insertAfter(*I); in InsertRootInitializers()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineBasicBlock.h | 504 iterator insertAfter(iterator I, MachineInstr *MI) { 509 return Insts.insertAfter(I.getInstrIterator(), MI);
|
/external/llvm/include/llvm/IR/ |
D | Instruction.h | 99 void insertAfter(Instruction *InsertPos);
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | TokenRewriteStream.js | 243 insertAfter: function() { method
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/lib/tree_construction/ |
D | open_element_stack.js | 148 OpenElementStack.prototype.insertAfter = function (referenceElement, newElement) { method in OpenElementStack
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/fixtures/ |
D | open_element_stack_test.js | 69 stack.insertAfter(element1, element3); 73 stack.insertAfter(element2, element1);
|