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

1 2 3

  /external/chromium_org/third_party/icu/source/test/intltest/
citrtest.h 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
tstnorm.h 59 const char *moves,
tstnorm.cpp 627 const char *moves,
648 const char *move=moves;
663 // copy the moves until the current (m) move, and terminate
665 uprv_strcpy(history, moves);
666 history[move-moves]=0;
675 // copy the moves until the current (m) move, and terminate
677 uprv_strcpy(history, moves);
678 history[move-moves]=0;
747 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; local
753 moves, UNORM_NFD, "basic")
    [all...]
citrtest.cpp 767 const char *moves, const char *which) {
774 switch(moves[m]) {
829 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
838 errln("error: UCharIterator(%s) misbehaving at \"%s\"[%d]='%c'", which, moves, m, moves[m]);
846 const char *const moves= local
847 "0+++++++++" // 10 moves per line
861 TestUCharIterator(&sIter, compareCI, moves, "uiter_setString");
863 TestUCharIterator(&cIter, compareCI, moves, "uiter_setCharacterIterator")
    [all...]
  /external/icu4c/test/intltest/
citrtest.h 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
tstnorm.h 59 const char *moves,
tstnorm.cpp 628 const char *moves,
649 const char *move=moves;
664 // copy the moves until the current (m) move, and terminate
666 uprv_strcpy(history, moves);
667 history[move-moves]=0;
676 // copy the moves until the current (m) move, and terminate
678 uprv_strcpy(history, moves);
679 history[move-moves]=0;
748 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; local
754 moves, UNORM_NFD, "basic")
    [all...]
citrtest.cpp 768 const char *moves, const char *which) {
775 switch(moves[m]) {
830 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
839 errln("error: UCharIterator(%s) misbehaving at \"%s\"[%d]='%c'", which, moves, m, moves[m]);
847 const char *const moves= local
848 "0+++++++++" // 10 moves per line
862 TestUCharIterator(&sIter, compareCI, moves, "uiter_setString");
864 TestUCharIterator(&cIter, compareCI, moves, "uiter_setCharacterIterator")
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-234101.js 30 // Currently, the gap resolver doesn't handle moves from a ConstantOperand to a
31 // DoubleRegister, but these kind of moves appeared when HConstant::EmitAtUses
33 // either enhance the gap resolver or make sure that such moves don't happen.
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 25 /** The path for the URI for interacting with message moves. */
110 * Get the final moves that we want to upsync to the server, setting the status in the DB for
113 * Messages whose sequence of pending moves results in a no-op (i.e. the message has been moved
114 * back to its original folder) have their moves cleared from the DB without any upsync.
117 * @return The final moves to send to the server, or null if there are none.
144 LogUtils.w(LOG_TAG, "Moves were not in ascending id order");
162 // Prune any no-op moves (i.e. messages that have been moved back to the initial folder).
166 final ArrayList<MessageMove> moves = new ArrayList(moveCount); local
175 moves.add(move);
181 if (moves.isEmpty())
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasMoveItems.java 56 final List<MessageMove> moves = MessageMove.getMoves(mContext, mAccountId); local
57 if (moves == null) {
61 final long[][] messageIds = new long[3][moves.size()];
64 for (final MessageMove move : moves) {
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_base.cc 205 const std::vector<WebPluginGeometry>& moves) {
206 if (moves.empty())
214 ::BeginDeferWindowPos(static_cast<int>(moves.size()));
225 for (size_t i = 0; i < moves.size(); ++i) {
227 const WebPluginGeometry& move = moves[i];
326 DCHECK(false) << "DeferWindowPos failed, so all plugin moves ignored.";
335 for (size_t i = 0; i < moves.size(); ++i) {
336 const WebPluginGeometry& move = moves[i];
render_widget_host_view_base.h 110 const std::vector<WebPluginGeometry>& moves);
render_widget_host_view_guest.cc 263 const std::vector<WebPluginGeometry>& moves) {
264 platform_view_->MovePluginWindows(scroll_offset, moves);
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 45 // Build up a worklist of moves.
50 // Skip constants to perform them last. They don't block other moves
51 // and skipping such moves with register destinations keeps those
62 // Perform the moves with constant sources.
75 // Perform a linear sweep of the moves to add them to the initial list of
76 // moves to perform, ignoring any move that is redundant (the source is
79 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
80 for (int i = 0; i < moves->length(); ++i) {
81 LMoveOperands move = moves->at(i);
94 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/v8/src/mips/
lithium-gap-resolver-mips.cc 46 // Build up a worklist of moves.
51 // Skip constants to perform them last. They don't block other moves
52 // and skipping such moves with register destinations keeps those
63 // Perform the moves with constant sources.
76 // Perform a linear sweep of the moves to add them to the initial list of
77 // moves to perform, ignoring any move that is redundant (the source is
80 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
81 for (int i = 0; i < moves->length(); ++i) {
82 LMoveOperands move = moves->at(i);
95 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-gap-resolver-arm.cc 45 // Build up a worklist of moves.
50 // Skip constants to perform them last. They don't block other moves
51 // and skipping such moves with register destinations keeps those
62 // Perform the moves with constant sources.
75 // Perform a linear sweep of the moves to add them to the initial list of
76 // moves to perform, ignoring any move that is redundant (the source is
79 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
80 for (int i = 0; i < moves->length(); ++i) {
81 LMoveOperands move = moves->at(i);
94 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-gap-resolver-mips.cc 46 // Build up a worklist of moves.
51 // Skip constants to perform them last. They don't block other moves
52 // and skipping such moves with register destinations keeps those
63 // Perform the moves with constant sources.
76 // Perform a linear sweep of the moves to add them to the initial list of
77 // moves to perform, ignoring any move that is redundant (the source is
80 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
81 for (int i = 0; i < moves->length(); ++i) {
82 LMoveOperands move = moves->at(i);
95 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-gap-resolver-x64.cc 44 // Build up a worklist of moves.
49 // Skip constants to perform them last. They don't block other moves
50 // and skipping such moves with register destinations keeps those
57 // Perform the moves with constant sources.
70 // Perform a linear sweep of the moves to add them to the initial list of
71 // moves to perform, ignoring any move that is redundant (the source is
74 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
75 for (int i = 0; i < moves->length(); ++i) {
76 LMoveOperands move = moves->at(i);
96 // multiple moves to be pending
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.cc 44 // Build up a worklist of moves.
49 // Skip constants to perform them last. They don't block other moves
50 // and skipping such moves with register destinations keeps those
57 // Perform the moves with constant sources.
70 // Perform a linear sweep of the moves to add them to the initial list of
71 // moves to perform, ignoring any move that is redundant (the source is
74 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
75 for (int i = 0; i < moves->length(); ++i) {
76 LMoveOperands move = moves->at(i);
96 // multiple moves to be pending
    [all...]
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 48 // Build up a worklist of moves.
53 // Skip constants to perform them last. They don't block other moves
54 // and skipping such moves with register destinations keeps those
61 // Perform the moves with constant sources.
75 // Perform a linear sweep of the moves to add them to the initial list of
76 // moves to perform, ignoring any move that is redundant (the source is
79 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
80 for (int i = 0; i < moves->length(); ++i) {
81 LMoveOperands move = moves->at(i);
108 // such moves
    [all...]
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.h 66 const std::vector<webkit::npapi::WebPluginGeometry>& moves);
  /external/chromium_org/content/port/browser/
render_widget_host_view_port.h 83 // Moves all plugin windows as described in the given list.
87 const std::vector<WebPluginGeometry>& moves) = 0;
  /external/chromium_org/v8/src/ia32/
lithium-gap-resolver-ia32.cc 48 // Build up a worklist of moves.
53 // Skip constants to perform them last. They don't block other moves
54 // and skipping such moves with register destinations keeps those
61 // Perform the moves with constant sources.
75 // Perform a linear sweep of the moves to add them to the initial list of
76 // moves to perform, ignoring any move that is redundant (the source is
79 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
80 for (int i = 0; i < moves->length(); ++i) {
81 LMoveOperands move = moves->at(i);
108 // such moves
    [all...]
  /external/chromium_org/remoting/webapp/
toolbar.js 113 * Called whenever the mouse moves in the document. This is used to make the

Completed in 279 milliseconds

1 2 3