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

  /external/chromium_org/base/containers/
linked_list.h 25 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
100 void InsertAfter(LinkNode<T>* e) {
linked_list_unittest.cc 218 TEST(LinkedList, InsertAfter) {
236 n3.InsertAfter(&n2);
245 n4.InsertAfter(&n1);
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 68 bool InsertAfter = true);
74 /// method is the same as InsertText with "InsertAfter == false".
191 bool InsertAfter = true, bool indentNewLines = false);
  /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/Core/
Rewriter.cpp 97 bool InsertAfter) {
102 unsigned RealOffset = getMappedOffset(OrigOffset, InsertAfter);
243 bool InsertAfter, bool indentNewLines) {
279 getEditBuffer(FID).InsertText(StartOffs, Str, InsertAfter);
290 getEditBuffer(FID).InsertText(StartOffs, Str, /*InsertAfter*/true);
422 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))
264 /// 2. After any instructions in InsertAfter.
281 if (InsertAfter.count(I)) {
431 InsertAfter.clear();
  /external/pdfium/core/src/fxcrt/
fx_basic_list.cpp 43 FX_POSITION CFX_PtrList::InsertAfter(FX_POSITION position, void* newElement)
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 67 state->InsertAfter(previous);
151 new_instr->InsertAfter(load);
hydrogen-bce.cc 190 new_check->InsertAfter(first_check);
hydrogen-instructions.cc 684 void HInstruction::InsertAfter(HInstruction* previous) {
693 InsertAfter(block->end()->FirstSuccessor()->first());
    [all...]
hydrogen.cc 154 instr->InsertAfter(last_);
657 constant->InsertAfter(entry_block()->first());
669 constant->InsertAfter(entry_block()->first());
703 constant->InsertAfter(entry_block()->first()); \
    [all...]
hydrogen-instructions.h     [all...]
  /external/chromium_org/v8/test/cctest/
test-spaces.cc 310 first_page->InsertAfter(faked_space.anchor()->prev_page());
324 other->InsertAfter(first_page);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/chromium_org/sync/internal_api/public/base/
unique_position_unittest.cc 288 TEST_P(PositionInsertTest, InsertAfter) {
  /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/chromium_org/v8/src/heap/
spaces.cc 528 void MemoryChunk::InsertAfter(MemoryChunk* other) {
980 p->InsertAfter(anchor_.prev_page());
    [all...]
spaces.h 600 void InsertAfter(MemoryChunk* other);
    [all...]
mark-compact.cc     [all...]
  /external/pdfium/core/include/fxcrt/
fx_basic.h 1159 FX_POSITION InsertAfter(FX_POSITION pos, void* newElement);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 731 return m_ObjectList.InsertAfter(posInsertAfter, pNewObject);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 299 bool InsertAfter = true) {
301 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]
RewriteObjC.cpp 248 bool InsertAfter = true) {
250 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]

Completed in 1062 milliseconds