/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/ |
move_convert17.fail.cpp | 14 // Test unique_ptr converting move ctor 16 // test converting move ctor. Should only require a MoveConstructible deleter, or if 51 std::unique_ptr<A[], Deleter<A[]> > s2 = std::move(s);
|
move_convert18.fail.cpp | 14 // Test unique_ptr converting move ctor 16 // test converting move ctor. Should only require a MoveConstructible deleter, or if 67 std::unique_ptr<A[], CDeleter<A>&> s2 = std::move(s);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/ |
move_convert03.pass.cpp | 14 // Test unique_ptr converting move assignment 16 // test converting move assignment with reference deleters 52 s2 = std::move(s);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
move_convert01.pass.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if 49 std::unique_ptr<A> s2(std::move(s));
|
move_convert02.pass.cpp | 14 // Test unique_ptr converting move ctor 21 // test converting move ctor. Should only require a MoveConstructible deleter, or if 51 std::unique_ptr<A, Deleter<A> > s2(std::move(s));
|
move_convert03.pass.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if 67 std::unique_ptr<A, CDeleter<A>&> s2(std::move(s));
|
move_convert04.pass.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if 49 std::unique_ptr<A> s2 = std::move(s);
|
move_convert05.pass.cpp | 14 // Test unique_ptr converting move ctor 21 // test converting move ctor. Should only require a MoveConstructible deleter, or if 51 std::unique_ptr<A, Deleter<A> > s2 = std::move(s);
|
move_convert06.pass.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if 67 std::unique_ptr<A, CDeleter<A>&> s2 = std::move(s);
|
move_convert07.pass.cpp | 14 // Test unique_ptr converting move ctor 21 // test converting move ctor. Should only require a MoveConstructible deleter, or if 52 std::unique_ptr<A, CDeleter<A> > s2 = std::move(s);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/ |
tuple_cat.pass.cpp | 114 std::tuple_cat(std::move(t1), t2); 124 std::tuple_cat(t2, std::move(t1)); 134 std::tuple_cat(std::move(t1), std::move(t2)); 146 std::move(t1), 147 std::move(t2)); 157 std::tuple_cat(std::move(t1), 159 std::move(t2)); 169 std::tuple_cat(std::move(t1), 170 std::move(t2) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
move_copy.pass.cpp | 10 // test move 60 A a3 = std::move(a); 68 A a5 = std::move(ca);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
MessageMove.java | 28 /** The URI for dealing with message move data. */ 46 * Projection for a query to get all columns necessary for an actual move. 148 LogUtils.w(LOG_TAG, "existing move's dst not same as this move's src"); 168 final MessageMove move = movesMap.valueAt(i); local 170 if ((move.mServerId == null || move.mServerId.length() == 0) || 171 move.mSrcFolderKey == move.mDstFolderKey) { 172 unmovedMessages[unmovedMessagesCount] = move.mMessageKey [all...] |
/external/llvm/include/llvm/ADT/ |
SmallVector.h | 181 /// move - Use move-assignment to move the range [I, E) onto the 183 /// std::move, but not all stdlibs actually provide that. 185 static It2 move(It1 I, It1 E, It2 Dest) { 188 *Dest = ::std::move(*I); 195 /// move_backward - Use move-assignment to move the range 203 *--Dest = ::std::move(*--E); 210 /// uninitialized_move - Move the range [I, E) into the uninitialize 306 static It2 move(It1 I, It1 E, It2 Dest) { function in class:llvm::SmallVectorTemplateBase [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
tuple | 167 : _Inherited(std::move<_Inherited&&>(__in._M_tail())), 176 : _Inherited(std::move<typename _Tuple_impl<_Idx, _UElements...>:: 192 _M_head() = std::move(__in._M_head()); 193 _M_tail() = std::move(__in._M_tail()); 210 _M_head() = std::move(__in._M_head()); 211 _M_tail() = std::move(__in._M_tail()); 247 : _Inherited(std::move<_Inherited>(__in)) { } 256 : _Inherited(std::move<_Tuple_impl<0, _UElements...> >(__in)) { } 274 static_cast<_Inherited&>(*this) = std::move(__in); 290 static_cast<_Inherited&>(*this) = std::move(__in) [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
tuple | 167 : _Inherited(std::move<_Inherited&&>(__in._M_tail())), 176 : _Inherited(std::move<typename _Tuple_impl<_Idx, _UElements...>:: 192 _M_head() = std::move(__in._M_head()); 193 _M_tail() = std::move(__in._M_tail()); 210 _M_head() = std::move(__in._M_head()); 211 _M_tail() = std::move(__in._M_tail()); 247 : _Inherited(std::move<_Inherited>(__in)) { } 256 : _Inherited(std::move<_Tuple_impl<0, _UElements...> >(__in)) { } 274 static_cast<_Inherited&>(*this) = std::move(__in); 290 static_cast<_Inherited&>(*this) = std::move(__in) [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
tuple | 167 : _Inherited(std::move<_Inherited&&>(__in._M_tail())), 176 : _Inherited(std::move<typename _Tuple_impl<_Idx, _UElements...>:: 192 _M_head() = std::move(__in._M_head()); 193 _M_tail() = std::move(__in._M_tail()); 210 _M_head() = std::move(__in._M_head()); 211 _M_tail() = std::move(__in._M_tail()); 247 : _Inherited(std::move<_Inherited>(__in)) { } 256 : _Inherited(std::move<_Tuple_impl<0, _UElements...> >(__in)) { } 274 static_cast<_Inherited&>(*this) = std::move(__in); 290 static_cast<_Inherited&>(*this) = std::move(__in) [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
tuple | 167 : _Inherited(std::move<_Inherited&&>(__in._M_tail())), 176 : _Inherited(std::move<typename _Tuple_impl<_Idx, _UElements...>:: 192 _M_head() = std::move(__in._M_head()); 193 _M_tail() = std::move(__in._M_tail()); 210 _M_head() = std::move(__in._M_head()); 211 _M_tail() = std::move(__in._M_tail()); 247 : _Inherited(std::move<_Inherited>(__in)) { } 256 : _Inherited(std::move<_Tuple_impl<0, _UElements...> >(__in)) { } 274 static_cast<_Inherited&>(*this) = std::move(__in); 290 static_cast<_Inherited&>(*this) = std::move(__in) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
tuple | 167 : _Inherited(std::move<_Inherited&&>(__in._M_tail())), 176 : _Inherited(std::move<typename _Tuple_impl<_Idx, _UElements...>:: 192 _M_head() = std::move(__in._M_head()); 193 _M_tail() = std::move(__in._M_tail()); 210 _M_head() = std::move(__in._M_head()); 211 _M_tail() = std::move(__in._M_tail()); 247 : _Inherited(std::move<_Inherited>(__in)) { } 256 : _Inherited(std::move<_Tuple_impl<0, _UElements...> >(__in)) { } 274 static_cast<_Inherited&>(*this) = std::move(__in); 290 static_cast<_Inherited&>(*this) = std::move(__in) [all...] |
/art/runtime/entrypoints/jni/ |
jni_entrypoints.cc | 96 arg_ptr += 3; // unaligned, pad and move through stack arguments 98 arg_ptr += 2; // aligned, move through stack arguments 103 arg_ptr++; // move through register arguments 110 arg_ptr++; // move through stack arguments
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/d/ |
T_move_1.java | 17 package dot.junit.opcodes.move.d;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
HighRegisterPrefix.java | 27 * {@code move*} instructions to move a set of registers into 135 * Returns the proper move instruction for the given source spec 140 * @return {@code non-null;} the appropriate move instruction
|
/dalvik/dx/src/com/android/dx/dex/code/ |
HighRegisterPrefix.java | 26 * {@code move*} instructions to move a set of registers into 134 * Returns the proper move instruction for the given source spec 139 * @return {@code non-null;} the appropriate move instruction
|
/dalvik/dx/tests/088-ssa-combine-blocks/ |
Blort.java | 26 * Current SSA form requires each move-exception block to have
|
/dalvik/dx/tests/114-value-propagation/ |
run | 18 dx --dump --rop-blocks blort.class | grep 'const\|move'
|