HomeSort by relevance Sort by last modified time
    Searched defs:move (Results 76 - 100 of 141) sorted by null

1 2 34 5 6

  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.cc 225 int move = ui::DragDropTypes::DRAG_MOVE; local
227 move = 0;
229 return ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK | move;
231 return ui::DragDropTypes::DRAG_COPY | move;
248 // User is dragging from this profile: move.
266 // Drag from same profile. Move nodes.
268 model->Move(dragged_nodes[i], parent_node, index);
600 model->Move(node, new_parent, new_parent->child_count());
  /external/clang/include/clang/Sema/
Ownership.h 117 // -------------------------- About Move Emulation -------------------------- //
118 // The smart pointer classes in this file attempt to emulate move semantics
121 // Move semantics in C++0x have the following properties:
129 // * By explicitly using std::move() to request it.
135 // explicit std::move(), or on function return. Moving from a temporary should
139 // * move() is not in namespace std.
140 // * move() is required on function return.
145 // The move emulation relies on the peculiar reference binding semantics of
163 // performs the actual move operation. There is an equivalent assignment
165 // There is also a free move() function that takes a non-const reference t
407 inline ActionResult<T,C> move(ActionResult<T,C> &ptr) { function in namespace:clang
412 ASTMultiPtr<T>& move(ASTMultiPtr<T> &ptr) { function in namespace:clang
441 inline Expr *move(Expr *E) { return E; } function in namespace:clang
442 inline Stmt *move(Stmt *S) { return S; } function in namespace:clang
    [all...]
  /external/quake/quake/src/QW/server/
sv_phys.c 27 pushmove objects do not obey gravity, and do not interact with each other or trigger fields, but block normal movement and push normal objects when they move.
428 qboolean SV_Push (edict_t *pusher, vec3_t move)
440 mins[i] = pusher->v.absmin[i] + move[i];
441 maxs[i] = pusher->v.absmax[i] + move[i];
446 // move the pusher to it's final position
448 VectorAdd (pusher->v.origin, move, pusher->v.origin);
491 VectorAdd (check->v.origin, move, check->v.origin);
500 VectorSubtract (check->v.origin, move, check->v.origin);
534 // move back any entities we already moved
555 vec3_t move; local
582 vec3_t oldorg, move; local
715 vec3_t move; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 118 static void move(const T* src, const T* srcEnd, T* dst) function in struct:WTF::VectorMover
134 move(src, srcEnd, dst);
150 static void move(const T* src, const T* srcEnd, T* dst) function in struct:WTF::VectorMover
247 static void move(const T* src, const T* srcEnd, T* dst) function in struct:WTF::VectorTypeOperations
249 VectorMover<VectorTraits<T>::canMoveWithMemcpy, T>::move(src, srcEnd, dst);
884 TypeOperations::move(oldBuffer, oldEnd, begin());
898 TypeOperations::move(oldBuffer, oldEnd, begin());
926 TypeOperations::move(oldBuffer, oldEnd, begin());
    [all...]
HashTable.h 276 template<typename T> struct Mover<T, true> { static void move(T& from, T& to) { hashTableSwap(from, to); } }; function in struct:WTF::Mover
277 template<typename T> struct Mover<T, false> { static void move(T& from, T& to) { to = from; } }; function in struct:WTF::Mover
768 Mover<ValueType, Traits::needsDestruction>::move(entry, *lookupForWriting(Extractor::extract(entry)).first);
    [all...]
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 316 move(chars.length, index); method
327 move(length, index); method
344 move(1, index);
356 move(min, index); method
384 private void move(int size, int index) { method in class:AbstractStringBuilder
429 move(-diff, end);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragView.java 212 * Move the window containing this view.
217 void move(int touchX, int touchY) { method in class:DragView
  /external/bluetooth/glib/gio/
gfile.h 122 * @move: Moves a file.
124 * @_move_finish: Finishes an asynchronous move operation.
378 gboolean (* move) (GFile *source, member in struct:_GFileIface
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp 77 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ function in class:SCharacterIterator
773 // move both iter and s[index]
816 c=(UChar32)iter->move(iter, 2, UITER_CURRENT);
817 c2=(UChar32)ci.move(2, CharacterIterator::kCurrent);
822 c=(UChar32)iter->move(iter, -2, UITER_CURRENT);
823 c2=(UChar32)ci.move(-2, CharacterIterator::kCurrent);
829 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
867 // test move & getIndex some more
880 if( sIter.move(&sIter, 4, UITER_ZERO)!=4 ||
881 sIter.move(&sIter, 1, UITER_START)!=3 |
1113 virtual int32_t move(int32_t \/*delta*\/, EOrigin \/*origin*\/) { function in class:SubCharIter
    [all...]
tstnorm.cpp 646 // move around and compare the iteration code points with
648 const char *move=moves; local
649 while((m=*move++)!=0) {
663 // copy the moves until the current (m) move, and terminate
666 history[move-moves]=0;
675 // copy the moves until the current (m) move, and terminate
678 history[move-moves]=0;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysevents.c 582 int move = (short)HIWORD(wParam); local
583 if ( move ) {
585 if ( move > 0 )
  /external/quake/quake/src/QW/client/
view.c 27 The view is allowed to move slightly from it's true position for bobbing,
190 float delta, move; local
222 move = host_frametime * cl.pitchvel;
225 //Con_Printf ("move: %f (%f)\n", move, host_frametime);
229 if (move > delta)
232 move = delta;
234 cl.viewangles[PITCH] += move;
238 if (move > -delta)
241 move = -delta
724 float yaw, pitch, move; local
    [all...]
  /external/quake/quake/src/WinQuake/
sv_phys.cpp 27 pushmove objects do not obey gravity, and do not interact with each other or trigger fields, but block normal movement and push normal objects when they move.
443 vec3_t mins, maxs, move; local
457 move[i] = pusher->u.v.velocity[i] * movetime;
458 mins[i] = pusher->u.v.absmin[i] + move[i];
459 maxs[i] = pusher->u.v.absmax[i] + move[i];
464 // move the pusher to it's final position
466 VectorAdd (pusher->u.v.origin, move, pusher->u.v.origin);
514 SV_PushEntity (check, move);
520 { // fail the move
546 // move back any entities we already move
570 vec3_t move, a, amove; local
1248 vec3_t move; local
1572 vec3_t move; local
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerX86Common.h 147 move(op2, dest);
154 move(src, dest);
179 move(src, dest);
191 move(src, dest);
262 move(op2, dest);
269 move(src, dest);
294 move(src, dest);
306 move(src, dest);
331 move(src, dest);
343 move(src, dest)
709 void move(TrustedImm32 imm, RegisterID dest) function in class:JSC::MacroAssemblerX86Common
720 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerX86Common
728 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerX86Common
749 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerX86Common
755 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerX86Common
    [all...]
MacroAssemblerARM.h 138 move(src, ARMRegisters::S0);
146 move(imm, ARMRegisters::S0);
311 move(imm, ARMRegisters::S1);
349 move(imm, ARMRegisters::S0);
353 void move(TrustedImm32 imm, RegisterID dest) function in class:JSC::MacroAssemblerARM
361 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerARM
366 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerARM
368 move(TrustedImm32(imm), dest);
381 move(src, dest);
387 move(src, dest)
    [all...]
MacroAssemblerARMv7.h 162 move(imm, dataTempRegister);
177 move(imm, addressTempRegister);
200 move(imm, addressTempRegister);
218 move(imm, dataTempRegister);
250 move(imm, dataTempRegister);
275 move(imm, dataTempRegister);
321 move(imm, dataTempRegister);
336 move(imm, addressTempRegister);
359 move(imm, addressTempRegister);
377 move(imm, dataTempRegister)
761 void move(TrustedImm32 imm, RegisterID dest) function in class:JSC::MacroAssemblerARMv7
782 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerARMv7
787 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerARMv7
    [all...]
MacroAssemblerMIPS.h 125 move(imm, immTempRegister);
147 move(imm, immTempRegister);
169 move(imm, immTempRegister);
219 move(TrustedImmPtr(address.m_ptr), addrTempRegister);
225 move(imm, immTempRegister);
239 move(MIPSRegisters::zero, dest);
248 move(imm, immTempRegister);
271 move(MIPSRegisters::zero, dest);
273 move(src, dest);
279 move(imm, dataTempRegister)
844 void move(TrustedImm32 imm, RegisterID dest) function in class:JSC::MacroAssemblerMIPS
855 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerMIPS
861 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerMIPS
    [all...]
MacroAssemblerSH4.h 186 move(imm, scr);
188 move(src, dest);
500 move(address.index, scr);
622 move(address.index, scr);
692 move(address.index, scr);
850 move(address.index, scr);
861 move(TrustedImm32(16), scr);
1184 void move(TrustedImm32 imm, RegisterID dest) function in class:JSC::MacroAssemblerSH4
1196 void move(RegisterID src, RegisterID dest) function in class:JSC::MacroAssemblerSH4
1201 void move(TrustedImmPtr imm, RegisterID dest) function in class:JSC::MacroAssemblerSH4
    [all...]
  /frameworks/base/core/java/android/database/
AbstractCursor.java 118 * may have. If it returns false the move function will also do so and the
123 * @return true if the move is successful, false otherwise
196 public final boolean move(int offset) { method in class:AbstractCursor
  /frameworks/base/libs/ui/
Input.cpp 1115 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
EventSenderImpl.java 109 public void move(Point point) { method in class:EventSenderImpl.TouchPoint
245 getTouchPoints().get(index).move(
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 267 public boolean move(int offset) { method in class:SuggestionsProvider.SuggestionsCursor
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesf.h 212 // Move the field to a new position
213 inline void move(int row, int col) { function in class:NCursesFormField
  /external/replicaisland/src/com/replica/replicaisland/
PlayerComponent.java 55 MOVE,
100 mState = State.MOVE;
118 protected void move(float time, float timeDelta, GameObject parentObject) { method in class:PlayerComponent
173 // Don't let our jets move us past specific speed thresholds.
293 case MOVE:
327 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
328 mState = State.MOVE;
333 move(time, timeDelta, parentObject); method
509 if (parentObject.getCurrentAction() == ActionType.MOVE) {
  /external/webkit/Source/WebCore/css/
CSSSelector.h 357 inline void move(PassOwnPtr<CSSSelector> from, CSSSelector* to) function in namespace:WebCore

Completed in 3852 milliseconds

1 2 34 5 6