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

123

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.h68 void insertAfter(CounterNode* newChild, CounterNode* beforeChild, const AtomicString& identifier);
H A DRenderCounter.cpp313 newParent->insertAfter(newNode.get(), newPreviousSibling.get(), identifier);
342 newNode->insertAfter(currentCounter, newNode->lastChild(), identifier);
534 newParent->insertAfter(node.get(), newPreviousSibling.get(), it->key);
H A DCounterNode.cpp237 void CounterNode::insertAfter(CounterNode* newChild, CounterNode* refChild, const AtomicString& identifier) function in class:blink::CounterNode
/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_org/third_party/mesa/src/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/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);
/external/chromium_org/third_party/icu/source/i18n/
H A Dplurrule.cpp501 RuleChain *insertAfter = prules->mRules; local
502 while (insertAfter->fNext!=NULL &&
503 insertAfter->fNext->fKeyword.compare(PLURAL_KEYWORD_OTHER, 5) != 0 ){
504 insertAfter=insertAfter->fNext;
506 newChain->fNext = insertAfter->fNext;
507 insertAfter->fNext = newChain;
/external/icu/icu4c/source/i18n/
H A Dplurrule.cpp604 RuleChain *insertAfter = prules->mRules; local
605 while (insertAfter->fNext!=NULL &&
606 insertAfter->fNext->fKeyword.compare(PLURAL_KEYWORD_OTHER, 5) != 0 ){
607 insertAfter=insertAfter->fNext;
609 newChain->fNext = insertAfter->fNext;
610 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/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp258 NI->insertAfter(EI);
489 StackAddr->insertAfter(I);
491 StoreStackAddr->insertAfter(StackAddr);
H A DGCStrategy.cpp194 SI->insertAfter(*I);
/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.cpp86 /// insertAfter - Insert an unlinked instructions into a basic block
88 void Instruction::insertAfter(Instruction *InsertPos) { function in class:Instruction
89 InsertPos->getParent()->getInstList().insertAfter(InsertPos, this);
/external/chromium_org/ui/android/java/src/org/chromium/ui/
H A DUiUtils.java123 public static int insertAfter(ViewGroup container, View newView, View existingView) { method in class:UiUtils
/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.h72 /// insertAfter - Insert an unlinked instructions into a basic block
74 void insertAfter(Instruction *InsertPos);
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp114 unsigned insertAfter,
613 unsigned insertAfter, int Offset,
622 const unsigned insertPos = memOps[insertAfter].Position;
665 MachineBasicBlock::iterator Loc = memOps[insertAfter].MBBI;
716 unsigned insertAfter = SIndex; local
763 MergeOpsUpdate(MBB, MemOps, SIndex, i, insertAfter, SOffset,
770 if (MemOps[i].Position > MemOps[insertAfter].Position)
771 insertAfter = i;
775 MergeOpsUpdate(MBB, MemOps, SIndex, MemOps.size(), insertAfter, SOffset,
610 MergeOpsUpdate(MachineBasicBlock &MBB, MemOpQueue &memOps, unsigned memOpsBegin, unsigned memOpsEnd, unsigned insertAfter, int Offset, unsigned Base, bool BaseKill, int Opcode, ARMCC::CondCodes Pred, unsigned PredReg, unsigned Scratch, DebugLoc dl, SmallVectorImpl<MachineBasicBlock::iterator> &Merges) argument
/external/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h500 iterator insertAfter(iterator I, MachineInstr *MI) { function in class:llvm::MachineBasicBlock
503 return Insts.insertAfter(I.getInstrIterator(), MI);
/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_org/third_party/WebKit/Source/wtf/
H A DLinkedHashSet.h84 void insertAfter(LinkedHashSetNodeBase& other) function in class:WTF::LinkedHashSetNodeBase
645 m_anchor.insertAfter(*node);

Completed in 1025 milliseconds

123