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

1 2

  /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...]
  /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/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.cpp 267 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
273 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
279 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
285 frame->selection()->modify(kevent->shiftKey() ? SelectionController::EXTEND : SelectionController::MOVE,
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 174 * @return true if this is a move (but not a move-operand) instruction
178 return insn.getOpcode().getOpcode() == RegOps.MOVE;
227 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...]
SCCP.java 59 * algorithm much faster if you move all values to VARYING as fast as
351 case RegOps.MOVE: {
462 * Update the sources RegisterSpec's of all non-move uses.
  /external/webkit/WebKitTools/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
  /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/Gallery3D/src/com/cooliris/media/
HighlightView.java 46 public static final int MOVE = (1 << 5);
180 retval = MOVE;
204 // Not near any edge but inside the rectangle: move.
206 retval = MOVE;
218 } else if (edge == MOVE) {
353 None, Move, Grow
  /external/webkit/WebCore/editing/
EditorCommand.cpp 598 frame->selection()->modify(SelectionController::MOVE, SelectionController::BACKWARD, CharacterGranularity, true);
610 frame->selection()->modify(SelectionController::MOVE, SelectionController::FORWARD, LineGranularity, true);
622 frame->selection()->modify(SelectionController::MOVE, SelectionController::FORWARD, CharacterGranularity, true);
634 frame->selection()->modify(SelectionController::MOVE, SelectionController::LEFT, CharacterGranularity, true);
649 return frame->selection()->modify(SelectionController::MOVE, distance, true);
665 return frame->selection()->modify(SelectionController::MOVE, -distance, true);
678 frame->selection()->modify(SelectionController::MOVE, SelectionController::RIGHT, CharacterGranularity, true);
690 frame->selection()->modify(SelectionController::MOVE, SelectionController::BACKWARD, DocumentBoundary, true);
702 frame->selection()->modify(SelectionController::MOVE, SelectionController::BACKWARD, LineBoundary, true);
714 frame->selection()->modify(SelectionController::MOVE, SelectionController::BACKWARD, ParagraphBoundary, true)
    [all...]
SelectionController.h 44 enum EAlteration { MOVE, EXTEND };
SelectionController.cpp 206 // selection, since doing so could move the start and end into the node
583 if (alter == MOVE)
595 if (alter == MOVE)
618 case MOVE:
680 case MOVE:
722 case MOVE:
856 // Move the caret rect to the coords of the painter
857 localRect.move(offsetFromPainter);
    [all...]
  /dalvik/dx/src/com/android/dx/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);
DalvOps.java 35 public static final int MOVE = 0x01;
  /packages/apps/Email/src/com/android/exchange/adapter/
Tags.java 39 public static final int MOVE = 0x05;
327 public static final int MOVE_PAGE = MOVE << PAGE_SHIFT;
    [all...]
  /external/webkit/WebCore/page/
DOMSelection.cpp 272 else if (equalIgnoringCase(alterString, "move"))
273 alter = SelectionController::MOVE;
EventHandler.cpp 555 // Restart the selection if this is the first mouse move. This work is usually
620 // Clear the selection if the mouse didn't move after the last mouse
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 317 * What we do is first move all the source registers into
319 * then move stuff back down onto the main "stack" in the
379 // Add a move-result for the new-filled-array
426 // Add a move-result-pseudo for the get-static or const
448 // Add a move-result.
482 * We're going to want to have a move-result in the next
494 * We're going to want to have a move-result-pseudo in the
556 * Returns get turned into the combination of a move (if
761 return RegOps.MOVE;
    [all...]
  /external/qemu/android/
hw-events.h 217 KEY_CODE(MOVE ,175) \
  /external/v8/tools/
profile.js 70 MOVE: 0,
166 this.handleUnknownCode(devtools.profiler.Profile.Operation.MOVE, from);
tickprocessor.js 65 'code-move': { parsers: [this.createAddressParser('code'),
66 this.createAddressParser('code-move-to')],
71 'function-move': null,
79 case op.MOVE:
80 print('Snapshot: Code move event for unknown code: 0x' +
138 'code-move': { parsers: [this.createAddressParser('code'),
139 this.createAddressParser('code-move-to')],
146 'function-move': { parsers: [this.createAddressParser('code'),
147 this.createAddressParser('code-move-to')],
186 case op.MOVE
    [all...]
  /external/bluetooth/glib/tests/
sequence-test.c 82 INSERT_BEFORE, MOVE, SWAP, INSERT_SORTED, INSERT_SORTED_ITER, SORT_CHANGED,
576 case MOVE:

Completed in 523 milliseconds

1 2