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

1 2 3 4 5 6 7 8

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/d/
T_move_1.java 17 package dot.junit.opcodes.move.d;
  /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 {{an explicitly-defaulted move assignment operator must return an unqualified lvalue reference to its class type}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{an explicitly-defaulted move assignment operator must return an unqualified lvalue reference to its class type}}
25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
  /external/webkit/Source/WebCore/rendering/
TransformState.cpp 31 void TransformState::move(int x, int y, TransformAccumulation accumulate) function in class:WebCore::TransformState
44 // Just move the point and, optionally, the quad.
45 m_lastPlanarPoint.move(x, y);
47 m_lastPlanarQuad.move(x, y);
TransformState.h 57 void move(const IntSize& s, TransformAccumulation accumulate = FlattenTransform) function in class:WebCore::TransformState
59 move(s.width(), s.height(), accumulate);
62 void move(int x, int y, TransformAccumulation = FlattenTransform);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file move.h
42 // 20.2.2, forward/move
56 move(_Tp&& __t) function
61 #define _GLIBCXX_MOVE(_Tp) std::move(_Tp)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file bits/move.h
75 * @brief Move a value.
82 move(_Tp&& __t) function
102 #define _GLIBCXX_MOVE(__val) std::move(__val)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file bits/move.h
75 * @brief Move a value.
82 move(_Tp&& __t) function
102 #define _GLIBCXX_MOVE(__val) std::move(__val)
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file move.h
42 // 20.2.2, forward/move
56 move(_Tp&& __t) function
61 #define _GLIBCXX_MOVE(_Tp) std::move(_Tp)
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file move.h
42 // 20.2.2, forward/move
56 move(_Tp&& __t) function
61 #define _GLIBCXX_MOVE(_Tp) std::move(_Tp)
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file move.h
42 // 20.2.2, forward/move
56 move(_Tp&& __t) function
61 #define _GLIBCXX_MOVE(_Tp) std::move(_Tp)
  /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
38 Class.forName("dot.junit.opcodes.move.d.T_move_2");
51 Class.forName("dot.junit.opcodes.move.d.T_move_3");
64 Class.forName("dot.junit.opcodes.move.d.T_move_4");
77 Class.forName("dot.junit.opcodes.move.d.T_move_5");
90 Class.forName("dot.junit.opcodes.move.d.T_move_6");
105 Class.forName("dot.junit.opcodes.move.d.T_move_7");
  /external/javassist/sample/duplicate/
Ball.java 13 move(x, y); method
35 public void move(int x, int y) { method in class:Ball
  /external/webkit/Source/WebCore/html/
DataGridColumnList.cpp 94 void DataGridColumnList::move(DataGridColumn* col, unsigned long index) function in class:WebCore::DataGridColumnList
  /frameworks/base/libs/androidfw/
VelocityControl.cpp 52 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
FileStoreAdapter.java 128 public void move(IFileStore destination, int options, IProgressMonitor monitor) method in class:FileStoreAdapter
130 mStore.move(destination, options, monitor);
  /external/astl/include/
char_traits.h 72 static char* move(char* lhs, const char* rhs, size_t n) function in struct:std::char_traits
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 30 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } function
36 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));
  /build/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
251 $(call move-var-list,$(_node_import_context).$(_in),$(1).$(_in),$(3)) \
  /external/chromium/base/
string16.h 97 static char_type* move(char_type* s1, const char_type* s2, int_type n) { function in struct:base::string16_char_traits
  /external/chromium/googleurl/base/
string16.h 110 static char_type* move(char_type* s1, const char_type* s2, int_type n) { function in struct:base::string16_char_traits
  /external/e2fsprogs/lib/ext2fs/
brel.h 59 * Move the inode relocation table from one block number to
62 errcode_t (*move)(ext2_brel brel, blk_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/v8/src/arm/
lithium-gap-resolver-arm.cc 49 LMoveOperands move = moves_[i]; local
53 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
54 root_index_ = i; // Any cycle is found when by reaching this move again.
76 // moves to perform, ignoring any move that is redundant (the source is
78 // unallocated, or the move was already eliminated).
81 LMoveOperands move = moves->at(i); local
82 if (!move.IsRedundant()) moves_.Add(move);
89 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/mips/
lithium-gap-resolver-mips.cc 50 LMoveOperands move = moves_[i]; local
54 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
55 root_index_ = i; // Any cycle is found when by reaching this move again.
77 // moves to perform, ignoring any move that is redundant (the source is
79 // unallocated, or the move was already eliminated).
82 LMoveOperands move = moves->at(i); local
83 if (!move.IsRedundant()) moves_.Add(move);
90 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.cc 48 LMoveOperands move = moves_[i]; local
52 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
71 // moves to perform, ignoring any move that is redundant (the source is
73 // unallocated, or the move was already eliminated).
76 LMoveOperands move = moves->at(i); local
77 if (!move.IsRedundant()) moves_.Add(move);
84 // Each call to this function performs a move and deletes it from the move
    [all...]

Completed in 1364 milliseconds

1 2 3 4 5 6 7 8