/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/ |
move_convert07.fail.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if
|
move_convert09.fail.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if
|
move_convert10.fail.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if
|
move_convert12.fail.cpp | 14 // Test unique_ptr converting move ctor 19 // test converting move ctor. Should only require a MoveConstructible deleter, or if
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
shared_ptr_rv.pass.cpp | 38 std::shared_ptr<A> pA2(std::move(pA)); 63 std::shared_ptr<A> pA2(std::move(pA));
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
EmailAddress.java | 30 * TODO(pwestbro): move to provider 59 // TODO (pwestbro): move to provider
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
InputLogicTests.java | 97 // Send once to simulate the cursor actually responding to the move caused by typing. 99 // move with a move triggered by LatinIME inputting stuff. 117 // Send once to simulate the cursor actually responding to the move caused by typing. 119 // move with a move triggered by LatinIME inputting stuff. 214 assertEquals("auto correct then move cursor to start of line then backspace", 229 assertEquals("auto correct then move cursor then backspace",
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
stl_pair.h | 60 #include <bits/move.h> // for std::move / std::forward, and std::swap 142 : first(__cons<first_type>(std::move(__first))), 143 second(__cons<second_type>(std::move(__second))) { } 156 first = std::move(__p.first); 157 second = std::move(__p.second); 174 first = std::move(__p.first); 175 second = std::move(__p.second);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
stl_pair.h | 60 #include <bits/move.h> // for std::move / std::forward, and std::swap 142 : first(__cons<first_type>(std::move(__first))), 143 second(__cons<second_type>(std::move(__second))) { } 156 first = std::move(__p.first); 157 second = std::move(__p.second); 174 first = std::move(__p.first); 175 second = std::move(__p.second);
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_pair.h | 60 #include <bits/move.h> // for std::move / std::forward, and std::swap 142 : first(__cons<first_type>(std::move(__first))), 143 second(__cons<second_type>(std::move(__second))) { } 156 first = std::move(__p.first); 157 second = std::move(__p.second); 174 first = std::move(__p.first); 175 second = std::move(__p.second);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_pair.h | 60 #include <bits/move.h> // for std::move / std::forward, and std::swap 142 : first(__cons<first_type>(std::move(__first))), 143 second(__cons<second_type>(std::move(__second))) { } 156 first = std::move(__p.first); 157 second = std::move(__p.second); 174 first = std::move(__p.first); 175 second = std::move(__p.second);
|
/docs/source.android.com/src/devices/tech/dalvik/ |
dalvik-bytecode.jd | 54 example, instructions that move 32-bit register values without interpretation 68 <code>move</code> instructions that can address registers in the range 125 "<code>move-wide/from16 vAA, vBBBB</code>": 127 <li>"<code>move</code>" is the base opcode, indicating the base operation 128 (move a register's value).</li> 181 <td>move vA, vB</td> 184 <td>Move the contents of one non-object register to another.</td> 188 <td>move/from16 vAA, vBBBB</td> 191 <td>Move the contents of one non-object register to another.</td> 195 <td>move/16 vAAAA, vBBBB</td [all...] |
/external/chromium_org/base/memory/ |
scoped_ptr.h | 66 // are not copyable; they only implement move semantics which require calling 101 #include "base/move.h" 202 // We do not support move-only deleters. We could modify our move 203 // emulation to have base::subtle::move() and base::subtle::forward() 211 // for move-only deleters. 306 // unique_ptr<> features. Known deficiencies include not supporting move-only 334 // from the normal move constructor. By C++11 20.7.1.2.1.21, this constructor 337 // we do not need a separate move constructor allowing us to avoid one 345 // Constructor. Move constructor for C++03 move emulation of this type [all...] |
/external/v8/test/cctest/ |
test-macro-assembler-x64.cc | 107 __ Move(rdx, Smi::FromInt(1)); 144 __ Move(rcx, Smi::FromInt(0)); 151 // Test that we can move a Smi value literally into a register. 196 __ Move(rcx, Smi::FromInt(x)); 198 __ Move(rdx, Smi::FromInt(y)); 406 __ Move(r8, Smi::FromInt(static_cast<int>(result))); 674 __ Move(rcx, Smi::FromInt(x)); 695 __ Move(r8, Smi::FromInt(result)); 856 __ Move(rcx, Smi::FromInt(first)); 857 __ Move(rdx, Smi::FromInt(second)) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPathParser.cpp | 93 m_currentPoint.move(toX, 0); 110 m_currentPoint.move(0, toY); 158 point1.move(-m_controlPoint.x(), -m_controlPoint.y()); 183 point1.move(2 * m_controlPoint.x(), 2 * m_controlPoint.y()); 186 point1.move(2 * m_currentPoint.x(), 2 * m_currentPoint.y()); 187 point2.move(3 * m_currentPoint.x(), 3 * m_currentPoint.y()); 218 cubicPoint.move(-m_controlPoint.x(), -m_controlPoint.y()); 452 centerPoint.move(-delta.height(), delta.width()); 483 point1.move(centerPoint.x(), centerPoint.y()); 485 targetPoint.move(centerPoint.x(), centerPoint.y()) [all...] |
/external/chromium_org/ui/aura/test/ |
event_generator.h | 141 // Generates events to move mouse to be the given |point| in the 148 // Generates events to move mouse to be the given |point| in screen 158 // Generates events to move mouse to be the given |point| in |window|'s 180 // Generates events to move the mouse to the center of the window. 201 // Generates press, move and release event to move touch 213 // Generates press, move and release events to move touch 227 // Generates press, move, release touch-events to generate a sequence of 247 // Generates press, move, release touch-events to generate a sequence o [all...] |
/external/wpa_supplicant_8/src/ap/ |
iapp.c | 19 * - add support for MOVE-notify and MOVE-response (this requires support for 27 * - TCP connection for IAPP MOVE, CACHE 29 * - ESP for IAPP MOVE messages 99 /* MOVE-notify - unicast TCP */ 110 /* MOVE-response - unicast TCP */ 262 /* IAPP-MOVE.request(MAC Address, Sequence Number, Old AP, 265 /* TODO: Send IAPP-MOVE to the old AP; Map Old AP BSSID to 372 /* TODO: MOVE is using TCP; so move this to TCP handler once i [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
__split_buffer | 153 __alloc() = _VSTD::move(__c.__alloc()); 262 _VSTD::__to_raw_pointer(__buf.__end_), _VSTD::move(*__p)); 365 : __first_(_VSTD::move(__c.__first_)), 366 __begin_(_VSTD::move(__c.__begin_)), 367 __end_(_VSTD::move(__c.__end_)), 368 __end_cap_(_VSTD::move(__c.__end_cap_)) 537 _VSTD::move(__x)); 554 __end_ = _VSTD::move(__begin_, __end_, __begin_ - __d); 585 __end_ = _VSTD::move(__begin_, __end_, __begin_ - __d); 601 _VSTD::move(__x)) [all...] |
/external/chromium_org/third_party/icu/source/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/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...] |
/frameworks/base/core/java/android/database/ |
Cursor.java | 74 * Move the cursor by a relative amount, forward or backward, from the 75 * current position. Positive offsets move forwards, negative offsets move 82 * currently on the second entry in the result set and move(-5) is called, 86 * @return whether the requested move fully succeeded. 88 boolean move(int offset); method in interface:Cursor 91 * Move the cursor to an absolute position. The valid 97 * @param position the zero-based position to move to. 98 * @return whether the requested move fully succeeded. 103 * Move the cursor to the first row [all...] |
/external/chromium_org/third_party/freetype/src/cff/ |
cf2hints.c | 413 /* smallest move up */ 415 /* smallest move down */ 418 /* final amount to move edge or edge pair */ 419 CF2_Fixed move; local 439 /* is there room to move up? */ 441 /* beyond proposed move up? */ 446 /* there is room to move up; is there also room to move down? */ 451 /* move smaller absolute amount */ 452 move = ( -moveDown < moveUp ) ? moveDown : moveUp; /* optimum * [all...] |
/external/chromium_org/third_party/icu/source/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/freetype/src/cff/ |
cf2hints.c | 413 /* smallest move up */ 415 /* smallest move down */ 418 /* final amount to move edge or edge pair */ 419 CF2_Fixed move; local 439 /* is there room to move up? */ 441 /* beyond proposed move up? */ 446 /* there is room to move up; is there also room to move down? */ 451 /* move smaller absolute amount */ 452 move = ( -moveDown < moveUp ) ? moveDown : moveUp; /* optimum * [all...] |
/external/icu4c/test/intltest/ |
citrtest.cpp | 78 virtual int32_t move(int32_t delta,CharacterIterator::EOrigin origin){ function in class:SCharacterIterator 774 // move both iter and s[index] 817 c=(UChar32)iter->move(iter, 2, UITER_CURRENT); 818 c2=(UChar32)ci.move(2, CharacterIterator::kCurrent); 823 c=(UChar32)iter->move(iter, -2, UITER_CURRENT); 824 c2=(UChar32)ci.move(-2, CharacterIterator::kCurrent); 830 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves); 868 // test move & getIndex some more 881 if( sIter.move(&sIter, 4, UITER_ZERO)!=4 || 882 sIter.move(&sIter, 1, UITER_START)!=3 | 1114 virtual int32_t move(int32_t \/*delta*\/, EOrigin \/*origin*\/) { function in class:SubCharIter [all...] |