HomeSort by relevance Sort by last modified time
    Searched full:move (Results 826 - 850 of 10530) sorted by null

<<31323334353637383940>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
ctor_move.pass.cpp 33 std::packaged_task<double(int, char)> p = std::move(p0);
42 std::packaged_task<double(int, char)> p = std::move(p0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move04.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from const lvalue
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move01.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from lvalue
move02.fail.cpp 14 // Test unique_ptr move ctor
16 // test move ctor. Can't copy from const lvalue
move03.fail.cpp 14 // Test unique_ptr move ctor
16 // test move ctor. Can't copy from lvalue
move04.fail.cpp 14 // Test unique_ptr move ctor
16 // test move ctor. Can't copy from const lvalue
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.asgn/
move04.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from const lvalue
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move01.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from lvalue
move02.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from const lvalue
move03.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from lvalue
move04.fail.cpp 14 // Test unique_ptr move ctor
19 // test move ctor. Can't copy from const lvalue
move_convert05.fail.cpp 14 // Test unique_ptr converting move ctor
21 // test converting move ctor. Should only require a MoveConstructible deleter, or if
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/
move_only.pass.cpp 10 // test move
47 test(std::move(mo));
move_only3.fail.cpp 10 // test move
48 test(std::move(ca));
  /dalvik/vm/compiler/template/out/
CompilerTemplateAsm-mips.S 339 #define MOVE_REG(dest,src) move dest, src
350 #define JAL(func) move rTEMP, ra; \
352 move ra, rTEMP
354 #define JALR(reg) move rTEMP, ra; \
356 move ra, rTEMP
482 move a0, rSELF
500 move t2, zero # disable chaining
514 move rFP, t0 # publish new FP
541 move a0, rSELF # Expecting rSELF in a0
560 move a3, a1 # a3<- returnCel
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 105 * move-param (ie, this is a method parameter).
123 * Inserts a move instruction for a specified SSA register before a
128 * @param insn {@code non-null;} insn to insert move before, must
131 * @return {@code non-null;} spec of new SSA register created by move
151 "Adding move here not supported:" + insn.toHuman());
155 * Get new register and make new move instruction.
  /dalvik/dx/tests/091-ssa-const-collector/
expected.txt 11 Blort.java:2@0000: move-param-object(0) v0:"this"NffffLBlort; <- .
68 Blort.java:10@0000: move-param-object(0) v4:"this"LBlort; <- .
161 Blort.java:22@0000: move-param-object(0) v2:"this"LBlort; <- .
170 Blort.java:22@0000: Rop{move-result-pseudo N0000Ljava/lang/StringBuilder; <-
176 Blort.java:24@0009: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1:
182 Blort.java:25@0010: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1:
188 Blort.java:26@0017: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1:
194 Blort.java:27@001e: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1:
200 Blort.java:28@0025: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1:
206 Blort.java:29@002c: Rop{move-result-pseudo Ljava/lang/String; <- . flows} v1
    [all...]
  /external/chromium_org/chrome/installer/util/
delete_tree_work_item.cc 49 // We first try to move key_path_ to backup_path. If it succeeds, we go ahead
50 // and move the rest.
138 // If there are files in backup paths move them back.
147 base::Move(backup, root_path_);
157 !base::Move(backup_file, key_file)) {
159 PLOG(WARNING) << "Rollback: Failed to move backup file back in place: "
  /external/chromium_org/ppapi/c/documentation/
doxy_cleanup.py 81 # Now move the <h2> tag to be in front of the <table> tag
110 parser.add_option('-m', '--move', dest='move', action='store_true',
111 default=False, help='move html files to "original_html"')
129 if options.move:
134 shutil.move(filename, new_directory)
  /external/chromium_org/ppapi/cpp/documentation/
doxy_cleanup.py 80 # Now move the <h2> tag to be in front of the <table> tag
109 parser.add_option('-m', '--move', dest='move', action='store_true',
110 default=False, help='move html files to "original_html"')
128 if options.move:
133 shutil.move(filename, new_directory)
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntPoint.h 58 void move(const IntSize& s) { move(s.width(), s.height()); } function in class:WebCore::IntPoint
59 void moveBy(const IntPoint& offset) { move(offset.x(), offset.y()); }
60 void move(int dx, int dy) { m_x += dx; m_y += dy; } function in class:WebCore::IntPoint
107 a.move(b.width(), b.height());
113 a.move(-b.width(), -b.height());
LayoutPoint.h 56 void move(const LayoutSize& s) { move(s.width(), s.height()); } function in class:WebCore::LayoutPoint
57 void moveBy(const LayoutPoint& offset) { move(offset.x(), offset.y()); }
58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; } function in class:WebCore::LayoutPoint
91 a.move(b.width(), b.height());
97 a.move(-b.width(), -b.height());
  /external/clang/test/CXX/special/class.copy/
p25-0x.cpp 23 // A copy/move assignment operator for class X is trivial if it is not user-provided,
46 // and the assignment operator selected to copy/move each [direct subobject] is trivial
136 // Both of these call the non-trivial move operation.
183 // NoAccess's move would be deleted, so is suppressed,
194 // NoAccess's move would *not* be deleted, so is *not* suppressed,
195 // so moves of it use PrivateMove's move ctor, which is not trivial.
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
RegisterAllocator.java 107 * move-param (ie, this is a method parameter).
125 * Inserts a move instruction for a specified SSA register before a
130 * @param insn {@code non-null;} insn to insert move before, must
133 * @return {@code non-null;} spec of new SSA register created by move
153 "Adding move here not supported:" + insn.toHuman());
157 * Get new register and make new move instruction.
  /external/jmonkeyengine/engine/src/test/jme3test/input/
TestCameraNode.java 90 //setting the local translation of the cam node to move it away from the teanNode a bit
114 //computing the normalized direction of the cam to move the teaNode
118 teaNode.move(direction);
122 teaNode.move(direction);
126 teaNode.move(direction);
130 teaNode.move(direction);

Completed in 970 milliseconds

<<31323334353637383940>>