HomeSort by relevance Sort by last modified time
    Searched full:move (Results 426 - 450 of 5522) sorted by null

<<11121314151617181920>>

  /external/icu4c/common/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relative to the current positio
399 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relative to the current positio
399 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relative to the current positio
399 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relative to the current positio
399 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
uiter.h 44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relative to the current positio
399 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /docs/source.android.com/src/tech/dalvik/
dalvik-bytecode.html 43 example, instructions that move 32-bit register values without interpretation
131 <td>move vA, vB</td>
134 <td>Move the contents of one non-object register to another.</td>
138 <td>move/from16 vAA, vBBBB</td>
141 <td>Move the contents of one non-object register to another.</td>
145 <td>move/16 vAAAA, vBBBB</td>
148 <td>Move the contents of one non-object register to another.</td>
152 <td>move-wide vA, vB</td>
155 <td>Move the contents of one register-pair to another.
157 It is legal to move from <code>v<i>N</i></code> to eithe
    [all...]
  /external/icu4c/test/intltest/
citrtest.cpp 77 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ function in class:SCharacterIterator
773 // move both iter and s[index]
816 c=(UChar32)iter->move(iter, 2, UITER_CURRENT);
817 c2=(UChar32)ci.move(2, CharacterIterator::kCurrent);
822 c=(UChar32)iter->move(iter, -2, UITER_CURRENT);
823 c2=(UChar32)ci.move(-2, CharacterIterator::kCurrent);
829 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
867 // test move & getIndex some more
880 if( sIter.move(&sIter, 4, UITER_ZERO)!=4 ||
881 sIter.move(&sIter, 1, UITER_START)!=3 |
1113 virtual int32_t move(int32_t \/*delta*\/, EOrigin \/*origin*\/) { function in class:SubCharIter
    [all...]
  /external/quake/quake/src/QW/client/
view.c 27 The view is allowed to move slightly from it's true position for bobbing,
190 float delta, move; local
222 move = host_frametime * cl.pitchvel;
225 //Con_Printf ("move: %f (%f)\n", move, host_frametime);
229 if (move > delta)
232 move = delta;
234 cl.viewangles[PITCH] += move;
238 if (move > -delta)
241 move = -delta
724 float yaw, pitch, move; local
    [all...]
  /external/quake/quake/src/QW/server/
sv_phys.c 27 pushmove objects do not obey gravity, and do not interact with each other or trigger fields, but block normal movement and push normal objects when they move.
428 qboolean SV_Push (edict_t *pusher, vec3_t move)
440 mins[i] = pusher->v.absmin[i] + move[i];
441 maxs[i] = pusher->v.absmax[i] + move[i];
446 // move the pusher to it's final position
448 VectorAdd (pusher->v.origin, move, pusher->v.origin);
491 VectorAdd (check->v.origin, move, check->v.origin);
500 VectorSubtract (check->v.origin, move, check->v.origin);
534 // move back any entities we already moved
555 vec3_t move; local
582 vec3_t oldorg, move; local
715 vec3_t move; local
    [all...]
  /external/quake/quake/src/WinQuake/
view.cpp 27 The view is allowed to move slightly from it's true position for bobbing,
184 float delta, move;
216 move = host_frametime * cl.pitchvel;
219 //Con_Printf ("move: %f (%f)\n", move, host_frametime);
223 if (move > delta)
226 move = delta;
228 cl.viewangles[PITCH] += move;
232 if (move > -delta)
235 move = -delta
    [all...]
  /cts/tools/vm-tests/src/dot/junit/opcodes/filled_new_array/d/
T_filled_new_array_1.d 30 move-result-object v0
T_filled_new_array_10.d 31 move-result-object v0
T_filled_new_array_11.d 31 move-result-object v0
T_filled_new_array_2.d 30 move-result-object v0
T_filled_new_array_3.d 30 move-result-object v0
T_filled_new_array_4.d 30 move-result-object v0
T_filled_new_array_5.d 30 move-result-object v0
T_filled_new_array_7.d 30 move-result-object v0
T_filled_new_array_9.d 30 move-result-object v0
  /cts/tools/vm-tests/src/dot/junit/opcodes/filled_new_array_range/d/
T_filled_new_array_range_1.d 30 move-result-object v0
T_filled_new_array_range_10.d 31 move-result-object v0
T_filled_new_array_range_11.d 31 move-result-object v0
T_filled_new_array_range_2.d 30 move-result-object v0
T_filled_new_array_range_3.d 30 move-result-object v0
T_filled_new_array_range_4.d 30 move-result-object v0

Completed in 1959 milliseconds

<<11121314151617181920>>