HomeSort by relevance Sort by last modified time
    Searched full:move (Results 1526 - 1550 of 10530) sorted by null

<<61626364656667686970>>

  /external/replicaisland/src/com/replica/replicaisland/
PlayerComponent.java 55 MOVE,
100 mState = State.MOVE;
118 protected void move(float time, float timeDelta, GameObject parentObject) { method in class:PlayerComponent
173 // Don't let our jets move us past specific speed thresholds.
293 case MOVE:
327 parentObject.setCurrentAction(GameObject.ActionType.MOVE);
328 mState = State.MOVE;
333 move(time, timeDelta, parentObject); method
509 if (parentObject.getCurrentAction() == ActionType.MOVE) {
  /art/runtime/
dex_instruction_list.h 22 V(0x01, MOVE, "move", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
23 V(0x02, MOVE_FROM16, "move/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
24 V(0x03, MOVE_16, "move/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
25 V(0x04, MOVE_WIDE, "move-wide", k12x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
26 V(0x05, MOVE_WIDE_FROM16, "move-wide/from16", k22x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
27 V(0x06, MOVE_WIDE_16, "move-wide/16", k32x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
28 V(0x07, MOVE_OBJECT, "move-object", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
29 V(0x08, MOVE_OBJECT_FROM16, "move-object/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
30 V(0x09, MOVE_OBJECT_16, "move-object/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB)
    [all...]
  /external/chromium_org/ash/wm/workspace/
workspace_window_resizer_unittest.cc 272 // Move it 100 to the right, which should expand w1 and push w2.
283 // Move back to 100 and verify w2 gets its original size.
306 // Move it 100 to the left, which should expand w2 and collapse w1.
317 // Move 100 to the left.
344 // Move it 100 to the right, which should expand w1 and push w2 and w3.
350 // Move it 300, things should compress.
356 // Move it so much the last two end up at their min.
385 // Move it -100 to the right, which should collapse w1 and expand w2 and w3.
391 // Move it 100 to the right.
415 // Move it up 100, which should expand w2 and collapse w1
    [all...]
  /external/clang/www/
libstdc++4.4-clang0x.patch 21 diff -ur a/bits/move.h b/bits/move.h
22 --- a/bits/move.h 2011-03-15 14:49:05.000000000 -0700
23 +++ b/bits/move.h 2011-03-29 10:33:39.000000000 -0700
52 move(_Tp&& __t)
145 + { return std::move(*_M_current); }
171 + { splice(__position, std::move(__x)); }
184 + { splice(__position, std::move(__x), __i); }
198 + { splice(__position, std::move(__x), __first, __last); }
211 + { merge(std::move(__x));
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_iterator.h 66 #include <bits/move.h>
117 * This %iterator will move in the opposite direction that @p x does.
425 container->push_back(std::move(__value));
435 /// Simply returns *this. (This %iterator does not "move".)
440 /// Simply returns *this. (This %iterator does not "move".)
508 container->push_front(std::move(__value));
518 /// Simply returns *this. (This %iterator does not "move".)
523 /// Simply returns *this. (This %iterator does not "move".)
613 iter = container->insert(iter, std::move(__value));
624 /// Simply returns *this. (This %iterator does not "move".
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
forward_list 85 : _Base(std::move(__list._M_base()), __al)
117 : _Base(std::move(__list._M_base()))
145 static_cast<_Base&>(*this) = std::move(__list);
281 return iterator(_Base::insert_after(__pos.base(), std::move(__val)),
438 _Base::splice_after(__pos.base(), std::move(__list._M_base()));
443 { splice_after(__pos, std::move(__list)); }
467 _Base::splice_after(__pos.base(), std::move(__list._M_base()),
474 { splice_after(__pos, std::move(__list), __i); }
521 _Base::splice_after(__pos.base(), std::move(__list._M_base()),
528 { splice_after(__pos, std::move(__list), __before, __last);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
deque 222 move(_RAIter __f,
230 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
237 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
471 move(_RAIter __f,
480 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
488 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
691 // move
696 move(_RAIter __f,
715 _VSTD::move(__f, __m, __rb);
725 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f
    [all...]
  /external/chromium_org/cc/animation/
scrollbar_animation_controller_thinning_unittest.cc 131 // Move the pointer near the scrollbar. Confirm it gets thick and narrow when
165 // Now move away from bar.
191 // Move the pointer over the scrollbar. Make sure it gets thick and dark
225 // Now move away from bar.
251 // First move the pointer near the scrollbar, then over it, then back near
270 // Now move over.
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner_unittest.cc 247 file_system_.operation_runner()->Move(
248 URL(kDir), URL("dest-move"),
258 file_system_.DirectoryExists(URL("dest-move")));
283 // Finish syncing the kParent to unlock Move.
289 // Now we should have "dest-move".
291 file_system_.DirectoryExists(URL("dest-move")));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 75 # If requested, move current baselines out
81 # See which ones we need to move (only those that are about to be
92 log(' Already had baselines in %s, could not move existing '
96 # Do the actual move.
107 log(' No current baselines to move')
236 baseline_move_to = self.query['baseline-move-to'][0]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
mips3-mont.pl 64 move $fp,sp
116 move $tp,sp
203 move $tp,sp
272 move $tp,sp
273 move $ap,sp
292 move $tp,sp
  /external/jhead/
iptc.c 66 pos += sizeof(IptcSig1); // move data pointer to the next field
69 pos += sizeof(IptcSig2)-1; // move data pointer to the next field
78 pos += sizeof(IptcSig3); // move data pointer to the next field
85 headerLen = *pos++; // get header length and move data pointer to the next field
86 pos += headerLen + 1 - (headerLen % 2); // move data pointer to the next field (Header is padded to even length, counting the length byte)
93 pos += 4; // move data pointer to the next field
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestCollision.java 275 selectedCollisionObject.move(-0.5f, 0, 0);
279 selectedCollisionObject.move(0.5f, 0, 0);
283 selectedCollisionObject.move(0, 0, 0.5f);
287 selectedCollisionObject.move(0, 0, -0.5f);
291 selectedCollisionObject.move(0, 0.5f, 0);
295 selectedCollisionObject.move(0, -0.5f, 0);
  /external/llvm/utils/lit/lit/
ProgressBar.py 43 BOL = '' #: Move the cursor to the beginning of the line
44 UP = '' #: Move the cursor up one line
45 DOWN = '' #: Move the cursor down one line
46 LEFT = '' #: Move the cursor left one char
47 RIGHT = '' #: Move the cursor right one char
50 CLEAR_SCREEN = '' #: Clear the screen and move to home position
  /external/openssl/crypto/bn/asm/
mips3-mont.pl 64 move $fp,sp
116 move $tp,sp
203 move $tp,sp
272 move $tp,sp
273 move $ap,sp
292 move $tp,sp
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 246 * Mover is a function object (functor). @ref Mover::move moves
253 virtual void move(TreeIteratorBase& pNode) const = 0;
264 virtual void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Succeeder
265 pNode.move<Positional>();
277 virtual void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Includer
278 pNode.move<Inclusive>();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalScaleOperationsTest.java 253 * Move the decimal point to the left; the shift value is positive
267 * Move the decimal point to the left; the shift value is positive
281 * Move the decimal point to the right; the shift value is positive
295 * Move the decimal point to the right; the shift value is positive
310 * Move the decimal point to the right; the shift value is positive
324 * Move the decimal point to the right when the scale overflows
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 57 NONE, MOVE
131 mState = MODES.MOVE;
136 if (mState == MODES.MOVE) {
146 if (mState == MODES.MOVE) {
277 if (mState == MODES.MOVE || mGridAlpha > 0) {
286 if (alpha == 0 && mState == MODES.MOVE) {
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 217 // Move to the keep limit and then delete everything older than that one.
218 cursor.move(keep);
366 // Move to the keep limit and then delete everything older than that one.
367 cursor.move(keep);
411 // Move to the keep limit and then delete everything older than that one.
412 cursor.move(keep);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 89 """delete: Move an item from its container to the trash
200 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
201 """move: Move object(s) to a new location
202 Required argument: the object(s) to move
211 _subcode = 'move'
  /external/llvm/lib/Target/ARM/
ARMScheduleA8.td 67 // Move instructions, unconditional
81 // Move instructions, conditional
253 // FP Special Register to Integer Register File Move
360 // Integer to Single-precision Move
365 // Integer to Double-precision Move
370 // Single-precision to Integer Move
375 // Double-precision to Integer Move
    [all...]
  /dalvik/opcode-gen/
bytecode.txt 87 op 01 move 12x y none continue
88 op 02 move/from16 22x y none continue
89 op 03 move/16 32x y none continue
90 op 04 move-wide 12x y none continue
91 op 05 move-wide/from16 22x y none continue
92 op 06 move-wide/16 32x y none continue
93 op 07 move-object 12x y none continue
94 op 08 move-object/from16 22x y none continue
95 op 09 move-object/16 32x y none continue
96 op 0a move-result 11x y none continu
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 11 // to move them together. If we can move them next to each other we do so and
220 /// isUnsafeToMoveAcross - Returns true if it is unsafe to move a copy
232 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
243 // It is not safe to move I1 and I2 into one combine if I2 has a true
250 // First try to move I2 towards I1.
260 // If I2 kills its operand and we move I2 over an instruction that also
274 // we can't move I2 across it.
298 // Try to move I1 towards I2.
307 // Track killed operands. If we move across an instruction that kills ou
    [all...]
  /external/smali/smali/src/main/jflex/
smaliLexer.flex 403 "move-result" | "move-result-wide" | "move-result-object" | "move-exception" | "return" | "return-wide" |
408 "move" | "move-wide" | "move-object" | "array-length" | "neg-int" | "not-int" | "neg-long" | "not-long" |
498 "move/from16" | "move-wide/from16" | "move-object/from16"
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_iterator.h 66 #include <bits/move.h>
117 * This %iterator will move in the opposite direction that @p x does.
425 container->push_back(std::move(__value));
435 /// Simply returns *this. (This %iterator does not "move".)
440 /// Simply returns *this. (This %iterator does not "move".)
508 container->push_front(std::move(__value));
518 /// Simply returns *this. (This %iterator does not "move".)
523 /// Simply returns *this. (This %iterator does not "move".)
613 iter = container->insert(iter, std::move(__value));
624 /// Simply returns *this. (This %iterator does not "move".
    [all...]

Completed in 2354 milliseconds

<<61626364656667686970>>