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

1 2 3 4 5 6 7 8 9

  /external/libchrome/base/posix/
file_descriptor_shuffle_unittest.cc 20 MOVE,
53 bool Move(int src, int dest) override {
54 actions_.push_back(Action(Action::MOVE, src, dest));
100 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
111 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
112 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
122 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
134 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0));
148 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1));
149 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/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
PayloadAlignmentTest.java 70 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
79 Assert.assertEquals(instruction.getOpcode(), Opcode.MOVE);
94 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
95 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
96 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
105 Opcode.MOVE,
106 Opcode.MOVE,
107 Opcode.MOVE,
120 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0));
121 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0))
    [all...]
  /external/libpng/scripts/
pnglibconf.mak 17 MOVE = mv
39 $(MOVE) pnglibconf.tmp $@
49 $(MOVE) pnglibconf.tmp $@
  /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());
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
GestureSelectionHelperTest.java 45 private static final MotionEvent MOVE = TestEvents.builder()
101 assertTrue(mHelper.onInterceptTouchEvent(null, MOVE));
116 mHelper.onTouchEvent(null, MOVE);
119 mHelper.onTouchEvent(null, MOVE);
  /system/update_engine/payload_consumer/
payload_constants.cc 42 case InstallOperation::MOVE:
43 return "MOVE";
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
GestureSelectionHelperTest.java 49 private static final MotionEvent MOVE = TestEvents.builder()
112 assertTrue(mHelper.onInterceptTouchEvent(null, MOVE));
127 mHelper.onTouchEvent(null, MOVE);
130 mHelper.onTouchEvent(null, MOVE);
  /system/update_engine/scripts/update_payload/
common.py 41 MOVE = _CLASS.MOVE
50 ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF, SOURCE_COPY, SOURCE_BSDIFF, ZERO,
55 MOVE: 'MOVE',
checker_unittest.py 36 'MOVE': common.OpType.MOVE,
421 payload_gen.AddOperation(False, common.OpType.MOVE,
424 payload_gen.AddOperation(True, common.OpType.MOVE,
627 op.type = common.OpType.MOVE
640 op.type = common.OpType.MOVE
654 op.type = common.OpType.MOVE
668 op.type = common.OpType.MOVE
682 op.type = common.OpType.MOVE
703 op.type = common.OpType.MOVE
    [all...]
  /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;
331 case MOVE: return "move";
332 case MOVE_PARAM: return "move-param";
333 case MOVE_EXCEPTION: return "move-exception";
383 case MOVE_RESULT: return "move-result";
384 case MOVE_RESULT_PSEUDO: return "move-result-pseudo";
  /frameworks/base/core/java/com/android/internal/widget/
AdapterHelper.java 106 case UpdateOp.MOVE:
127 // MOVE ops are pre-processed so at this point, we know that item is still in the adapter.
230 if (op.cmd == UpdateOp.ADD || op.cmd == UpdateOp.MOVE) {
231 throw new IllegalArgumentException("should not dispatch add or move for pre layout");
243 // TODO Since move ops are pushed to end, we should not need this anymore
332 if (postponed.cmd == UpdateOp.MOVE) {
349 // op moved to left, move it right to revert
357 // op was moved right, move left to revert
396 if (op.cmd == UpdateOp.MOVE) {
413 if (op.cmd == UpdateOp.MOVE) {
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
AdapterHelper.java 107 case UpdateOp.MOVE:
128 // MOVE ops are pre-processed so at this point, we know that item is still in the adapter.
231 if (op.cmd == UpdateOp.ADD || op.cmd == UpdateOp.MOVE) {
232 throw new IllegalArgumentException("should not dispatch add or move for pre layout");
244 // TODO Since move ops are pushed to end, we should not need this anymore
333 if (postponed.cmd == UpdateOp.MOVE) {
350 // op moved to left, move it right to revert
358 // op was moved right, move left to revert
397 if (op.cmd == UpdateOp.MOVE) {
414 if (op.cmd == UpdateOp.MOVE) {
    [all...]
  /external/skia/src/core/
SkPaint.cpp 91 #define MOVE(field) field = std::move(src.field)
92 MOVE(fTypeface);
93 MOVE(fPathEffect);
94 MOVE(fShader);
95 MOVE(fMaskFilter);
96 MOVE(fColorFilter);
97 MOVE(fDrawLooper);
98 MOVE(fImageFilter);
99 MOVE(fTextSize)
    [all...]
  /external/skqp/src/core/
SkPaint.cpp 91 #define MOVE(field) field = std::move(src.field)
92 MOVE(fTypeface);
93 MOVE(fPathEffect);
94 MOVE(fShader);
95 MOVE(fMaskFilter);
96 MOVE(fColorFilter);
97 MOVE(fDrawLooper);
98 MOVE(fImageFilter);
99 MOVE(fTextSize)
    [all...]
  /system/update_engine/payload_generator/
inplace_generator_unittest.cc 190 graph.back().aop.op.set_type(InstallOperation::MOVE);
213 graph.back().aop.op.set_type(InstallOperation::MOVE);
253 EXPECT_EQ(InstallOperation::MOVE, graph.back().aop.op.type());
310 &graph[0], VectOfExt(0, 1), VectOfExt(1, 1), "", InstallOperation::MOVE);
315 InstallOperation::MOVE);
320 InstallOperation::MOVE);
334 &graph[3], VectOfExt(4, 2), VectOfExt(2, 2), "", InstallOperation::MOVE);
336 &graph[4], VectOfExt(6, 1), VectOfExt(7, 1), "", InstallOperation::MOVE);
341 InstallOperation::MOVE);
346 InstallOperation::MOVE);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 57 NONE, MOVE
131 mState = MODES.MOVE;
136 if (mState == MODES.MOVE) {
146 if (mState == MODES.MOVE) {
277 if (mState == MODES.MOVE || mGridAlpha > 0) {
286 if (alpha == 0 && mState == MODES.MOVE) {
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 182 * @return true if this is a move (but not a move-operand) instruction
186 return insn.getOpcode().getOpcode() == RegOps.MOVE;
235 case RegOps.MOVE:
  /external/curl/docs/cmdline-opts/
request.d 10 DELETE, but related technologies like WebDAV offers PROPFIND, COPY, MOVE and
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
touch_analytics.proto 35 MOVE = 2;

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 9