/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/ |
list | 482 splice(iterator __position, list&& __x) 484 splice(iterator __position, list& __x) 491 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base())); 496 splice(iterator __position, list& __x) 497 { splice(__position, std::move(__x)); } 502 splice(iterator __position, list&& __x, iterator __i) 504 splice(iterator __position, list& __x, iterator __i) 522 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()), 528 splice(iterator __position, list& __x, iterator __i) 529 { splice(__position, std::move(__x), __i); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/ |
list | 414 splice(iterator __position, list&& __x) 416 splice(iterator __position, list& __x) 418 { this->splice(__position, _GLIBCXX_MOVE(__x), __x.begin(), __x.end()); } 422 splice(iterator __position, list& __x) 423 { this->splice(__position, std::move(__x)); } 428 splice(iterator __position, list& __x, iterator __i) 429 { this->splice(__position, std::move(__x), __i); } 434 splice(iterator __position, list&& __x, iterator __i) 436 splice(iterator __position, list& __x, iterator __i) 443 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/ |
list | 482 splice(iterator __position, list&& __x) 484 splice(iterator __position, list& __x) 491 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base())); 496 splice(iterator __position, list& __x) 497 { splice(__position, std::move(__x)); } 502 splice(iterator __position, list&& __x, iterator __i) 504 splice(iterator __position, list& __x, iterator __i) 522 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()), 528 splice(iterator __position, list& __x, iterator __i) 529 { splice(__position, std::move(__x), __i); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/ |
list | 414 splice(iterator __position, list&& __x) 416 splice(iterator __position, list& __x) 418 { this->splice(__position, _GLIBCXX_MOVE(__x), __x.begin(), __x.end()); } 422 splice(iterator __position, list& __x) 423 { this->splice(__position, std::move(__x)); } 428 splice(iterator __position, list& __x, iterator __i) 429 { this->splice(__position, std::move(__x), __i); } 434 splice(iterator __position, list&& __x, iterator __i) 436 splice(iterator __position, list& __x, iterator __i) 443 _Base::splice(__position.base(), _GLIBCXX_MOVE(__x._M_base()) [all...] |
/external/llvm/unittests/ADT/ |
ilistTest.cpp | 51 // The single-element splice operation supports noops. 52 List.splice(List.begin(), List, List.begin()); 60 List.splice(std::next(List.begin()), List, List.begin());
|
/external/strace/tests/ |
splice.c | 2 * This file is part of splice strace test. 53 printf("splice(%d, [%lld], %d, [%lld], %zu, %s) = %ld %s (%m)\n",
|
/external/strace/tests-m32/ |
splice.c | 2 * This file is part of splice strace test. 53 printf("splice(%d, [%lld], %d, [%lld], %zu, %s) = %ld %s (%m)\n",
|
/external/strace/tests-mx32/ |
splice.c | 2 * This file is part of splice strace test. 53 printf("splice(%d, [%lld], %d, [%lld], %zu, %s) = %ld %s (%m)\n",
|
/external/ltp/include/lapi/ |
splice.h | 28 ssize_t splice(int fd_in, loff_t *off_in, int fd_out, function
|
/external/ltp/m4/ |
ltp-splice.m4 | 24 AC_CHECK_FUNCS(splice,,)
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/ |
ilist.h | 296 // transfer - The heart of the splice function. Move linked list nodes from 306 base_list_type::splice(position, L2, first, last); 341 // Splice members - defined in terms of transfer... 342 void splice(iterator where, iplist_impl &L2) { function in class:llvm::iplist_impl 346 void splice(iterator where, iplist_impl &L2, iterator first) { function in class:llvm::iplist_impl 351 void splice(iterator where, iplist_impl &L2, iterator first, iterator last) { function in class:llvm::iplist_impl 354 void splice(iterator where, iplist_impl &L2, reference N) { function in class:llvm::iplist_impl 355 splice(where, L2, iterator(N)); 357 void splice(iterator where, iplist_impl &L2, pointer N) { function in class:llvm::iplist_impl 358 splice(where, L2, iterator(N)) [all...] |