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

1 2 3

  /external/chromium_org/base/posix/
file_descriptor_shuffle_unittest.cc 20 MOVE,
53 virtual bool Move(int src, int dest) OVERRIDE {
54 actions_.push_back(Action(Action::MOVE, src, dest));
102 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
113 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
114 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
124 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
136 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0));
150 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1));
151 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0))
    [all...]
  /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/libpng/scripts/
pnglibconf.mak 17 MOVE = mv
39 $(MOVE) pnglibconf.tmp $@
49 $(MOVE) pnglibconf.tmp $@
  /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";
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")
    [all...]
  /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";
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")
    [all...]
  /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";
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")
    [all...]
  /external/chromium_org/storage/browser/fileapi/
native_file_util.h 36 MOVE
native_file_util.cc 121 return MOVE;
279 case MOVE:
280 if (!base::Move(src_path, dest_path))
  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_handler.js 83 case 'MOVE': return strf('MOVE_TARGET_EXISTS_ERROR', name);
92 case 'MOVE': return strf('MOVE_FILESYSTEM_ERROR', detail);
100 case 'MOVE': return strf('MOVE_UNEXPECTED_ERROR', event.error.code);
109 case 'MOVE': return strf('MOVE_FILE_NAME', name);
117 case 'MOVE': return strf('MOVE_ITEMS_REMAINING', remainNumber);
153 case 'MOVE': return ProgressItemType.MOVE;
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 181 * @return true if this is a move (but not a move-operand) instruction
185 return insn.getOpcode().getOpcode() == RegOps.MOVE;
234 case RegOps.MOVE:
EscapeAnalysis.java 136 * Finds the corresponding instruction for a given move result
138 * @param moveInsn {@code non-null;} a move result instruction
140 * the move
149 * Finds the corresponding move result for a given instruction
152 * followed by a move result
153 * @return {@code non-null;} the move result for the given instruction
213 * move result or move param.
244 * Determine the origin of a move result pseudo instruction that generates
247 * @param insn {@code non-null;} move result pseudo instruction to proces
    [all...]
  /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:
EscapeAnalysis.java 137 * Finds the corresponding instruction for a given move result
139 * @param moveInsn {@code non-null;} a move result instruction
141 * the move
150 * Finds the corresponding move result for a given instruction
153 * followed by a move result
154 * @return {@code non-null;} the move result for the given instruction
214 * move result or move param.
245 * Determine the origin of a move result pseudo instruction that generates
248 * @param insn {@code non-null;} move result pseudo instruction to proces
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 56 MAP.put(Rops.MOVE_INT, Dops.MOVE);
58 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
61 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
63 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE);
Dops.java 67 public static final Dop MOVE =
68 new Dop(DalvOps.MOVE, DalvOps.MOVE,
69 Form12x.THE_ONE, true, "move");
72 new Dop(DalvOps.MOVE_FROM16, DalvOps.MOVE,
73 Form22x.THE_ONE, true, "move/from16");
76 new Dop(DalvOps.MOVE_16, DalvOps.MOVE,
77 Form32x.THE_ONE, true, "move/16");
81 Form12x.THE_ONE, true, "move-wide");
85 Form22x.THE_ONE, true, "move-wide/from16")
    [all...]
DalvInsn.java 46 * Makes a move instruction, appropriate and ideal for the given arguments.
63 (category1 ? Dops.MOVE : Dops.MOVE_WIDE);
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 60 // Opcodes.MOVE
227 MAP.put(Rops.MOVE_INT, Dops.MOVE);
229 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
232 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
234 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE);
DalvInsn.java 49 * Makes a move instruction, appropriate and ideal for the given arguments.
66 (category1 ? Dops.MOVE : Dops.MOVE_WIDE);
280 * version of this instance. Will not generate a move for a register
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.h 155 MOVE,
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 61 // Opcodes.MOVE
228 MAP.put(Rops.MOVE_INT, Dops.MOVE);
230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
235 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE);
DalvInsn.java 48 * Makes a move instruction, appropriate and ideal for the given arguments.
65 (category1 ? Dops.MOVE : Dops.MOVE_WIDE);
279 * version of this instance. Will not generate a move for a register
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 45 public static final int MOVE = 0x01;

Completed in 1882 milliseconds

1 2 3