Searched defs:InsertAfter (Results 1 - 9 of 9) sorted by relevance

/external/chromium/base/
H A Dlinked_list.h24 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
99 void InsertAfter(LinkNode<T>* e) { function in class:base::LinkNode
/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/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/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp127 SmallPtrSet<MachineInstr*, 8> InsertAfter; member in class:__anon8655::SSAIfConv
179 /// the defining instructions are added to InsertAfter.
247 if (InsertAfter.insert(DefMI))
263 /// 2. After any instructions in InsertAfter.
280 if (InsertAfter.count(I)) {
430 InsertAfter.clear();
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp91 bool InsertAfter) {
96 unsigned RealOffset = getMappedOffset(OrigOffset, InsertAfter);
237 bool InsertAfter, bool indentNewLines) {
273 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
284 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
413 RB.InsertText(offs, indent, /*InsertAfter=*/false);
90 InsertText(unsigned OrigOffset, StringRef Str, bool InsertAfter) argument
236 InsertText(SourceLocation Loc, StringRef Str, bool InsertAfter, bool indentNewLines) argument
/external/chromium/sdch/open-vcdiff/src/gtest/src/
H A Dgtest-internal-inl.h292 ListNode<E>* InsertAfter(ListNode<E>* node, const E& element) { function in class:testing::internal::List
/external/v8/src/
H A Dhydrogen-instructions.cc574 void HInstruction::InsertAfter(HInstruction* previous) { function in class:v8::internal::HInstruction
583 InsertAfter(block->end()->FirstSuccessor()->first());
H A Dspaces.cc470 void MemoryChunk::InsertAfter(MemoryChunk* other) { function in class:v8::internal::MemoryChunk
864 p->InsertAfter(anchor_.prev_page());
1327 new_page->InsertAfter(page);
1378 new_page->InsertAfter(last_page);
/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...]

Completed in 4641 milliseconds