Home
last modified time | relevance | path

Searched refs:splice (Results 1 – 25 of 260) sorted by relevance

1234567891011

/external/libcxx/test/std/containers/sequences/list/list.ops/
Dsplice_pos_list_iter.pass.cpp27 l1.splice(l1.end(), l2, l2.begin()); in main()
38 l1.splice(l1.end(), l2, l2.begin()); in main()
51 l1.splice(l1.end(), l2, next(l2.begin())); in main()
64 l1.splice(l1.end(), l2, l2.begin()); in main()
79 l1.splice(l1.end(), l2, next(l2.begin())); in main()
94 l1.splice(l1.end(), l2, next(l2.begin(), 2)); in main()
108 l1.splice(l1.begin(), l1, l1.begin()); in main()
117 l1.splice(l1.begin(), l2, l2.begin()); in main()
130 l1.splice(next(l1.begin()), l2, l2.begin()); in main()
142 l1.splice(l1.begin(), l1, l1.begin()); in main()
[all …]
Dsplice_pos_list.pass.cpp27 l1.splice(l1.end(), l2); in main()
36 l1.splice(l1.end(), l2); in main()
47 l1.splice(l1.end(), l2); in main()
60 l1.splice(l1.end(), l2); in main()
75 l1.splice(l1.begin(), l2); in main()
86 l1.splice(l1.end(), l2); in main()
97 l1.splice(l1.begin(), l2); in main()
110 l1.splice(l1.end(), l2); in main()
123 l1.splice(l1.begin(), l2); in main()
138 l1.splice(l1.end(), l2); in main()
[all …]
Dsplice_pos_list_iter_iter.pass.cpp26 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); in main()
38 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); in main()
50 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); in main()
63 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); in main()
83 l1.splice(next(l1.begin()), l2, next(l2.begin()), l2.end()); in main()
103 l1.splice(l1.end(), l2, next(l2.begin()), l2.end()); in main()
123 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin())); in main()
135 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 2)); in main()
147 l1.splice(l1.begin(), l1, next(l1.begin()), next(l1.begin(), 3)); in main()
160 l1.splice(l1.begin(), l2, next(l2.begin()), l2.end()); in main()
[all …]
/external/bison/src/
Dscan-gram.l118 splice (\\[ \f\t\v]*\n)*
423 "*"{splice}"/" STRING_GROW; BEGIN context_state;
435 {splice} STRING_GROW;
583 {splice}|\\{splice}[^\n\[\]] STRING_GROW;
619 "/"{splice}"*" {
625 "/"{splice}"/" {
641 "{"|"<"{splice}"%" STRING_GROW; braces_level++;
642 "%"{splice}">" STRING_GROW; braces_level--;
659 "<"{splice}"<" STRING_GROW;
Dscan-code.l85 splice (\\[ \f\t\v]*\n)*
132 "*"{splice}"/" STRING_GROW; BEGIN sc_context;
143 {splice} STRING_GROW;
153 {splice}|\\{splice}. STRING_GROW;
179 "/"{splice}"*" {
183 "/"{splice}"/" {
246 {splice} STRING_GROW;
/external/llvm/include/llvm/CodeGen/
DMachineFunction.h462 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/llvm/include/llvm/ADT/
Dilist.h573 void splice(iterator where, iplist &L2) {
577 void splice(iterator where, iplist &L2, iterator first) {
582 void splice(iterator where, iplist &L2, iterator first, iterator last) {
585 void splice(iterator where, iplist &L2, NodeTy &N) {
586 splice(where, L2, iterator(N));
588 void splice(iterator where, iplist &L2, NodeTy *N) {
589 splice(where, L2, iterator(N));
628 RightHalf.splice(RightHalf.begin(), *this, Center, end());
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DMachineFunction.h311 void splice(iterator InsertPt, iterator MBBI) {
312 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI);
314 void splice(iterator InsertPt, iterator MBBI, iterator MBBE) {
315 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI, MBBE);
DMachineBasicBlock.h364 void splice(iterator where, MachineBasicBlock *Other, iterator From) {
365 Insts.splice(where, Other->Insts, From);
370 void splice(iterator where, MachineBasicBlock *Other, iterator From,
372 Insts.splice(where, Other->Insts, From, To);
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
DBaseTree.js120 var killed = this.children.splice(i, 1)[0];
170 killed = this.children.splice(indexToDelete, 1)[0];
181 this.children.splice(startChildIndex+j, 0, newChildren[j]);
/external/ltp/testcases/kernel/syscalls/splice/
Dsplice01.c99 ret = splice(fd_in, NULL, pipes[1], NULL, TEST_BLOCK_SIZE, 0); in splice_test()
103 ret = splice(pipes[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0); in splice_test()
Dsplice02.c79 TEST(splice(STDIN_FILENO, NULL, fd, NULL, SPLICE_SIZE, 0)); in main()
/external/ltp/testcases/kernel/syscalls/tee/
Dtee01.c107 ret = splice(fd_in, NULL, pipe1[1], NULL, TEST_BLOCK_SIZE, 0); in tee_test()
115 ret = splice(pipe2[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0); in tee_test()
/external/llvm/unittests/ADT/
DilistTest.cpp52 List.splice(List.begin(), List, List.begin()); in TEST()
60 List.splice(std::next(List.begin()), List, List.begin()); in TEST()
/external/libcxx/include/
Dlist124 void splice(const_iterator position, list& x);
125 void splice(const_iterator position, list&& x);
126 void splice(const_iterator position, list& x, const_iterator i);
127 void splice(const_iterator position, list&& x, const_iterator i);
128 void splice(const_iterator position, list& x, const_iterator first,
130 void splice(const_iterator position, list&& x, const_iterator first,
1024 void splice(const_iterator __p, list& __c);
1027 void splice(const_iterator __p, list&& __c) {splice(__p, __c);}
1029 void splice(const_iterator __p, list& __c, const_iterator __i);
1032 void splice(const_iterator __p, list&& __c, const_iterator __i)
[all …]
/external/fio/engines/
Dsplice.c46 ret = splice(f->fd, &offset, sd->pipe[1], NULL, this_len, SPLICE_F_MORE); in fio_splice_read_old()
108 ret = splice(f->fd, &offset, sd->pipe[1], NULL, this_len,flags); in fio_splice_read()
191 ret2 = splice(sd->pipe[0], NULL, f->fd, &off, ret, 0); in fio_splice_write()
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dhash_map.hpp261 values_.splice(buckets_[bucket].last, values_, iter++); in rehash()
278 values_.splice(it, spares_, spares_.begin()); in values_insert()
287 spares_.splice(spares_.begin(), values_, it); in values_erase()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DBasicBlock.cpp107 MovePos->getParent()->getBasicBlockList().splice(MovePos, in moveBefore()
115 MovePos->getParent()->getBasicBlockList().splice(++I, in moveAfter()
310 New->getInstList().splice(New->end(), this->getInstList(), I, end()); in splitBasicBlock()
/external/libcxx/test/libcxx/containers/sequences/list/list.ops/
Ddb_splice_pos_list.pass.cpp26 v1.splice(v2.begin(), v2); in main()
Ddb_splice_pos_list_iter.pass.cpp26 v1.splice(v1.begin(), v2, v1.begin()); in main()
Ddb_splice_pos_list_iter_iter.pass.cpp26 v1.splice(v1.begin(), v2, v2.begin(), v1.end()); in main()
/external/ltp/include/lapi/
Dsplice.h28 ssize_t splice(int fd_in, loff_t *off_in, int fd_out, in splice() function
/external/llvm/lib/IR/
DBasicBlock.cpp104 MovePos->getParent()->getBasicBlockList().splice( in moveBefore()
111 MovePos->getParent()->getBasicBlockList().splice( in moveAfter()
386 New->getInstList().splice(New->end(), this->getInstList(), I, end()); in splitBasicBlock()
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DTokenRewriteStream.js226 rewrites.splice(i, 0, op);
230 rewrites.splice(pos, 0, op);
234 rewrites.splice(pos, 0, op);
/external/ltp/testcases/kernel/include/
Dhppa.in15 splice 291

1234567891011