HomeSort by relevance Sort by last modified time
    Searched defs:move (Results 1 - 25 of 154) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/Analysis/
delayed-template-parsing-crash.cpp 9 typename remove_reference<T>::type&& move(T&& arg) { // this used to crash function
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/d/
T_move_1.java 17 package dot.junit.opcodes.move.d;
  /external/libchrome/base/task_scheduler/
task.cc 28 ? MakeCriticalClosure(std::move(task))
29 : std::move(task),
53 : PendingTask(std::move(other)),
57 sequenced_task_runner_ref(std::move(other.sequenced_task_runner_ref)),
59 std::move(other.single_thread_task_runner_ref)) {} function in namespace:base::internal
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-subscribe.hpp 73 : scrbr(std::move(s))
77 -> decltype(std::forward<Observable>(source).subscribe(std::move(scrbr))) { function in class:rxcpp::operators::detail::subscribe_factory
78 return std::forward<Observable>(source).subscribe(std::move(scrbr));
rx-switch_if_empty.hpp 50 : backup(std::move(b))
68 : dest(std::move(d))
69 , lifetime(std::move(cs))
70 , backup(std::move(b))
77 dest.on_next(std::move(v));
80 dest.on_error(std::move(e));
92 return make_subscriber<value_type>(cs, observer_type(this_type(std::move(d), cs, std::move(b))));
98 -> decltype(switch_if_empty_observer<Subscriber>::make(std::move(dest), std::move(backup))) function in class:rxcpp::operators::detail::switch_if_empty::std
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/
Test_move.java 17 package dot.junit.opcodes.move;
21 import dot.junit.opcodes.move.d.T_move_1;
25 * @title test move functionality
37 load("dot.junit.opcodes.move.d.T_move_2", VerifyError.class);
45 load("dot.junit.opcodes.move.d.T_move_3", VerifyError.class);
53 load("dot.junit.opcodes.move.d.T_move_4", VerifyError.class);
61 load("dot.junit.opcodes.move.d.T_move_5", VerifyError.class);
69 load("dot.junit.opcodes.move.d.T_move_6", VerifyError.class);
79 load("dot.junit.opcodes.move.d.T_move_7", VerifyError.class);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 5 namespace move { namespace
7 Const(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be const}}
8 Const& operator=(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be const}}
12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}}
13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}}
17 AssignmentRet1&& operator=(AssignmentRet1&&) = default; // expected-error {{explicitly-defaulted move assignment operator must return 'move::AssignmentRet1 &'}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{explicitly-defaulted move assignment operator must return 'move::AssignmentRet2 &'}}
25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}
    [all...]
  /external/libchrome/base/
callback_internal.cc 46 : bind_state_(std::move(c.bind_state_)) {} function in namespace:base::internal
49 bind_state_ = std::move(c.bind_state_);
  /external/libcxx/test/support/
constexpr_char_traits.hpp 40 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
100 constexpr_char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) function in class:constexpr_char_traits
emplace_constructible.h 22 : copied(Other.copied + 1), value(std::move(Other.value)) {}
34 value(std::move(Other.value)) {} function in struct:EmplaceConstructibleAndMoveable
40 value = std::move(Other.value);
56 value(std::move(Other.value)) {} function in struct:EmplaceConstructibleMoveableAndAssignable
62 value = std::move(Other.value);
67 value = std::move(xvalue);
  /external/python/cpython2/Demo/tkinter/guido/
