/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/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/6/sources/cxx-stl/gnu-libstdc++/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/7/sources/cxx-stl/gnu-libstdc++/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/8/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/ |
forward_list | 79 : _Base(std::move(__list._M_base()), __al) 107 : _Base(std::move(__list._M_base())) 264 return iterator(_Base::insert_after(__pos.base(), std::move(__val)), 413 _Base::splice_after(__pos.base(), std::move(__list._M_base())); 418 { splice_after(__pos, std::move(__list)); } 438 _Base::splice_after(__pos.base(), std::move(__list._M_base()), 445 { splice_after(__pos, std::move(__list), __i); } 488 _Base::splice_after(__pos.base(), std::move(__list._M_base()), 495 { splice_after(__pos, std::move(__list), __before, __last); } 574 _Base::merge(std::move(__list._M_base())) [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/ |
forward_list | 79 : _Base(std::move(__list._M_base()), __al) 107 : _Base(std::move(__list._M_base())) 264 return iterator(_Base::insert_after(__pos.base(), std::move(__val)), 413 _Base::splice_after(__pos.base(), std::move(__list._M_base())); 418 { splice_after(__pos, std::move(__list)); } 438 _Base::splice_after(__pos.base(), std::move(__list._M_base()), 445 { splice_after(__pos, std::move(__list), __i); } 488 _Base::splice_after(__pos.base(), std::move(__list._M_base()), 495 { splice_after(__pos, std::move(__list), __before, __last); } 574 _Base::merge(std::move(__list._M_base())) [all...] |
/external/chromium_org/ui/aura/gestures/ |
gesture_recognizer_unittest.cc | 579 ui::TouchEvent move(ui::ET_TOUCH_MOVED, gfx::Point(x, y), 582 root_window->AsRootWindowHostDelegate()->OnHostTouchEvent(&move); 593 ui::TouchEvent move(ui::ET_TOUCH_MOVED, gfx::Point(x, y), 596 root_window->AsRootWindowHostDelegate()->OnHostTouchEvent(&move); 861 ui::TouchEvent move(ui::ET_TOUCH_MOVED, gfx::Point(49, 204), 863 move.set_radius_x(8); 864 move.set_radius_y(12); 865 dispatcher()->AsRootWindowHostDelegate()->OnHostTouchEvent(&move); 917 ui::TouchEvent move(ui::ET_TOUCH_MOVED, gfx::Point(397, 151), 919 move.set_radius_x(13) [all...] |
/art/compiler/dex/ |
compiler_ir.h | 99 // TODO: may want to move this to MIRGraph. 107 // TODO: move memory management to mir_graph, or just switch to using standard containers.
|
/art/runtime/base/unix_file/ |
fd_file.cc | 117 ptr += bytes_read; // Move the buffer forward. 130 ptr += bytes_read; // Move the buffer forward.
|
/bionic/libc/kernel/arch-mips/asm/ |
cmpxchg.h | 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
|
div64.h | 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
|
/bionic/libc/private/ |
bionic_atomic_mips.h | 45 __asm__ __volatile__ ("1: move %[status], %[new_value] \n" 63 __asm__ __volatile__ ("1: move %[status], %[new_value] \n"
|
/bionic/libc/upstream-netbsd/libc/stdlib/ |
bsearch.c | 79 if (cmp > 0) { /* key > p: move right */ 82 } /* else move left */
|
/bionic/linker/arch/mips/ |
begin.S | 95 move $a0, $sp 99 move $t9, $v0
|
/cts/tests/tests/database/src/android/database/cts/ |
CursorWrapperTest.java | 71 cursorWrapper.move(1); 227 // move to the end 234 // Test move(int) 235 assertTrue(cursorWrapper.move(-1)); 237 assertTrue(cursorWrapper.move(-1)); 240 assertFalse(cursorWrapper.move(-1)); 242 assertTrue(cursorWrapper.move(2)); 245 assertFalse(cursorWrapper.move(1));
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
cmpxchg.h | 24 #define __cmpxchg_asm(ld, st, m, old, new) ({ __typeof(*(m)) __ret; if (cpu_has_llsc && R10000_LLSC_WAR) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqzl $1, 1b \n" "2: \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else if (cpu_has_llsc) { __asm__ __volatile__( " .set push \n" " .set noat \n" " .set mips3 \n" "1: " ld " %0, %2 # __cmpxchg_asm \n" " bne %0, %z3, 2f \n" " .set mips0 \n" " move $1, %z4 \n" " .set mips3 \n" " " st " $1, %1 \n" " beqz $1, 3f \n" "2: \n" " .subsection 2 \n" "3: b 1b \n" " .previous \n" " .set pop \n" : "=&r" (__ret), "=R" (*m) : "R" (*m), "Jr" (old), "Jr" (new) : "memory"); } else { unsigned long __flags; raw_local_irq_save(__flags); __ret = *m; if (__ret == old) *m = new; raw_local_irq_restore(__flags); } __ret; })
|
div64.h | 25 #define do_div64_32(res, high, low, base) ({ unsigned long __quot32, __mod32; unsigned long __cf, __tmp, __tmp2, __i; __asm__(".set push\n\t" ".set noat\n\t" ".set noreorder\n\t" "move %2, $0\n\t" "move %3, $0\n\t" "b 1f\n\t" " li %4, 0x21\n" "0:\n\t" "sll $1, %0, 0x1\n\t" "srl %3, %0, 0x1f\n\t" "or %0, $1, %5\n\t" "sll %1, %1, 0x1\n\t" "sll %2, %2, 0x1\n" "1:\n\t" "bnez %3, 2f\n\t" " sltu %5, %0, %z6\n\t" "bnez %5, 3f\n" "2:\n\t" " addiu %4, %4, -1\n\t" "subu %0, %0, %z6\n\t" "addiu %2, %2, 1\n" "3:\n\t" "bnez %4, 0b\n\t" " srl %5, %1, 0x1f\n\t" ".set pop" : "=&r" (__mod32), "=&r" (__tmp), "=&r" (__quot32), "=&r" (__cf), "=&r" (__i), "=&r" (__tmp2) : "Jr" (base), "0" (high), "1" (low)); (res) = __quot32; __mod32; })
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
CurvedMotion.java | 30 * This app shows how to move a view in a curved path between two endpoints. 59 // Change layout parameters of button to move it
|
/development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/ |
PropertyAnimations.java | 61 // Move the button over to the right and then back 88 setupAnimation(translateButton, translateAnimation, R.animator.move);
|
/external/chromium/base/ |
sys_info_chromeos.cc | 93 start_index++; // Move past '='. 97 // TODO(rkc): Ignore the 0. here; fix this once we move Chrome OS version
|
/external/chromium/chrome/browser/renderer_host/ |
accelerated_plugin_view_mac_unittest.mm | 150 // Move view while it's visible. 159 // Move view while it's hidden.
|
/external/chromium/chrome/browser/tabs/ |
tab_strip_selection_model.h | 83 // three tabs 'A B C', to move A to the end of the list, this should be 85 void Move(int from, int to);
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_editor_controller.mm | 120 // If there was an old node then we update the node, and move it to its new 129 model->Move(node_, newParentNode, newParentNode->child_count());
|
/external/chromium/chrome/browser/ui/gtk/ |
slide_animator_gtk.h | 114 // We need to move the child widget to (0, -height), but we don't know its 116 // child widget has been allocated, at which point we will move it, and then
|
/external/chromium/testing/gtest/make/ |
Makefile | 3 # may want to move it to your project's root directory. 16 # Remember to tweak this if you move this file.
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
errors.py | 116 # TODO(user): move these errors to their own file and move all JavaScript
|