/external/llvm/lib/IR/ |
D | Instructions.cpp | 182 Instruction *InsertBefore) in LandingPadInst() argument 183 : Instruction(RetTy, Instruction::LandingPad, nullptr, 0, InsertBefore) { in LandingPadInst() 212 Instruction *InsertBefore) { in Create() argument 214 InsertBefore); in Create() 303 Instruction *InsertBefore) in CallInst() argument 308 1, InsertBefore) { in CallInst() 371 static Instruction *createMalloc(Instruction *InsertBefore, in createMalloc() argument 376 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) && in createMalloc() 386 if (InsertBefore) in createMalloc() 388 "", InsertBefore); in createMalloc() [all …]
|
D | BasicBlock.cpp | 47 BasicBlock *InsertBefore) in BasicBlock() argument 53 if (InsertBefore) { in BasicBlock() 56 NewParent->getBasicBlockList().insert(InsertBefore, this); in BasicBlock() 307 BasicBlock *InsertBefore = std::next(Function::iterator(this)) in splitBasicBlock() local 310 getParent(), InsertBefore); in splitBasicBlock()
|
D | Instruction.cpp | 25 Instruction *InsertBefore) in Instruction() argument 31 if (InsertBefore) { in Instruction() 32 assert(InsertBefore->getParent() && in Instruction() 34 InsertBefore->getParent()->getInstList().insert(InsertBefore, this); in Instruction()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 65 Instruction *InsertBefore = nullptr); 69 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = nullptr); 73 const Twine &Name = "", Instruction *InsertBefore = nullptr); 157 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore); 160 Instruction *InsertBefore = nullptr); 164 unsigned Align, Instruction *InsertBefore = nullptr); 170 Instruction *InsertBefore = nullptr); 176 LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore); 180 Instruction *InsertBefore = nullptr); 282 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore); [all …]
|
D | InstrTypes.h | 39 Instruction *InsertBefore = nullptr) 40 : Instruction(Ty, iType, Ops, NumOps, InsertBefore) {} in Instruction() argument 143 const Twine &Name, Instruction *InsertBefore); 163 Instruction *InsertBefore = nullptr); 288 Instruction *InsertBefore = nullptr); 292 Instruction *InsertBefore = nullptr); 296 Instruction *InsertBefore = nullptr); 300 Instruction *InsertBefore = nullptr); 304 Instruction *InsertBefore = nullptr); 392 const Twine &NameStr = "", Instruction *InsertBefore = nullptr) [all …]
|
D | BasicBlock.h | 94 BasicBlock *InsertBefore = nullptr); 112 BasicBlock *InsertBefore = nullptr) { 113 return new BasicBlock(Context, Name, Parent, InsertBefore);
|
D | GlobalVariable.h | 65 const Twine &Name = "", GlobalVariable *InsertBefore = nullptr,
|
/external/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 65 MachineBasicBlock::iterator InsertBefore, 71 MachineBasicBlock::iterator InsertBefore, 77 MachineBasicBlock::iterator InsertBefore, 82 MachineBasicBlock::iterator InsertBefore, 87 MachineBasicBlock::iterator InsertBefore, 92 MachineBasicBlock::iterator InsertBefore, 426 MachineBasicBlock::iterator InsertBefore, in createDupLane() argument 432 InsertBefore, in createDupLane() 445 MachineBasicBlock::iterator InsertBefore, in createExtractSubreg() argument 451 InsertBefore, in createExtractSubreg() [all …]
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
D | rewrite.rb | 104 class InsertBefore < RewriteOperation class in ANTLR3.TokenRewriteStream 191 op = InsertBefore.new( @stream, index, text ) 199 op = InsertBefore.new( @stream, index + 1, text ) 225 when InsertBefore 235 when InsertBefore 240 when InsertBefore 297 operation.is_a?( InsertBefore )
|
/external/webrtc/src/system_wrappers/test/list/ |
D | list.cc | 141 FailTest(test_list.InsertBefore(test_list.First(),insert_item_first) != 0); in main() 142 FailTest(test_list.InsertBefore(NULL,insert_item_first) == 0); in main() 144 FailTest(test_list.InsertBefore(insert_item_first2,NULL) == 0); in main() 170 FailTest(test_list.InsertBefore(NULL,new_item2) != 0); in main()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 251 InsertBefore(programName, index + 1, text); in InsertAfter() 255 public virtual void InsertBefore(IToken t, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 256 InsertBefore(DEFAULT_PROGRAM_NAME, t, text); in InsertBefore() 259 public virtual void InsertBefore(int index, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 260 InsertBefore(DEFAULT_PROGRAM_NAME, index, text); in InsertBefore() 263 public virtual void InsertBefore(string programName, IToken t, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 264 InsertBefore(programName, t.TokenIndex, text); in InsertBefore() 267 public virtual void InsertBefore(string programName, int index, object text) { in InsertBefore() method in Antlr.Runtime.TokenRewriteStream
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 286 InsertBefore( programName, index + 1, text ); in InsertAfter() 289 public virtual void InsertBefore( IToken t, object text ) in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 291 InsertBefore( DEFAULT_PROGRAM_NAME, t, text ); in InsertBefore() 294 public virtual void InsertBefore( int index, object text ) in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 296 InsertBefore( DEFAULT_PROGRAM_NAME, index, text ); in InsertBefore() 299 public virtual void InsertBefore( string programName, IToken t, object text ) in InsertBefore() method in Antlr.Runtime.TokenRewriteStream 301 InsertBefore( programName, t.TokenIndex, text ); in InsertBefore() 304 public virtual void InsertBefore( string programName, int index, object text ) in InsertBefore() method in Antlr.Runtime.TokenRewriteStream
|
/external/chromium_org/base/containers/ |
D | linked_list.h | 92 void InsertBefore(LinkNode<T>* e) { in InsertBefore() function 151 e->InsertBefore(&root_); in Append()
|
D | linked_list_unittest.cc | 181 TEST(LinkedList, InsertBefore) { in TEST() argument 199 n3.InsertBefore(&n2); in TEST() 208 n4.InsertBefore(&n1); in TEST()
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.pas | 1300 procedure InsertBefore(const T: IToken; const Text: IANTLRInterface); overload; 1301 procedure InsertBefore(const Index: Integer; const Text: IANTLRInterface); overload; 1302 procedure InsertBefore(const ProgramName: String; const T: IToken; 1304 procedure InsertBefore(const ProgramName: String; const Index: Integer; 1306 procedure InsertBefore(const T: IToken; const Text: String); overload; 1307 procedure InsertBefore(const Index: Integer; const Text: String); overload; 1308 procedure InsertBefore(const ProgramName: String; const T: IToken; 1310 procedure InsertBefore(const ProgramName: String; const Index: Integer; 2686 procedure InsertBefore(const T: IToken; const Text: IANTLRInterface); overload; virtual; 2687 procedure InsertBefore(const Index: Integer; const Text: IANTLRInterface); overload; virtual; [all …]
|
/external/chromium_org/v8/src/ |
D | hydrogen-bce.cc | 248 index->InsertBefore(insert_before); in MoveIndexIfNecessary() 254 HConstant::cast(left_input)->InsertBefore(index); in MoveIndexIfNecessary() 258 HConstant::cast(right_input)->InsertBefore(index); in MoveIndexIfNecessary() 273 index->InsertBefore(insert_before); in MoveIndexIfNecessary()
|
D | hydrogen-bch.cc | 259 new_limit->InsertBefore(pre_header->end()); in ProcessRelatedChecks() 269 new_limit->InsertBefore(pre_header->end()); in ProcessRelatedChecks() 276 hoisted_check->InsertBefore(pre_header->end()); in ProcessRelatedChecks()
|
/external/webrtc/src/system_wrappers/source/ |
D | list_stl.h | 58 int InsertBefore(ListItem* existing_next_item, ListItem* new_item);
|
D | list_no_stl.h | 64 int InsertBefore(ListNoStlItem* existing_next_item,
|
D | list_unittest.cc | 75 int InsertBefore(ListItem* existing_next_item, in InsertBefore() function in ListWrapperSimple 77 const int retval = list_.InsertBefore(existing_next_item, new_item); in InsertBefore() 469 EXPECT_EQ(interleave_list->InsertBefore(item, insert_item), 0); in TEST()
|
D | list_stl.cc | 210 int ListWrapper::InsertBefore(ListItem* existing_next_item, in InsertBefore() function in webrtc::ListWrapper
|
/external/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 1553 Instruction *InsertBefore) { in BuildSubAggregate() argument 1564 InsertBefore); in BuildSubAggregate() 1594 "tmp", InsertBefore); in BuildSubAggregate() 1610 Instruction *InsertBefore) { in BuildSubAggregate() argument 1611 assert(InsertBefore && "Must have someplace to insert!"); in BuildSubAggregate() 1618 return BuildSubAggregate(From, To, IndexedType, Idxs, IdxSkip, InsertBefore); in BuildSubAggregate() 1628 Instruction *InsertBefore) { in FindInsertedValue() argument 1642 return FindInsertedValue(C, idx_range.slice(1), InsertBefore); in FindInsertedValue() 1653 if (!InsertBefore) in FindInsertedValue() 1667 InsertBefore); in FindInsertedValue() [all …]
|
/external/webrtc/src/system_wrappers/interface/ |
D | list_wrapper.h | 93 int InsertBefore(ListItem* existing_next_item,
|
/external/llvm/include/llvm/Analysis/ |
D | ValueTracking.h | 117 Instruction *InsertBefore = nullptr);
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 369 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore, 374 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr, 803 Instruction *InsertBefore, Value *Addr, in generateCrashCode() argument 805 IRBuilder<> IRB(InsertBefore); in generateCrashCode() 836 Instruction *InsertBefore, Value *Addr, in instrumentAddress() argument 839 IRBuilder<> IRB(InsertBefore); in instrumentAddress() 863 SplitBlockAndInsertIfThen(Cmp, InsertBefore, false); in instrumentAddress() 874 CrashTerm = SplitBlockAndInsertIfThen(Cmp, InsertBefore, true); in instrumentAddress()
|