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

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/d/
T_move_1.java 17 package dot.junit.opcodes.move.d;
  /external/chromium_org/third_party/WebKit/Source/core/
WebCorePrefixMac.h 67 const WebCore::TimerHeapReference& move(const WebCore::TimerHeapReference& t) function
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestLocation.cpp 93 move(offset);
124 void HitTestLocation::move(const LayoutSize& offset) function in class:WebCore::HitTestLocation
126 m_point.move(offset);
127 m_transformedPoint.move(offset);
128 m_transformedRect.move(offset);
  /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/5/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/6/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/7/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/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
move.h 0 // Move, forward and identity for C++0x + swap -*- C++ -*-
25 /** @file move.h
42 // 20.2.2, forward/move
74 move(_Tp&& __t) function
83 #define _GLIBCXX_MOVE(_Tp) std::move(_Tp)
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/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/9/sources/cxx-stl/gnu-libstdc++/4.6/include/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)
  /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/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_drag_drop_views.cc 58 int move = ui::DragDropTypes::DRAG_MOVE; local
60 move = ui::DragDropTypes::DRAG_NONE;
62 return ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK | move;
63 return ui::DragDropTypes::DRAG_COPY | move;
92 // User is dragging from this profile: move.
  /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/javassist/sample/duplicate/
Ball.java 13 move(x, y); method
35 public void move(int x, int y) { method in class:Ball
  /frameworks/native/libs/input/
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/chromium_org/third_party/WebKit/Source/platform/geometry/
TransformState.cpp 65 m_lastPlanarPoint.move(adjustedOffset);
67 m_lastPlanarQuad.move(adjustedOffset);
70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) function in class:WebCore::TransformState
84 // Just move the point and/or quad.
117 move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate);
162 point.move((m_direction == ApplyTransformDirection) ? m_accumulatedOffset : -m_accumulatedOffset);
178 quad.move((m_direction == ApplyTransformDirection) ? m_accumulatedOffset : -m_accumulatedOffset);
  /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));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
move.pass.cpp 14 // void move(basic_ios&& rhs);
32 void move(std::ios& x) {std::ios::move(x);} function in struct:testios
105 ios1.move(ios2);
  /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
249 $(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

Completed in 512 milliseconds

1 2 3 4 5 6 7 8 91011>>