Searched refs:InsertAfter (Results 1 - 19 of 19) sorted by relevance

/external/clang/include/clang/Rewrite/Core/
H A DRewriteBuffer.h66 bool InsertAfter = true);
72 /// method is the same as InsertText with "InsertAfter == false".
H A DRewriter.h95 bool InsertAfter = true, bool indentNewLines = false);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs237 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 Dlinked_list.h25 // 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 DTokenRewriteStream.cs268 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 DRewriter.cpp93 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 DEarlyIfConversion.cpp128 SmallPtrSet<MachineInstr*, 8> InsertAfter; member in class:__anon12540::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 Dhydrogen-escape-analysis.cc67 state->InsertAfter(previous);
152 new_instr->InsertAfter(load);
H A Dhydrogen-bce.cc191 new_check->InsertAfter(first_check);
H A Dhydrogen-instructions.cc704 void HInstruction::InsertAfter(HInstruction* previous) { function in class:v8::internal::HInstruction
713 InsertAfter(block->end()->FirstSuccessor()->first());
3240 first_alloc->InsertAfter(dominator_allocate);
3721 integer_input->InsertAfter(operand);
H A Dhydrogen.cc331 instr->InsertAfter(last_);
831 constant->InsertAfter(entry_block()->first());
843 constant->InsertAfter(entry_block()->first());
877 constant->InsertAfter(entry_block()->first()); \
4013 // block in HInstruction::InsertAfter) seals the start block from
7395 push_argument->InsertAfter(insert_after);
7401 arguments_elements->InsertAfter(insert_after);
H A Dhydrogen-instructions.h966 void InsertAfter(HInstruction* previous);
969 instr->InsertAfter(this);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1250 /// 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 Dspaces.cc601 void MemoryChunk::InsertAfter(MemoryChunk* other) { function in class:v8::internal::MemoryChunk
1228 p->InsertAfter(anchor_.prev_page());
1265 p->InsertAfter(anchor_.prev_page());
1338 p->InsertAfter(anchor_.prev_page());
1612 current_page->InsertAfter(anchor());
1924 new_page->InsertAfter(current);
1981 new_page->InsertAfter(last_page);
2070 page->InsertAfter(anchor());
H A Dspaces-inl.h214 new_page->InsertAfter(old_space->anchor()->prev_page());
H A Dspaces.h574 void InsertAfter(MemoryChunk* other);
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3823 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 DRewriteObjC.cpp240 bool InsertAfter = true) {
242 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
H A DRewriteModernObjC.cpp289 bool InsertAfter = true) {
291 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||

Completed in 778 milliseconds