Searched refs:InsertAfter (Results 1 - 24 of 24) sorted by last modified time

/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h1159 FX_POSITION InsertAfter(FX_POSITION pos, void* newElement);
/external/pdfium/core/src/fpdfapi/fpdf_page/
H A Dfpdf_page.cpp731 return m_ObjectList.InsertAfter(posInsertAfter, pNewObject);
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_list.cpp43 FX_POSITION CFX_PtrList::InsertAfter(FX_POSITION position, void* newElement) function in class:CFX_PtrList
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2479 Instruction *InsertAfter = cast<Instruction>(BuildVectorSlice.back()); local
2483 ++BasicBlock::iterator(InsertAfter));
2490 InsertAfter = IE;
/external/llvm/lib/CodeGen/
H A DEarlyIfConversion.cpp128 SmallPtrSet<MachineInstr*, 8> InsertAfter; member in class:__anon25739::SSAIfConv
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/clang/include/clang/Rewrite/Core/
H A DRewriter.h68 bool InsertAfter = true);
74 /// method is the same as InsertText with "InsertAfter == false".
191 bool InsertAfter = true, bool indentNewLines = false);
/external/clang/lib/Rewrite/Core/
H A DRewriter.cpp97 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);
96 InsertText(unsigned OrigOffset, StringRef Str, bool InsertAfter) argument
242 InsertText(SourceLocation Loc, StringRef Str, bool InsertAfter, bool indentNewLines) argument
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp299 bool InsertAfter = true) {
301 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
H A DRewriteObjC.cpp248 bool InsertAfter = true) {
250 if (!Rewrite.InsertText(Loc, Str, InsertAfter) ||
/external/chromium_org/v8/test/cctest/
H A Dtest-spaces.cc310 first_page->InsertAfter(faked_space.anchor()->prev_page());
324 other->InsertAfter(first_page);
/external/chromium_org/v8/src/heap/
H A Dmark-compact.cc3701 p->InsertAfter(space->LastPage());
H A Dspaces.cc528 void MemoryChunk::InsertAfter(MemoryChunk* other) { function in class:v8::internal::MemoryChunk
980 p->InsertAfter(anchor_.prev_page());
1115 page->InsertAfter(anchor_.prev_page());
1500 new_page->InsertAfter(current);
1561 new_page->InsertAfter(last_page);
H A Dspaces.h600 void InsertAfter(MemoryChunk* other);
/external/chromium_org/v8/src/
H A Dhydrogen-bce.cc190 new_check->InsertAfter(first_check);
H A Dhydrogen-escape-analysis.cc67 state->InsertAfter(previous);
151 new_instr->InsertAfter(load);
H A Dhydrogen-instructions.cc684 void HInstruction::InsertAfter(HInstruction* previous) { function in class:v8::internal::HInstruction
693 InsertAfter(block->end()->FirstSuccessor()->first());
3956 store_map->InsertAfter(filler_map);
3971 store_size->InsertAfter(filler_size);
3985 clear_next_map->InsertAfter(this);
4456 integer_input->InsertAfter(operand);
H A Dhydrogen-instructions.h1163 void InsertAfter(HInstruction* previous);
1166 instr->InsertAfter(this);
H A Dhydrogen.cc154 instr->InsertAfter(last_);
657 constant->InsertAfter(entry_block()->first());
669 constant->InsertAfter(entry_block()->first());
703 constant->InsertAfter(entry_block()->first()); \
4278 // block in HInstruction::InsertAfter) seals the start block from
7229 push_argument->InsertAfter(insert_after);
7235 arguments_elements->InsertAfter(insert_after);
/external/chromium_org/sync/internal_api/public/base/
H A Dunique_position_unittest.cc288 TEST_P(PositionInsertTest, InsertAfter) {
/external/chromium_org/base/containers/
H A Dlinked_list.h25 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
100 void InsertAfter(LinkNode<T>* e) { function in class:base::LinkNode
H A Dlinked_list_unittest.cc218 TEST(LinkedList, InsertAfter) {
236 n3.InsertAfter(&n2);
245 n4.InsertAfter(&n1);
/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/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 537 milliseconds