/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/ |
ilist_base.h | 69 // Splice [First, Final] into its new list/position.
|
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/ |
ilist_base.h | 69 // Splice [First, Final] into its new list/position.
|
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
critical.go | 107 // splice it in
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
critical.go | 107 // splice it in
|
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
perlkw.swg | 58 PERLBN(splice);
|
/external/v8/src/js/ |
array.js | 195 // This function implements the optimized splice implementation that can use 198 // Move deleted elements to a new array (the return value from splice). 223 // This function implements the optimized splice implementation that can use 283 // This is part of the old simple-minded splice. We are using it either 660 CHECK_OBJECT_COERCIBLE(this, "Array.prototype.splice"); [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
AllocatorList.h | 26 /// Because this list owns the allocator, calling \a splice() with a different 27 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
AllocatorList.h | 26 /// Because this list owns the allocator, calling \a splice() with a different 27 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/ |
AllocatorList.h | 32 /// Because this list owns the allocator, calling \a splice() with a different 33 /// list isn't generally safe. As such, \a splice has been left out of the
|
/external/clang/www/ |
libstdc++4.4-clang0x.patch | 170 + splice(iterator __position, list& __x) 171 + { splice(__position, std::move(__x)); } 183 + splice(iterator __position, list& __x, iterator __i) 184 + { splice(__position, std::move(__x), __i); } 196 + splice(iterator __position, list& __x, iterator __first, 198 + { splice(__position, std::move(__x), __first, __last); }
|
/external/llvm/include/llvm/CodeGen/ |
MachineFunction.h | 462 void splice(iterator InsertPt, iterator MBBI) { 463 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI); 465 void splice(iterator InsertPt, MachineBasicBlock *MBB) { 466 BasicBlocks.splice(InsertPt, BasicBlocks, MBB); 468 void splice(iterator InsertPt, iterator MBBI, iterator MBBE) { 469 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI, MBBE);
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
ilist.h | 469 // transfer - The heart of the splice function. Move linked list nodes from 492 // Splice [first, last) into its new position. 551 // Splice members - defined in terms of transfer... 552 void splice(iterator where, iplist &L2) { function in class:llvm::iplist 556 void splice(iterator where, iplist &L2, iterator first) { function in class:llvm::iplist 561 void splice(iterator where, iplist &L2, iterator first, iterator last) { function in class:llvm::iplist
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
MachineBasicBlock.h | 362 /// splice - Take an instruction from MBB 'Other' at the position From, 364 void splice(iterator where, MachineBasicBlock *Other, iterator From) { function in class:llvm::MachineBasicBlock 365 Insts.splice(where, Other->Insts, From); 368 /// splice - Take a block of instructions from MBB 'Other' in the range [From, 370 void splice(iterator where, MachineBasicBlock *Other, iterator From, function in class:llvm::MachineBasicBlock 372 Insts.splice(where, Other->Insts, From, To);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
stl_list.h | 1248 splice(iterator __position, list&& __x) function in class:list 1263 splice(iterator __position, list& __x) function in class:list 1278 splice(iterator __position, list&& __x, iterator __i) function in class:list 1296 splice(iterator __position, list& __x, iterator __i) function in class:list 1314 splice(iterator __position, list&& __x, iterator __first, function in class:list 1332 splice(iterator __position, list& __x, iterator __first, iterator __last) function in class:list [all...] |