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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPoint.cpp 75 void FloatPoint::move(const LayoutSize& size) function in class:WebCore::FloatPoint
FloatQuad.h 113 void move(const FloatSize& offset) function in class:WebCore::FloatQuad
121 void move(float dx, float dy) function in class:WebCore::FloatQuad
123 m_p1.move(dx, dy);
124 m_p2.move(dx, dy);
125 m_p3.move(dx, dy);
126 m_p4.move(dx, dy);
150 a.move(b);
156 a.move(-b.width(), -b.height());
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());
TransformState.h 85 void move(LayoutUnit x, LayoutUnit y, TransformAccumulation accumulate = FlattenTransform) function in class:WebCore::TransformState
87 move(LayoutSize(x, y), accumulate);
90 void move(const LayoutSize&, TransformAccumulation = FlattenTransform);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_mock.py 107 def move(self, origin, destination): member in class:MockSCM
109 self._filesystem.move(self.absolute_path(origin), self.absolute_path(destination))
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystem.h 85 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebFileSystem
  /external/chromium_org/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, cgen_->zone());
89 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/chromium_org/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, cgen_->zone());
90 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/chromium_org/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, cgen_->zone());
84 // Each call to this function performs a move and deletes it from the move
    [all...]
  /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...]
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 34 inline void move(NodeBase *&X) function in namespace:mcld::proxy
70 inline void move() { function in class:mcld::TreeIteratorBase
71 proxy::move<DIRECT>(m_pNode);
93 inline void move<TreeIteratorBase::Leftward>(NodeBase *&X) function in namespace:mcld::proxy
97 inline void move<TreeIteratorBase::Rightward>(NodeBase *&X) function in namespace:mcld::proxy
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DragGestureDetector.java 84 move(event, false); method
91 move(event, true); method
104 private void move(MotionEvent event, boolean drop) { method in class:DragGestureDetector
105 mTable.move(mTable.getFocus(),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
char_traits.h 120 move(char_type* __s1, const char_type* __s2, std::size_t __n);
187 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
270 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
341 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
434 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
527 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
char_traits.h 115 move(char_type* __s1, const char_type* __s2, std::size_t __n);
182 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
268 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
339 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
435 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
528 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
char_traits.h 115 move(char_type* __s1, const char_type* __s2, std::size_t __n);
182 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
268 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
339 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
435 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
528 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 120 move(char_type* __s1, const char_type* __s2, std::size_t __n);
187 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
270 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
341 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
434 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
527 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 120 move(char_type* __s1, const char_type* __s2, std::size_t __n);
187 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
270 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
341 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
434 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
527 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 120 move(char_type* __s1, const char_type* __s2, std::size_t __n);
187 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
270 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
341 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
434 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
527 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
char_traits.h 120 move(char_type* __s1, const char_type* __s2, std::size_t __n);
187 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
270 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
341 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
434 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
527 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
char_traits.h 115 move(char_type* __s1, const char_type* __s2, std::size_t __n);
182 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
268 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
339 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
435 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
528 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
char_traits.h 115 move(char_type* __s1, const char_type* __s2, std::size_t __n);
182 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
268 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
339 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
435 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
528 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
shared_ptr.h 166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
222 * @brief Move-constructs a %shared_ptr instance from @a __r.
227 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
230 * @brief Move-constructs a %shared_ptr instance from @a __r.
237 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
254 : __shared_ptr<_Tp>(std::move(__r)) { }
259 : __shared_ptr<_Tp>(std::move(__r)) { }
284 this->__shared_ptr<_Tp>::operator=(std::move(__r));
292 this->__shared_ptr<_Tp>::operator=(std::move(__r))
    [all...]

Completed in 227 milliseconds

12 3 4 5 6 7 8 91011>>