Searched refs:move (Results 1 - 25 of 990) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dwarn-self-move.cpp1 // RUN: %clang_cc1 -fsyntax-only -Wself-move -std=c++11 -verify %s
3 // definitions for std::move
10 template <class T> typename remove_reference<T>::type &&move(T &&t);
16 x = std::move(x); // expected-warning{{explicitly moving}}
17 (x) = std::move(x); // expected-warning{{explicitly moving}}
19 using std::move;
20 x = move(x); // expected-warning{{explicitly moving}}
25 global = std::move(global); // expected-warning{{explicitly moving}}
26 (global) = std::move(global); // expected-warning{{explicitly moving}}
28 using std::move;
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp19.cpp8 template<typename T> T &&move(T&);
19 lambda1 = move(lambda1);
26 decltype(lambda1) lambda5 = move(lambda1);
27 decltype(lambda1) lambda6(move(lambda1));
/external/llvm/include/llvm/ADT/
H A Diterator_range.h36 : begin_iterator(std::move(begin_iterator)),
37 end_iterator(std::move(end_iterator)) {}
48 return iterator_range<T>(std::move(x), std::move(y));
52 return iterator_range<T>(std::move(p.first), std::move(p.second));
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
22 assert(std::char_traits<char>::move(s1, s1+1, 2) == s1);
27 assert(std::char_traits<char>::move(s1+1, s1, 2) == s1+1);
31 assert(std::char_traits<char>::move(NULL, s1, 0) == NULL);
32 assert(std::char_traits<char>::move(s1, NULL, 0) == s1);
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
22 assert(std::char_traits<wchar_t>::move(s1, s1+1, 2) == s1);
27 assert(std::char_traits<wchar_t>::move(s1+1, s1, 2) == s1+1);
31 assert(std::char_traits<wchar_t>::move(NULL, s1, 0) == NULL);
32 assert(std::char_traits<wchar_t>::move(s1, NULL, 0) == s1);
/external/v8/src/compiler/
H A Dgap-resolver.cc28 // No operand should be the destination for more than one move.
50 for (op_iterator move = moves->begin(); move != moves->end(); ++move) {
51 if (!move->IsEliminated()) PerformMove(moves, &*move);
57 MoveOperands* move) const {
58 // Each call to this function performs a move and deletes it from the move
59 // graph. We first recursively perform any move blockin
[all...]
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.assign/
H A Dmove_assign.pass.cpp26 fs = move(fso);
34 fs = move(fso);
/external/libcxx/test/std/input.output/file.streams/fstreams/ifstream.cons/
H A Dmove.pass.cpp25 std::ifstream fs = move(fso);
32 std::wifstream fs = move(fso);
/external/valgrind/memcheck/tests/
H A Dbadloop.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
H A Dinits.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
H A Dmanuel1.stderr.exp2 Conditional jump or move depends on uninitialised value(s)
H A Dmetadata.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
H A Dclientperm.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
4 Conditional jump or move depends on uninitialised value(s)
H A Dsupponlyobj.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
4 Conditional jump or move depends on uninitialised value(s)
/external/valgrind/memcheck/tests/linux/
H A Dwith-space.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
23 assert(std::char_traits<char16_t>::move(s1, s1+1, 2) == s1);
28 assert(std::char_traits<char16_t>::move(s1+1, s1, 2) == s1+1);
32 assert(std::char_traits<char16_t>::move(NULL, s1, 0) == NULL);
33 assert(std::char_traits<char16_t>::move(s1, NULL, 0) == s1);
/external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
H A Dmove.pass.cpp14 // static char_type* move(char_type* s1, const char_type* s2, size_t n);
23 assert(std::char_traits<char32_t>::move(s1, s1+1, 2) == s1);
28 assert(std::char_traits<char32_t>::move(s1+1, s1, 2) == s1+1);
32 assert(std::char_traits<char32_t>::move(NULL, s1, 0) == NULL);
33 assert(std::char_traits<char32_t>::move(s1, NULL, 0) == s1);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
H A Dmove_convert13.fail.cpp14 // Test unique_ptr converting move assignment
35 s2 = std::move(s);
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
H A Dmove_convert13.fail.cpp14 // Test unique_ptr converting move ctor
34 std::unique_ptr<A, Deleter> s2(std::move(s));
/external/valgrind/memcheck/tests/x86/
H A Dpushfpopf.stderr.exp1 Conditional jump or move depends on uninitialised value(s)
5 Conditional jump or move depends on uninitialised value(s)
/external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
H A Dmove.pass.cpp26 ss = std::move(ss0);
41 std::istringstream s2 = std::move(s1);
46 s3 = std::move(s2);
50 s1 = std::move(s3);
57 ss = std::move(ss0);
72 std::wistringstream s2 = std::move(s1);
77 s3 = std::move(s2);
81 s1 = std::move(s3);
/external/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombine.h35 InstCombinePass(InstCombinePass &&Arg) : Worklist(std::move(Arg.Worklist)) {}
37 Worklist = std::move(RHS.Worklist);
/external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/
H A Dmove.pass.cpp25 buf = move(buf1);
31 buf = move(buf1);
37 buf = move(buf1);
43 buf = move(buf1);
49 buf = move(buf1);
55 buf = move(buf1);
/external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
H A Dmove.pass.cpp24 std::stringbuf buf(move(buf1));
29 std::stringbuf buf(move(buf1));
34 std::stringbuf buf(move(buf1));
39 std::wstringbuf buf(move(buf1));
44 std::wstringbuf buf(move(buf1));
49 std::wstringbuf buf(move(buf1));
/external/llvm/lib/Target/XCore/
H A DXCoreTargetTransformInfo.h47 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
48 TLI(std::move(Arg.TLI)) {}
56 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
57 ST = std::move(RHS.ST);
58 TLI = std::move(RHS.TLI);

Completed in 5510 milliseconds

1234567891011>>