HomeSort by relevance Sort by last modified time
    Searched refs:InsertAfter (Results 1 - 25 of 26) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/container/list/
example_test.go 18 l.InsertAfter(2, e1)
list_test.go 114 e2 = l.InsertAfter(2, e1) // insert after front
117 e2 = l.InsertAfter(2, e4) // insert after middle
120 e2 = l.InsertAfter(2, e3) // insert after back
318 // Test that a list l is not modified when calling InsertAfter with a mark that is not an element of l.
324 l.InsertAfter(1, new(Element))
list.go 152 // InsertAfter inserts a new element e with value v immediately after mark and returns e.
154 func (l *List) InsertAfter(v interface{}, mark *Element) *Element {
  /prebuilts/go/linux-x86/src/container/list/
example_test.go 18 l.InsertAfter(2, e1)
list_test.go 114 e2 = l.InsertAfter(2, e1) // insert after front
117 e2 = l.InsertAfter(2, e4) // insert after middle
120 e2 = l.InsertAfter(2, e3) // insert after back
318 // Test that a list l is not modified when calling InsertAfter with a mark that is not an element of l.
324 l.InsertAfter(1, new(Element))
list.go 152 // InsertAfter inserts a new element e with value v immediately after mark and returns e.
154 func (l *List) InsertAfter(v interface{}, mark *Element) *Element {
  /external/clang/include/clang/Rewrite/Core/
RewriteBuffer.h 66 bool InsertAfter = true);
72 /// method is the same as InsertText with "InsertAfter == false".
Rewriter.h 95 bool InsertAfter = true, bool indentNewLines = false);
  /external/libchrome/base/containers/
linked_list.h 25 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
100 void InsertAfter(LinkNode<T>* e) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 73 * input.insertAfter(t, "text to put after t");}
74 * input.insertAfter(u, "text after u");}
85 * tokens.insertAfter("pass1", t, "text to put after t");}
86 * tokens.insertAfter("pass2", u, "text after u");}
237 public virtual void InsertAfter(IToken t, object text) {
238 InsertAfter(DEFAULT_PROGRAM_NAME, t, text);
241 public virtual void InsertAfter(int index, object text) {
242 InsertAfter(DEFAULT_PROGRAM_NAME, index, text);
245 public virtual void InsertAfter(string programName, IToken t, object text) {
246 InsertAfter(programName, t.TokenIndex, text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 76 * input.insertAfter(t, "text to put after t");}
77 * input.insertAfter(u, "text after u");}
88 * tokens.insertAfter("pass1", t, "text to put after t");}
89 * tokens.insertAfter("pass2", u, "text after u");}
268 public virtual void InsertAfter( IToken t, object text )
270 InsertAfter( DEFAULT_PROGRAM_NAME, t, text );
273 public virtual void InsertAfter( int index, object text )
275 InsertAfter( DEFAULT_PROGRAM_NAME, index, text );
278 public virtual void InsertAfter( string programName, IToken t, object text )
280 InsertAfter( programName, t.TokenIndex, text )
    [all...]
  /external/clang/lib/Rewrite/
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);
  /external/llvm/lib/CodeGen/
EarlyIfConversion.cpp 128 SmallPtrSet<MachineInstr*, 8> InsertAfter;
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/
hydrogen-escape-analysis.cc 67 state->InsertAfter(previous);
152 new_instr->InsertAfter(load);
hydrogen-bce.cc 191 new_check->InsertAfter(first_check);
hydrogen-instructions.cc 704 void HInstruction::InsertAfter(HInstruction* previous) {
713 InsertAfter(block->end()->FirstSuccessor()->first());
    [all...]
hydrogen.cc 331 instr->InsertAfter(last_);
831 constant->InsertAfter(entry_block()->first());
843 constant->InsertAfter(entry_block()->first());
877 constant->InsertAfter(entry_block()->first()); \
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/v8/src/heap/
spaces.cc 601 void MemoryChunk::InsertAfter(MemoryChunk* other) {
    [all...]
spaces-inl.h 214 new_page->InsertAfter(old_space->anchor()->prev_page());
spaces.h 574 void InsertAfter(MemoryChunk* other);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxtmpl.h 349 DXLISTPOS InsertAfter(DXLISTPOS position,ARG_TYPE newElement);
577 DXLISTPOS CDXList<TYPE,ARG_TYPE>::InsertAfter(DXLISTPOS position,ARG_TYPE newElement) {
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 240 bool InsertAfter = true) {
242 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]
RewriteModernObjC.cpp 289 bool InsertAfter = true) {
291 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]

Completed in 1709 milliseconds

1 2