HomeSort by relevance Sort by last modified time
    Searched refs:MOVE (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium/base/
file_descriptor_shuffle_unittest.cc 23 MOVE,
56 bool Move(int src, int dest) {
57 actions_.push_back(Action(Action::MOVE, src, dest));
105 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
116 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
117 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
127 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
139 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0));
153 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1));
154 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0))
    [all...]
  /packages/experimental/Bummer/src/com/android/dreams/bummer/
BummerView.java 28 public static final int MOVE = 2;
39 case MOVE:
65 removeMessages(MOVE);
66 sendEmptyMessageDelayed(MOVE, mDelay);
97 mHandler.removeMessages(MOVE);
Bummer.java 26 public static final int MOVE = 1;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
BummerView.java 28 public static final int MOVE = 2;
39 case MOVE:
65 removeMessages(MOVE);
66 sendEmptyMessageDelayed(MOVE, mDelay);
97 mHandler.removeMessages(MOVE);
  /development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/
PathPoint.java 27 * The possible path operations that describe how to move from a preceding PathPoint to the
30 public static final int MOVE = 0;
51 * to the location of this PathPoint. This can be one of MOVE, LINE, or CURVE.
58 * Line/Move constructor
95 * Constructs and returns a PathPoint object that describes a discontinuous move to the given
99 return new PathPoint(MOVE, x, y);
  /external/replicaisland/src/com/replica/replicaisland/
GenericAnimationComponent.java 45 case MOVE:
46 mSprite.playAnimation(Animation.MOVE);
78 public static final int MOVE = 1;
EnemyAnimationComponent.java 22 * state. Other code (such as enemy AI) may move these characters around and change the current
30 MOVE,
87 mSprite.playAnimation(EnemyAnimations.MOVE.ordinal());
AnimationComponent.java 32 MOVE,
205 if (currentAction == ActionType.MOVE) {
222 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal());
254 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal());
NPCAnimationComponent.java 192 if (currentAction == ActionType.MOVE) {
218 if (currentAction == ActionType.MOVE) {
255 if (currentAction == ActionType.MOVE) {
320 if (currentAction == ActionType.MOVE) {
PatrolComponent.java 74 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
89 if (parentObject.getCurrentAction() == GameObject.ActionType.MOVE
215 if (visible && parentObject.getCurrentAction() == GameObject.ActionType.MOVE) {
248 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
SleeperComponent.java 23 * hiding and appearing based on their distance from the player. They do not move or normally
72 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
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) {
NPCComponent.java 150 parentObject.setCurrentAction(ActionType.MOVE);
169 parentObject.setCurrentAction(ActionType.MOVE);
205 parentObject.setCurrentAction(ActionType.MOVE);
257 parentObject.setCurrentAction(ActionType.MOVE);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 36 public static final int MOVE = 2;
315 case MOVE: return "move";
316 case MOVE_PARAM: return "move-param";
317 case MOVE_EXCEPTION: return "move-exception";
367 case MOVE_RESULT: return "move-result";
368 case MOVE_RESULT_PSEUDO: return "move-result-pseudo";
  /dalvik/dx/src/com/android/dx/rop/code/
RegOps.java 36 public static final int MOVE = 2;
315 case MOVE: return "move";
316 case MOVE_PARAM: return "move-param";
317 case MOVE_EXCEPTION: return "move-exception";
367 case MOVE_RESULT: return "move-result";
368 case MOVE_RESULT_PSEUDO: return "move-result-pseudo";
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegOps.java 36 public static final int MOVE = 2;
315 case MOVE: return "move";
316 case MOVE_PARAM: return "move-param";
317 case MOVE_EXCEPTION: return "move-exception";
367 case MOVE_RESULT: return "move-result";
368 case MOVE_RESULT_PSEUDO: return "move-result-pseudo";
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 176 * @return true if this is a move (but not a move-operand) instruction
180 return insn.getOpcode().getOpcode() == RegOps.MOVE;
229 case RegOps.MOVE:
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
NormalSsaInsn.java 176 * @return true if this is a move (but not a move-operand) instruction
180 return insn.getOpcode().getOpcode() == RegOps.MOVE;
229 case RegOps.MOVE:
  /external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
build.com 15 $! we start from [.MISC.VMS], then move to the main source directory
65 $ MOVE = "rename_/New_Vers"
95 $ 'MOVE' y_tab.h parse.h
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
TouchEvent.java 47 * Move/Drag event, fields: posX, posY, deltaX, deltaY, pressure
49 MOVE,
85 * The user has performed a down MotionEvent and not performed a move or up yet. This event is commonly used to provide visual feedback to the user to let them know that their action has been recognized i.e. highlight an element.
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropView.java 78 NONE, MOVE
147 mState = Mode.MOVE;
151 if (mState == Mode.MOVE) {
160 if (mState == Mode.MOVE) {
  /external/chromium/chrome/browser/sync/glue/
bookmark_change_processor.h 109 MOVE,
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 46 public static final int MOVE = (1 << 5);
206 retval = MOVE;
232 // Not near any edge but inside the rectangle: move.
234 retval = MOVE;
246 } else if (edge == MOVE) {
392 enum ModifyMode { None, Move, Grow }
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 117 if (mMode == MODES.MOVE) {
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLViewTest.java 347 int MOVE = MotionEvent.ACTION_MOVE;
371 a.dispatchTouchEvent(NewMotionEvent(MOVE, 250, 0));
373 a.dispatchTouchEvent(NewMotionEvent(MOVE, 50, 0));

Completed in 1253 milliseconds

1 2 3