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

1 2

  /external/opencv3/samples/winrt/ImageManipulations/MediaExtensions/Common/
LinkList.h 112 virtual HRESULT InsertAfter(T item, Node *pBefore)
205 return InsertAfter(item, m_anchor.prev);
211 return InsertAfter(item, &m_anchor);
221 return InsertAfter(item, pos.pNode->prev);
447 HRESULT InsertAfter(Ptr item, Node *pBefore)
460 HRESULT hr = List<Ptr>::InsertAfter(item, pBefore);
  /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/pdfium/core/src/fxcrt/
fx_basic_list.cpp 39 FX_POSITION CFX_PtrList::InsertAfter(FX_POSITION position, void* newElement) {
  /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 672 void HInstruction::InsertAfter(HInstruction* previous) {
681 InsertAfter(block->end()->FirstSuccessor()->first());
    [all...]
hydrogen.cc 328 instr->InsertAfter(last_);
828 constant->InsertAfter(entry_block()->first());
840 constant->InsertAfter(entry_block()->first());
874 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 595 void MemoryChunk::InsertAfter(MemoryChunk* other) {
    [all...]
spaces-inl.h 237 new_page->InsertAfter(new_owner->anchor()->prev_page());
spaces.h 775 void InsertAfter(MemoryChunk* other);
    [all...]
  /external/v8/test/cctest/heap/
test-spaces.cc 318 first_page->InsertAfter(faked_space.anchor()->prev_page());
333 other->InsertAfter(first_page);
  /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/opencv3/modules/videoio/src/
cap_msmf.hpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp     [all...]
  /external/pdfium/core/include/fxcrt/
fx_basic.h 827 FX_POSITION InsertAfter(FX_POSITION pos, void* newElement);
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page.cpp 708 return m_ObjectList.InsertAfter(posInsertAfter, pNewObject);
  /external/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp 239 bool InsertAfter = true) {
241 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]
RewriteModernObjC.cpp 290 bool InsertAfter = true) {
292 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
    [all...]

Completed in 3425 milliseconds

1 2