brownian2.py 28 canvas.move(p, dx, dy)
34 def move(particle): # move the particle at random time function
37 root.after(int(dt*1000), move, particle)
48 move(particle(canvas))
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAnimationSetTest.java 25 final Animation move = new TranslateAnimation(0, 100, 0, 100); local
26 move.setDuration(1000);
27 move.setAnimationListener(moveListener);
36 verify(moveListener).onAnimationStart(move);
40 verify(moveListener).onAnimationEnd(move);
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
rval-references-examples.cpp 43 template <class T> typename remove_reference<T>::type&& move(T&& t) { function
67 // Move construction
75 // Move assignment
76 p2 = move(p);
84 accept_unique_ptr(move(p2));
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
move.pass.cpp 16 // void move(basic_ios&& rhs);
34 void move(std::ios& x) {std::ios::move(x);} function in struct:testios
107 ios1.move(ios2);
  /art/compiler/optimizing/
parallel_move_test.cc 60 MoveOperands* move = moves_[index]; variable
65 DumpLocationForTest(message_, move->GetSource());
67 DumpLocationForTest(message_, move->GetDestination());
72 MoveOperands* move = moves_[index]; variable
77 DumpLocationForTest(message_, move->GetSource());
79 DumpLocationForTest(message_, move->GetDestination());
131 MoveOperands* move = moves_[index]; variable
136 DumpLocationForTest(message_, move->GetSource());
138 DumpLocationForTest(message_, move->GetDestination());
  /build/make/core/
node_fns.mk 59 # $(call move-var-list,SRC,DST,A B)
68 # $(3): list of variable names to move
70 define move-var-list
249 $(call move-var-list,$(_node_import_context).$(_in),$(1).$(_in),$(3)) \
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
OutputFileDumper.java 121 Files.move(workFile, resultFile);
  /external/e2fsprogs/lib/ext2fs/
brel.h 59 * Move the inode relocation table from one block number to
62 errcode_t (*move)(ext2_brel brel, blk64_t old, blk_t new); member in struct:ext2_block_relocation_table
83 #define ext2fs_brel_move(brel, old, new) ((brel)->move((brel), old, new))
  /external/eigen/Eigen/src/Core/
DenseStorage.h 373 : m_data(std::move(other.m_data))
374 , m_rows(std::move(other.m_rows))
375 , m_cols(std::move(other.m_cols)) function in class:Eigen::DenseStorage
453 : m_data(std::move(other.m_data))
454 , m_cols(std::move(other.m_cols)) function in class:Eigen::DenseStorage
527 : m_data(std::move(other.m_data))
528 , m_rows(std::move(other.m_rows)) function in class:Eigen::DenseStorage
  /external/elfutils/libdwfl/
segment.c 96 const size_t move = dwfl->lookup_elts - i; local
98 move * sizeof dwfl->lookup_addr[0]);
100 move * sizeof dwfl->lookup_segndx[0]);
103 move * sizeof dwfl->lookup_module[0]);
  /external/python/cpython2/Lib/lib-tk/
Tkdnd.py 29 the mouse moves, and at the start and end of a drag-and-drop move, the
248 def move(self, event): member in class:Icon
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 89 """delete: Move an item from its container to the trash
200 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
201 """move: Move object(s) to a new location
202 Required argument: the object(s) to move
211 _subcode = 'move'
  /external/python/cpython3/Lib/tkinter/
dnd.py 29 the mouse moves, and at the start and end of a drag-and-drop move, the
248 def move(self, event): member in class:Icon
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /external/v8/src/compiler/
gap-resolver.cc 21 // Splits a FP move between two location operands into the equivalent series of
22 // moves between smaller sub-operands, e.g. a double move to two single moves.
25 MoveOperands* Split(MoveOperands* move, MachineRepresentation smaller_rep,
30 const LocationOperand& src_loc = LocationOperand::cast(move->source());
31 const LocationOperand& dst_loc = LocationOperand::cast(move->destination());
65 // Reuse 'move' for the first fragment. It is not pending.
66 move->set_source(AllocatedOperand(src_kind, smaller_rep, src_index));
67 move->set_destination(AllocatedOperand(dst_kind, smaller_rep, dst_index));
76 return move;
82 // Clear redundant moves, and collect FP move representations if aliasin
86 MoveOperands* move = (*moves)[i]; local
106 auto move = (*moves)[i]; local
114 auto move = (*moves)[i]; local
124 auto move = (*moves)[i]; local
    [all...]

Completed in 892 milliseconds

1 2 3 4 5 6 7