/external/clang/include/clang/Rewrite/Core/ |
H A D | RewriteBuffer.h | 66 bool InsertAfter = true); 72 /// method is the same as InsertText with "InsertAfter == false".
|
H A D | Rewriter.h | 95 bool InsertAfter = true, bool indentNewLines = false);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
H A D | TokenRewriteStream.cs | 237 public virtual void InsertAfter(IToken t, object text) { method in class:Antlr.Runtime.TokenRewriteStream 238 InsertAfter(DEFAULT_PROGRAM_NAME, t, text); 241 public virtual void InsertAfter(int index, object text) { method in class:Antlr.Runtime.TokenRewriteStream 242 InsertAfter(DEFAULT_PROGRAM_NAME, index, text); 245 public virtual void InsertAfter(string programName, IToken t, object text) { method in class:Antlr.Runtime.TokenRewriteStream 246 InsertAfter(programName, t.TokenIndex, text); 249 public virtual void InsertAfter(string programName, int index, object text) { method in class:Antlr.Runtime.TokenRewriteStream
|
/external/libchrome/base/containers/ |
H A D | linked_list.h | 25 // LinkNode::InsertBefore, or LinkNode::InsertAfter: 100 void InsertAfter(LinkNode<T>* e) { function in class:base::LinkNode
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
H A D | TokenRewriteStream.cs | 268 public virtual void InsertAfter( IToken t, object text ) method in class:Antlr.Runtime.TokenRewriteStream 270 InsertAfter( DEFAULT_PROGRAM_NAME, t, text ); 273 public virtual void InsertAfter( int index, object text ) method in class:Antlr.Runtime.TokenRewriteStream 275 InsertAfter( DEFAULT_PROGRAM_NAME, index, text ); 278 public virtual void InsertAfter( string programName, IToken t, object text ) method in class:Antlr.Runtime.TokenRewriteStream 280 InsertAfter( programName, t.TokenIndex, text ); 283 public virtual void InsertAfter( string programName, int index, object text ) method in class:Antlr.Runtime.TokenRewriteStream
|
/external/clang/lib/Rewrite/ |
H A D | Rewriter.cpp | 93 bool InsertAfter) { 98 unsigned RealOffset = getMappedOffset(OrigOffset, InsertAfter); 239 bool InsertAfter, bool indentNewLines) { 275 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter); 286 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true); 389 RB.InsertText(offs, indent, /*InsertAfter=*/false); 92 InsertText(unsigned OrigOffset, StringRef Str, bool InsertAfter) argument 238 InsertText(SourceLocation Loc, StringRef Str, bool InsertAfter, bool indentNewLines) argument
|
/external/llvm/lib/CodeGen/ |
H A D | EarlyIfConversion.cpp | 128 SmallPtrSet<MachineInstr*, 8> InsertAfter; member in class:__anon12662::SSAIfConv 180 /// the defining instructions are added to InsertAfter. 248 if (InsertAfter.insert(DefMI).second) 264 /// 2. After any instructions in InsertAfter. 281 if (InsertAfter.count(&*I)) { 431 InsertAfter.clear();
|
/external/v8/src/crankshaft/ |
H A D | hydrogen-escape-analysis.cc | 68 state->InsertAfter(previous); 152 new_instr->InsertAfter(load);
|
H A D | hydrogen-bce.cc | 192 new_check->InsertAfter(first_check);
|
H A D | hydrogen-instructions.cc | 705 void HInstruction::InsertAfter(HInstruction* previous) { function in class:v8::internal::HInstruction 714 InsertAfter(block->end()->FirstSuccessor()->first()); 3235 first_alloc->InsertAfter(dominator_allocate); 3716 integer_input->InsertAfter(operand);
|
H A D | hydrogen.cc | 330 instr->InsertAfter(last_); 830 constant->InsertAfter(entry_block()->first()); 842 constant->InsertAfter(entry_block()->first()); 876 constant->InsertAfter(entry_block()->first()); \ 3968 // block in HInstruction::InsertAfter) seals the start block from 7421 push_argument->InsertAfter(insert_after); 7427 arguments_elements->InsertAfter(insert_after);
|
H A D | hydrogen-instructions.h | 966 void InsertAfter(HInstruction* previous); 969 instr->InsertAfter(this);
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
H A D | Antlr.Runtime.pas | 1250 /// Input.InsertAfter(t, 'text to put after t'); 1251 /// Input.InsertAfter(u, 'text after u'); 1262 /// Tokens.InsertAfter('pass1', t, 'text to put after t'); 1263 /// Tokens.InsertAfter('pass2', u, 'text after u'); 1287 procedure InsertAfter(const T: IToken; const Text: IANTLRInterface); overload; 1288 procedure InsertAfter(const Index: Integer; const Text: IANTLRInterface); overload; 1289 procedure InsertAfter(const ProgramName: String; const T: IToken; 1291 procedure InsertAfter(const ProgramName: String; const Index: Integer; 1293 procedure InsertAfter(const T: IToken; const Text: String); overload; 1294 procedure InsertAfter(cons [all...] |
/external/v8/src/heap/ |
H A D | spaces.cc | 617 void MemoryChunk::InsertAfter(MemoryChunk* other) { function in class:v8::internal::MemoryChunk 1260 p->InsertAfter(anchor_.prev_page()); 1297 p->InsertAfter(anchor_.prev_page()); 1351 p->InsertAfter(anchor_.prev_page()); 1623 current_page->InsertAfter(anchor()); 1935 new_page->InsertAfter(current); 1992 new_page->InsertAfter(last_page); 2081 page->InsertAfter(anchor());
|
H A D | spaces-inl.h | 219 new_page->InsertAfter(old_space->anchor()->prev_page());
|
H A D | spaces.h | 577 void InsertAfter(MemoryChunk* other);
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 3823 Instruction *InsertAfter = cast<Instruction>(BuildVectorSlice.back()); local 3826 IRBuilder<NoFolder> Builder(InsertAfter->getParent(), 3827 ++BasicBlock::iterator(InsertAfter)); 3835 InsertAfter = I;
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 240 bool InsertAfter = true) { 242 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
|
H A D | RewriteModernObjC.cpp | 289 bool InsertAfter = true) { 291 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
|