/external/chromium_org/base/posix/ |
D | file_descriptor_shuffle_unittest.cc | 20 MOVE, enumerator 54 actions_.push_back(Action(Action::MOVE, src, dest)); in Move() 102 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); in TEST() 113 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); in TEST() 114 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3)); in TEST() 124 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1)); in TEST() 136 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0)); in TEST() 150 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1)); in TEST() 151 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0)); in TEST() 165 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1)); in TEST() [all …]
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/ |
D | PayloadAlignmentTest.java | 70 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentAddNop() 79 Assert.assertEquals(instruction.getOpcode(), Opcode.MOVE); in testPayloadAlignmentAddNop() 94 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentRemoveNopWithReferent() 95 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentRemoveNopWithReferent() 96 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentRemoveNopWithReferent() 105 Opcode.MOVE, in testPayloadAlignmentRemoveNopWithReferent() 106 Opcode.MOVE, in testPayloadAlignmentRemoveNopWithReferent() 107 Opcode.MOVE, in testPayloadAlignmentRemoveNopWithReferent() 120 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentAddNopWithReferent() 121 implBuilder.addInstruction(new BuilderInstruction12x(Opcode.MOVE, 0, 0)); in testPayloadAlignmentAddNopWithReferent() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | GenericAnimationComponent.java | 45 case MOVE: in update() 46 mSprite.playAnimation(Animation.MOVE); in update() 78 public static final int MOVE = 1; field in GenericAnimationComponent.Animation
|
D | PatrolComponent.java | 74 parentObject.setCurrentAction(GameObject.ActionType.MOVE); in update() 89 if (parentObject.getCurrentAction() == GameObject.ActionType.MOVE in update() 215 if (visible && parentObject.getCurrentAction() == GameObject.ActionType.MOVE) { in updateAttack() 248 parentObject.setCurrentAction(GameObject.ActionType.MOVE); in updateAttack()
|
D | NPCAnimationComponent.java | 192 if (currentAction == ActionType.MOVE) { in idle() 218 if (currentAction == ActionType.MOVE) { in walk() 255 if (currentAction == ActionType.MOVE) { in run() 320 if (currentAction == ActionType.MOVE) { in jumpAir()
|
D | AnimationComponent.java | 32 MOVE, enumConstant 205 if (currentAction == ActionType.MOVE) { in update() 222 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal()); in update() 254 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal()); in update()
|
D | PlayerComponent.java | 55 MOVE, enumConstant 100 mState = State.MOVE; in reset() 293 case MOVE: in update() 327 parentObject.setCurrentAction(GameObject.ActionType.MOVE); in gotoMove() 328 mState = State.MOVE; in gotoMove() 509 if (parentObject.getCurrentAction() == ActionType.MOVE) { in stateFrozen()
|
D | EnemyAnimationComponent.java | 30 MOVE, enumConstant 87 mSprite.playAnimation(EnemyAnimations.MOVE.ordinal()); in update()
|
D | NPCComponent.java | 150 parentObject.setCurrentAction(ActionType.MOVE); in update() 169 parentObject.setCurrentAction(ActionType.MOVE); in update() 205 parentObject.setCurrentAction(ActionType.MOVE); in update() 257 parentObject.setCurrentAction(ActionType.MOVE); in executeCommand()
|
D | SleeperComponent.java | 72 parentObject.setCurrentAction(GameObject.ActionType.MOVE); in update()
|
D | LauncherComponent.java | 106 object.setCurrentAction(ActionType.MOVE); in fire()
|
D | GameObject.java | 61 MOVE, enumConstant
|
D | GhostComponent.java | 49 mTargetAction = GameObject.ActionType.MOVE; in reset()
|
/external/libpng/scripts/ |
D | pnglibconf.mak | 17 MOVE = mv macro 39 $(MOVE) pnglibconf.tmp $@ 49 $(MOVE) pnglibconf.tmp $@
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | RegOps.java | 36 public static final int MOVE = 2; field in RegOps 315 case MOVE: return "move"; in opName()
|
D | Rops.java | 39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int"); 43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long"); 47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float"); 51 new Rop(RegOps.MOVE, Type.DOUBLE, StdTypeList.DOUBLE, "move-double"); 55 new Rop(RegOps.MOVE, Type.OBJECT, StdTypeList.OBJECT, "move-object"); 64 new Rop(RegOps.MOVE, Type.RETURN_ADDRESS, 1126 case RegOps.MOVE: return opMove(dest); in ropFor()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | NormalSsaInsn.java | 180 return insn.getOpcode().getOpcode() == RegOps.MOVE; in isNormalMoveInsn() 229 case RegOps.MOVE: in hasSideEffect()
|
D | EscapeAnalysis.java | 396 case RegOps.MOVE: in processUse() 584 result, RegOps.MOVE, null); in replaceUse() 601 result, RegOps.MOVE, null); in replaceUse() 651 insn.getOpcode().getOpcode() != RegOps.MOVE) { in movePropagate()
|
/external/chromium_org/ui/file_manager/file_manager/common/js/ |
D | progress_center_common.js | 45 MOVE: 'move', property
|
/external/chromium_org/storage/browser/fileapi/ |
D | native_file_util.h | 36 MOVE enumerator
|
D | native_file_util.cc | 121 return MOVE; in CopyOrMoveModeForDestination() 279 case MOVE: in CopyOrMoveFile()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | RopToDop.java | 228 MAP.put(Rops.MOVE_INT, Dops.MOVE); in MAP.put() argument 230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE); in MAP.put() argument 233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE); in MAP.put() argument 235 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE); in MAP.put() argument
|
/external/chromium_org/v8/tools/ |
D | profile.js | 60 MOVE: 0, property 189 this.handleUnknownCode(Profile.Operation.MOVE, from);
|
/external/chromium_org/chrome/browser/sync/glue/ |
D | bookmark_change_processor.h | 155 MOVE, enumerator
|
/external/dexmaker/src/dx/java/com/android/dx/io/ |
D | Opcodes.java | 45 public static final int MOVE = 0x01; field in Opcodes
|