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

<<31323334353637383940>>

  /external/chromium/chrome/browser/extensions/
extension_bookmarks_module_constants.cc 21 // TODO(arv): Move bookmark manager related constants out of this file.
42 // TODO(arv): Move bookmark manager related constants out of this file.
  /external/chromium/chrome/browser/ui/views/
pinned_contents_info_bubble.cc 27 true, // Don't move the bubble around if it does not fit on the screen.
30 // Now move the y position to make sure the bubble contents overlap the view.
  /external/chromium_org/chrome_frame/
stream_impl.cc 28 STDMETHODIMP StreamImpl::Seek(LARGE_INTEGER move, DWORD origin,
32 hr = delegate_->Seek(move, origin, new_pos);
  /external/chromium_org/components/autofill/core/browser/
password_autofill_manager.h 9 // chrome/renderer/autofill/password_autofill_manager because as we move to the
11 // Once the move is completed the repeated code in the renderer half should be
  /external/chromium_org/media/base/
byte_queue.cc 53 // The buffer is big enough, but we need to move the data in the queue.
75 // Move the offset back to 0 if we have reached the end of the buffer.
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.h 78 void move(float dx, float dy) function in class:WebCore::FloatPoint
83 void move(const IntSize& a) function in class:WebCore::FloatPoint
88 void move(const LayoutSize&);
89 void move(const FloatSize& a) function in class:WebCore::FloatPoint
146 // FIXME: These are only used by SVGPoint and should probably move there.
158 a.move(b.width(), b.height());
164 a.move(b.x(), b.y());
170 a.move(-b.width(), -b.height());
  /external/chromium_org/ui/base/test/
ui_controls_aura.h 35 // Simulate a mouse move. (x,y) are absolute screen coordinates.
42 // the cursor currently is, so be sure to move the cursor before calling this
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 3 // Tests for implicit (non-)declaration of move constructor and
6 // This class, used as a member, allows to distinguish move from copy because
7 // move operations are no-throw, copy operations aren't.
31 HasMoveConstructor(HasMoveConstructor &&) noexcept; // expected-note {{copy assignment operator is implicitly deleted because 'HasMoveConstructor' has a user-declared move constructor}}
194 // the declaration of a move operation.
204 // A non-trivially-move-assignable virtual base class inhibits the declaration
205 // of a move assignment (which might move-assign the base class multiple
  /external/e2fsprogs/tests/progs/
test_rel_cmds.ct 32 request do_brel_move, "Move an entry in the block relocation table",
76 request do_irel_move, "Move an entry in the inode relocation table",
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
EmitterMeshConvexHullShape.java 41 // now move the point from the meshe's face towards the center of the mesh
59 // now move the point from the meshe's face towards the center of the mesh
  /external/llvm/docs/HistoricalNotes/
2001-07-06-LoweringIRForCodeGen.txt 8 move-conditional instruction. I don't think we want to put that in the core
10 conditional move instruction in the VM, it is pretty difficult to maintain a
  /external/llvm/test/Transforms/Reassociate/
no-op.ll 9 ; Shouldn't change or move any of the add instructions. Should commute but
10 ; otherwise not change or move any of the mul instructions.
  /external/smali/examples/AnnotationValues/
Enum.smali 39 move-result-object v1
49 move-result-object v0
  /external/srtp/
TODO 7 - move HAVE_U_LONG_LONG inside of datatypes.c, or some other
18 - move octet_get_weight() from datatypes.c to math.c (any other
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_alloc.pass.cpp 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_alloc.pass.cpp 28 test(container_type&& c, const test_allocator<int>& a) : base(std::move(c), a) {}
29 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.assign/
move_assign.pass.cpp 26 fs = move(fso);
34 fs = move(fso);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.cons/
move.pass.cpp 25 std::ifstream fs = move(fso);
32 std::wifstream fs = move(fso);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/
move_assign.pass.cpp 28 fs = move(fso);
41 fs = move(fso);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 27 std::ofstream fs = move(fso);
39 std::wofstream fs = move(fso);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/istringstream.assign/
move.pass.cpp 26 ss = std::move(ss0);
39 ss = std::move(ss0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/istringstream/istringstream.cons/
move.pass.cpp 25 std::istringstream ss(std::move(ss0));
37 std::wistringstream ss(std::move(ss0));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.assign/
move.pass.cpp 26 ss = std::move(ss0);
37 ss = std::move(ss0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/ostringstream/ostringstream.cons/
move.pass.cpp 25 std::ostringstream ss(std::move(ss0));
35 std::wostringstream ss(std::move(ss0));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
assign_move.pass.cpp 34 p = std::move(p0);
44 p = std::move(p0);

Completed in 3013 milliseconds

<<31323334353637383940>>