Searched defs:move (Results 1 - 25 of 154) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/build/mac/
H A DPrefix.h67 const blink::TimerHeapReference& move(const blink::TimerHeapReference& t) function
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp5 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 assignmen
[all...]
/external/javassist/sample/duplicate/
H A DBall.java13 move(x, y);
35 public void move(int x, int y) { method in class:Ball
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestLocation.cpp81 move(offset);
110 void HitTestLocation::move(const LayoutSize& offset) function in class:blink::HitTestLocation
112 m_point.move(offset);
113 m_transformedPoint.move(offset);
114 m_transformedRect.move(offset);
H A DClipRect.h64 void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); } function in class:blink::ClipRect
65 void move(const LayoutSize& size) { m_rect.move(size); } function in class:blink::ClipRect
H A DHitTestRequest.h52 bool move() const { return m_requestType & Move; } function in class:blink::HitTestRequest
63 bool touchMove() const { return move() && touchEvent(); }
H A DRenderOverflow.h53 void move(LayoutUnit dx, LayoutUnit dy);
73 inline void RenderOverflow::move(LayoutUnit dx, LayoutUnit dy) function in class:blink::RenderOverflow
75 m_layoutOverflow.move(dx, dy);
76 m_visualOverflow.move(dx, dy);
77 m_contentsVisualOverflow.move(dx, dy);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DTransformState.cpp65 m_lastPlanarPoint.move(adjustedOffset);
67 m_lastPlanarQuad.move(adjustedOffset);
70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) function in class:blink::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);
H A DFloatPoint.cpp75 void FloatPoint::move(const LayoutSize& size) function in class:blink::FloatPoint
H A DFloatQuad.h113 void move(const FloatSize& offset) function in class:blink::FloatQuad
121 void move(float dx, float dy) function in class:blink::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());
H A DIntPoint.h58 void move(const IntSize& s) { move(s.width(), s.height()); } function in class:blink::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:blink::IntPoint
107 a.move(b.width(), b.height());
113 a.move(-b.width(), -b.height());
H A DRoundedRect.h93 void move(const IntSize& size) { m_rect.move(size); } function in class:blink::RoundedRect
H A DTransformState.h85 void move(LayoutUnit x, LayoutUnit y, TransformAccumulation accumulate = FlattenTransform) function in class:blink::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/
H A Dscm_mock.py107 def move(self, origin, destination): member in class:MockSCM
109 self._filesystem.move(self.absolute_path(origin), self.absolute_path(destination))
/external/chromium_org/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc14 // moves. We don't need access to roots while resolving the move list and using
37 LMoveOperands move = moves_[i]; local
41 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
42 root_index_ = i; // Any cycle is found when by reaching this move again.
70 // moves to perform, ignoring any move that is redundant (the source is
72 // unallocated, or the move was already eliminated).
75 LMoveOperands move = moves->at(i); local
76 if (!move.IsRedundant()) moves_.Add(move, cgen
[all...]
/external/chromium_org/v8/src/mips64/
H A Dlithium-gap-resolver-mips64.cc27 LMoveOperands move = moves_[i]; local
31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
32 root_index_ = i; // Any cycle is found when by reaching this move again.
54 // moves to perform, ignoring any move that is redundant (the source is
56 // unallocated, or the move was already eliminated).
59 LMoveOperands move = moves->at(i); local
60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
67 // Each call to this function performs a move an
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
H A Drval-references-examples.cpp43 template <class T> typename remove_reference<T>::type&& move(T&& t) { function
76 p2 = move(p);
84 accept_unique_ptr(move(p2));
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h62 errcode_t (*move)(ext2_brel brel, blk64_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/elfutils/0.153/libdwfl/
H A Dsegment.c110 const size_t move = dwfl->lookup_elts - i; local
112 move * sizeof dwfl->lookup_addr[0]);
114 move * sizeof dwfl->lookup_segndx[0]);
117 move * sizeof dwfl->lookup_module[0]);
/external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/
H A Dmove.pass.cpp14 // void move(basic_ios&& rhs);
32 void move(std::ios& x) {std::ios::move(x);} function in struct:testios
105 ios1.move(ios2);
/external/aac/libSBRenc/src/
H A Dton_corr.cpp131 INT move = hTonCorr->move; local
162 for(i = 0 ; i < move; i++){
167 FDKmemmove(nrgVector,nrgVector+noEstPerFrame,move*sizeof(FIXP_DBL));
732 hTonCorr->move = hTonCorr->numberOfEstimates - hTonCorr->numberOfEstimatesPerFrame; /* Number of estimates to move when buffering.*/
784 hTonCorr->move,
H A Dton_corr.h124 INT move; /*!< How many estimates to move in the quotaMatrix, when buffering. */ member in struct:__anon270
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_drag_drop_views.cc66 int move = ui::DragDropTypes::DRAG_MOVE; local
69 move = ui::DragDropTypes::DRAG_NONE;
72 return ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK | move;
73 return ui::DragDropTypes::DRAG_COPY | move;
112 // Do a copy instead of a move when dragging bookmarks that the user can't
/external/chromium_org/content/browser/fileapi/
H A Dnative_file_util_unittest.cc285 const NativeFileUtil::CopyOrMoveMode move = NativeFileUtil::MOVE; local
298 from_file, to_file, FileSystemOperation::OPTION_NONE, move));
317 FileSystemOperation::OPTION_NONE, move));
327 FileSystemOperation::OPTION_NONE, move));
332 dir, Path("file"), FileSystemOperation::OPTION_NONE, move));
339 from_file, dir, FileSystemOperation::OPTION_NONE, move));
348 FileSystemOperation::OPTION_NONE, move));
353 FileSystemOperation::OPTION_NONE, move));
396 // Test for move.

Completed in 4503 milliseconds

1234567