Searched defs:InsertBefore (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/base/containers/
H A Dlinked_list.h23 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
31 // n3->InsertBefore(n3);
90 void InsertBefore(LinkNode<T>* e) { function in class:base::LinkNode
143 e->InsertBefore(&root_);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
95 =begin rdoc ANTLR3::TokenRewriteStream::InsertBefore
104 class InsertBefore < RewriteOperation class in class:ANTLR3
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/chromium/base/
H A Dlinked_list.h24 // LinkNode::InsertBefore, or LinkNode::InsertAfter:
32 // n3->InsertBefore(n3);
91 void InsertBefore(LinkNode<T>* e) { function in class:base::LinkNode
151 e->InsertBefore(&root_);
/external/webrtc/src/system_wrappers/source/
H A Dlist_no_stl.cc184 int ListWrapper::InsertBefore(ListItem* existing_next_item, function in class:webrtc::ListWrapper
H A Dlist_stl.cc210 int ListWrapper::InsertBefore(ListItem* existing_next_item, function in class:webrtc::ListWrapper
H A Dlist_unittest.cc75 int InsertBefore(ListItem* existing_next_item, function in class:ListWrapperSimple
77 const int retval = list_.InsertBefore(existing_next_item, new_item);
434 // Use InsertBefore to interleave two lists.
469 EXPECT_EQ(interleave_list->InsertBefore(item, insert_item), 0);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs251 InsertBefore(programName, index + 1, text);
255 public virtual void InsertBefore(IToken t, object text) { method in class:Antlr.Runtime.TokenRewriteStream
256 InsertBefore(DEFAULT_PROGRAM_NAME, t, text);
259 public virtual void InsertBefore(int index, object text) { method in class:Antlr.Runtime.TokenRewriteStream
260 InsertBefore(DEFAULT_PROGRAM_NAME, index, text);
263 public virtual void InsertBefore(string programName, IToken t, object text) { method in class:Antlr.Runtime.TokenRewriteStream
264 InsertBefore(programName, t.TokenIndex, text);
267 public virtual void InsertBefore(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.cs286 InsertBefore( programName, index + 1, text );
289 public virtual void InsertBefore( IToken t, object text ) method in class:Antlr.Runtime.TokenRewriteStream
291 InsertBefore( DEFAULT_PROGRAM_NAME, t, text );
294 public virtual void InsertBefore( int index, object text ) method in class:Antlr.Runtime.TokenRewriteStream
296 InsertBefore( DEFAULT_PROGRAM_NAME, index, text );
299 public virtual void InsertBefore( string programName, IToken t, object text ) method in class:Antlr.Runtime.TokenRewriteStream
301 InsertBefore( programName, t.TokenIndex, text );
304 public virtual void InsertBefore( string programName, int index, object text ) method in class:Antlr.Runtime.TokenRewriteStream
/external/llvm/lib/IR/
H A DBasicBlock.cpp43 BasicBlock *InsertBefore)
49 if (InsertBefore) {
52 NewParent->getBasicBlockList().insert(InsertBefore, this);
303 BasicBlock *InsertBefore = llvm::next(Function::iterator(this)) local
306 getParent(), InsertBefore);
42 BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent, BasicBlock *InsertBefore) argument
H A DInstruction.cpp25 Instruction *InsertBefore)
31 if (InsertBefore) {
32 assert(InsertBefore->getParent() &&
34 InsertBefore->getParent()->getInstList().insert(InsertBefore, this);
24 Instruction(Type *ty, unsigned it, Use *Ops, unsigned NumOps, Instruction *InsertBefore) argument
H A DDIBuilder.cpp1162 Instruction *InsertBefore) {
1170 return CallInst::Create(DeclareFn, Args, "", InsertBefore);
1195 Instruction *InsertBefore) {
1205 return CallInst::Create(ValueFn, Args, "", InsertBefore);
1161 insertDeclare(Value *Storage, DIVariable VarInfo, Instruction *InsertBefore) argument
1193 insertDbgValueIntrinsic(Value *V, uint64_t Offset, DIVariable VarInfo, Instruction *InsertBefore) argument
H A DInstructions.cpp182 Instruction *InsertBefore)
183 : Instruction(RetTy, Instruction::LandingPad, 0, 0, InsertBefore) {
212 Instruction *InsertBefore) {
214 InsertBefore);
303 Instruction *InsertBefore)
308 1, InsertBefore) {
371 static Instruction *createMalloc(Instruction *InsertBefore, argument
376 assert(((!InsertBefore && InsertAtEnd) || (InsertBefore && !InsertAtEnd)) &&
377 "createMalloc needs either InsertBefore o
180 LandingPadInst(Type *RetTy, Value *PersonalityFn, unsigned NumReservedValues, const Twine &NameStr, Instruction *InsertBefore) argument
209 Create(Type *RetTy, Value *PersonalityFn, unsigned NumReservedClauses, const Twine &NameStr, Instruction *InsertBefore) argument
302 CallInst(Value *Func, const Twine &Name, Instruction *InsertBefore) argument
456 CreateMalloc(Instruction *InsertBefore, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function * MallocF, const Twine &Name) argument
481 createFree(Value* Source, Instruction *InsertBefore, BasicBlock *InsertAtEnd) argument
514 CreateFree(Value* Source, Instruction *InsertBefore) argument
625 ReturnInst(LLVMContext &C, Value *retVal, Instruction *InsertBefore) argument
671 ResumeInst(Value *Exn, Instruction *InsertBefore) argument
699 UnreachableInst(LLVMContext &Context, Instruction *InsertBefore) argument
731 BranchInst(BasicBlock *IfTrue, Instruction *InsertBefore) argument
738 BranchInst(BasicBlock *IfTrue, BasicBlock *IfFalse, Value *Cond, Instruction *InsertBefore) argument
834 AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name, Instruction *InsertBefore) argument
852 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
870 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, Instruction *InsertBefore) argument
1090 StoreInst(Value *val, Value *addr, Instruction *InsertBefore) argument
1116 StoreInst(Value *val, Value *addr, bool isVolatile, Instruction *InsertBefore) argument
1130 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, Instruction *InsertBefore) argument
1144 StoreInst(Value *val, Value *addr, bool isVolatile, unsigned Align, AtomicOrdering Order, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1240 AtomicCmpXchgInst(Value *Ptr, Value *Cmp, Value *NewVal, AtomicOrdering Ordering, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1286 AtomicRMWInst(BinOp Operation, Value *Ptr, Value *Val, AtomicOrdering Ordering, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1312 FenceInst(LLVMContext &C, AtomicOrdering Ordering, SynchronizationScope SynchScope, Instruction *InsertBefore) argument
1528 ShuffleVectorInst(Value *V1, Value *V2, Value *Mask, const Twine &Name, Instruction *InsertBefore) argument
1732 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
1834 Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name, Instruction *InsertBefore) argument
1850 CreateNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1866 CreateNSWNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1878 CreateNUWNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1890 CreateFNeg(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
1904 CreateNot(Value *Op, const Twine &Name, Instruction *InsertBefore) argument
2325 Create(Instruction::CastOps op, Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2367 CreateZExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2383 CreateSExtOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2399 CreateTruncOrBitCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2432 CreatePointerCast(Value *S, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2448 CreateIntegerCast(Value *C, Type *Ty, bool isSigned, const Twine &Name, Instruction *InsertBefore) argument
2476 CreateFPCast(Value *C, Type *Ty, const Twine &Name, Instruction *InsertBefore) argument
2944 CmpInst(Type *ty, OtherOps op, unsigned short predicate, Value *LHS, Value *RHS, const Twine &Name, Instruction *InsertBefore) argument
2971 Create(OtherOps Op, unsigned short predicate, Value *S1, Value *S2, const Twine &Name, Instruction *InsertBefore) argument
3243 SwitchInst(Value *Value, BasicBlock *Default, unsigned NumCases, Instruction *InsertBefore) argument
3398 IndirectBrInst(Value *Address, unsigned NumCases, Instruction *InsertBefore) argument
[all...]
/external/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp71 MachineBasicBlock::iterator InsertBefore,
77 MachineBasicBlock::iterator InsertBefore,
83 MachineBasicBlock::iterator InsertBefore,
88 MachineBasicBlock::iterator InsertBefore,
93 MachineBasicBlock::iterator InsertBefore,
98 MachineBasicBlock::iterator InsertBefore,
432 MachineBasicBlock::iterator InsertBefore,
438 InsertBefore,
451 MachineBasicBlock::iterator InsertBefore,
457 InsertBefore,
431 createDupLane(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL, unsigned Reg, unsigned Lane, bool QPR) argument
450 createExtractSubreg(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL, unsigned DReg, unsigned Lane, const TargetRegisterClass *TRC) argument
467 createRegSequence(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL, unsigned Reg1, unsigned Reg2) argument
486 createVExt(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL, unsigned Ssub0, unsigned Ssub1) argument
502 createInsertSubreg(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL, unsigned DReg, unsigned Lane, unsigned ToInsert) argument
519 createImplicitDef(MachineBasicBlock &MBB, MachineBasicBlock::iterator InsertBefore, DebugLoc DL) argument
[all...]
/external/llvm/lib/Analysis/
H A DValueTracking.cpp1545 Instruction *InsertBefore) {
1556 InsertBefore);
1586 "tmp", InsertBefore);
1600 // All inserted insertvalue instructions are inserted before InsertBefore
1602 Instruction *InsertBefore) {
1603 assert(InsertBefore && "Must have someplace to insert!");
1610 return BuildSubAggregate(From, To, IndexedType, Idxs, IdxSkip, InsertBefore);
1617 /// If InsertBefore is not null, this function will duplicate (modified)
1620 Instruction *InsertBefore) {
1634 return FindInsertedValue(C, idx_range.slice(1), InsertBefore);
1542 BuildSubAggregate(Value *From, Value* To, Type *IndexedType, SmallVectorImpl<unsigned> &Idxs, unsigned IdxSkip, Instruction *InsertBefore) argument
1601 BuildSubAggregate(Value *From, ArrayRef<unsigned> idx_range, Instruction *InsertBefore) argument
1619 FindInsertedValue(Value *V, ArrayRef<unsigned> idx_range, Instruction *InsertBefore) argument
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp358 Instruction *InsertBefore) {
396 InsertNewInstWith(R, *InsertBefore);
357 foldFMulConst(Instruction *FMulOrDiv, ConstantFP *C, Instruction *InsertBefore) argument
/external/v8/src/
H A Dhydrogen-instructions.cc559 void HInstruction::InsertBefore(HInstruction* next) { function in class:v8::internal::HInstruction
1664 map_check->InsertBefore(this);
1665 index->InsertBefore(this);
1666 load->InsertBefore(this);
/external/llvm/include/llvm/IR/
H A DInstructions.h65 const Twine &Name = "", Instruction *InsertBefore = 0);
69 AllocaInst(Type *Ty, const Twine &Name, Instruction *InsertBefore = 0);
73 const Twine &Name = "", Instruction *InsertBefore = 0);
143 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
146 Instruction *InsertBefore = 0);
150 unsigned Align, Instruction *InsertBefore = 0);
156 Instruction *InsertBefore = 0);
162 LoadInst(Value *Ptr, const char *NameStr, Instruction *InsertBefore);
165 bool isVolatile = false, Instruction *InsertBefore = 0);
267 StoreInst(Value *Val, Value *Ptr, Instruction *InsertBefore);
878 GetElementPtrInst(Value *Ptr, ArrayRef<Value *> IdxList, unsigned Values, const Twine &NameStr, Instruction *InsertBefore) argument
919 ICmpInst( Instruction *InsertBefore, Predicate pred, Value *LHS, Value *RHS, const Twine &NameStr = Ó ) argument
1069 FCmpInst( Instruction *InsertBefore, Predicate pred, Value *LHS, Value *RHS, const Twine &NameStr = Ó ) argument
1416 CallInst(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr, Instruction *InsertBefore) argument
1446 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, Instruction *InsertBefore) argument
1829 ExtractValueInst(Value *Agg, ArrayRef<unsigned> Idxs, const Twine &NameStr, Instruction *InsertBefore) argument
1955 InsertValueInst(Value *Agg, Value *Val, ArrayRef<unsigned> Idxs, const Twine &NameStr, Instruction *InsertBefore) argument
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp284 void instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore,
289 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
295 Instruction *InsertBefore, bool IsWrite);
579 Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
580 IRBuilder<> IRB(InsertBefore);
584 instrumentAddress(OrigIns, InsertBefore, Addr, 8, IsWrite, Size);
586 IRB.SetInsertPoint(InsertBefore);
590 instrumentAddress(OrigIns, InsertBefore, AddrLast, 8, IsWrite, Size);
601 Instruction *InsertBefore = MI; local
606 IRBuilder<> IRB(InsertBefore);
577 instrumentMemIntrinsicParam( Instruction *OrigIns, Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) argument
700 generateCrashCode( Instruction *InsertBefore, Value *Addr, bool IsWrite, size_t AccessSizeIndex, Value *SizeArgument) argument
733 instrumentAddress(Instruction *OrigIns, Instruction *InsertBefore, Value *Addr, uint32_t TypeSize, bool IsWrite, Value *SizeArgument) argument
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas1300 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(cons
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.cc709 void HInstruction::InsertBefore(HInstruction* next) { function in class:v8::internal::HInstruction
853 add_offset->InsertBefore(this);
856 add->InsertBefore(this);
864 sar_scale->InsertBefore(this);
867 sar->InsertBefore(this);
1298 result->InsertBefore(this);
1318 HChange::cast(new_left)->InsertBefore(this);
1329 HChange::cast(new_right)->InsertBefore(this);
1338 HInstruction::cast(new_left)->InsertBefore(this);
1342 HInstruction::cast(new_right)->InsertBefore(thi
[all...]

Completed in 463 milliseconds