Searched refs:move (Results 1 - 25 of 51) sorted by relevance

123

/packages/inputmethods/LatinIME/native/dicttoolkit/src/command_executors/
H A Ddiff_executor.cpp45 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs));
H A Dheader_executor.cpp45 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs));
H A Dinfo_executor.cpp50 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs));
H A Dmakedict_executor.cpp57 return ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs));
/packages/inputmethods/LatinIME/native/dicttoolkit/tests/utils/
H A Darguments_parser_test.cpp30 ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)).validateSpecs());
41 ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs)).validateSpecs());
49 std::move(argumentSpecs)).validateSpecs());
58 std::move(argumentSpecs)).validateSpecs());
67 std::move(argumentSpecs)).validateSpecs());
100 ArgumentsParser(std::move(optionSpecs), std::move(argumentSpecs));
/packages/apps/Launcher3/tests/src/com/android/launcher3/touch/
H A DSwipeDetectorTest.java74 mGenerator.move(0, 100, 100 + mTouchSlop);
82 mGenerator.move(0, 100 + mTouchSlop, 100);
93 mGenerator.move(0, 100 + mTouchSlop, 100);
101 mGenerator.move(0, 100, 100 + mTouchSlop);
109 mGenerator.move(0, 100, 100 + mTouchSlop);
110 mGenerator.move(0, 100, 100 + mTouchSlop * 2);
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DDragGestureDetector.java84 move(event, false);
91 move(event, true);
104 private void move(MotionEvent event, boolean drop) { method in class:DragGestureDetector
105 mTable.move(mTable.getFocus(),
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/
H A Ddictionary_structure_with_buffer_policy_factory.cpp97 new StructurePolicy(std::move(dictBuffers)));
126 headerFilePath, formatVersion, std::move(mmappedBuffer));
132 headerFilePath, formatVersion, std::move(mmappedBuffer));
157 DictBuffers::openVer4DictBuffers(dictPath, std::move(mmappedBuffer), formatVersion);
165 new StructurePolicy(std::move(dictBuffers)));
185 new PatriciaTriePolicy(std::move(mmappedBuffer)));
/packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
H A Dngram_property.h32 : mNgramContext(ngramContext), mTargetCodePoints(std::move(targetCodePoints)),
H A Dword_property.h38 : mCodePoints(std::move(codePoints)), mUnigramProperty(unigramProperty),
H A Dunigram_property.h32 : mTargetCodePoints(std::move(targetCodePoints)),
63 mHistoricalInfo(historicalInfo), mShortcuts(std::move(shortcuts)) {}
81 mHistoricalInfo(historicalInfo), mShortcuts(std::move(shortcuts)) {}
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DMessageMove.java28 /** The URI for dealing with message move data. */
46 * Projection for a query to get all columns necessary for an actual move.
148 LogUtils.w(LOG_TAG, "existing move's dst not same as this move's src");
168 final MessageMove move = movesMap.valueAt(i);
170 if ((move.mServerId == null || move.mServerId.length() == 0) ||
171 move.mSrcFolderKey == move.mDstFolderKey) {
172 unmovedMessages[unmovedMessagesCount] = move
[all...]
/packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/
H A DTouchEventGenerator.java107 * Adjusts the position of a finger for an upcoming move event.
109 * @see #move(long ms)
118 * Commits the finger position changes of {@link #position(int, int, int)} by generating a move
123 public TouchEventGenerator move(long ms) { method in class:TouchEventGenerator
129 * Commits the finger position changes of {@link #position(int, int, int)} by generating a move
134 public TouchEventGenerator move() { method in class:TouchEventGenerator
135 return move(TIME_INCREMENT_MS);
141 public TouchEventGenerator move(int id, int x, int y, long ms) { method in class:TouchEventGenerator
142 return position(id, x, y).move(ms);
148 public TouchEventGenerator move(in method in class:TouchEventGenerator
[all...]
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/
H A Dver4_dict_buffers.cpp65 return Ver4DictBuffersPtr(new Ver4DictBuffers(std::move(headerBuffer), std::move(bodyBuffer),
174 : mHeaderBuffer(std::move(headerBuffer)), mDictBuffer(std::move(bodyBuffer)),
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dstringbuffer.h21 #include <utility> // std::move
42 GenericStringBuffer(GenericStringBuffer&& rhs) : stack_(std::move(rhs.stack_)) {}
45 stack_ = std::move(rhs.stack_);
/packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
H A Darguments_and_options.h35 : mIsValid(true), mOptions(std::move(options)), mArguments(std::move(arguments)) {}
H A Darguments_parser.h102 : mOptionSpecs(std::move(optionSpecs)), mArgumentSpecs(std::move(argumentSpecs)) {}
H A Darguments_parser.cpp161 return ArgumentsAndOptions(std::move(options), std::move(arguments));
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Ddocumenttest.cpp365 Document b(std::move(a));
378 Document c = std::move(b);
398 Document b(std::move(a));
406 Document c(std::move(b));
435 Document b(std::move(a));
439 Document c = std::move(b);
459 b = std::move(a);
473 c = std::move(b);
494 b = std::move(a);
503 c = std::move(
[all...]
H A Dstringbuffertest.cpp120 StringBuffer y(std::move(x));
126 StringBuffer z = std::move(y);
144 y = std::move(x);
/packages/services/Car/tests/CarDiagnosticVerifier/src/com/google/android/car/diagnosticverifier/
H A DDiagnosticVerifier.java191 int move = isEqual ? KEEP : MODIFY;
194 move = ADD;
198 move = DELETE;
202 diffTable[i][j] = move;
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
H A Dver4_dict_buffers.cpp49 return Ver4DictBuffersPtr(new Ver4DictBuffers(dictPath, std::move(headerBuffer), isUpdatable,
131 : mHeaderBuffer(std::move(headerBuffer)),
H A Dver4_patricia_trie_policy.h67 : mBuffers(std::move(buffers)), mHeaderPolicy(mBuffers->getHeaderPolicy()),
/packages/apps/UnifiedEmail/src/com/android/mail/content/
H A DThreadSafeCursorWrapper.java136 LogUtils.e(LOG_TAG, "Unexpected failure to move to current position, pos=%d", pos);
141 public boolean move(int offset) { method in class:ThreadSafeCursorWrapper
/packages/inputmethods/LatinIME/native/dicttoolkit/tests/offdevice_intermediate_dict/
H A Doffdevice_intermediate_dict_test.cpp40 return WordProperty(std::move(codePoints), UnigramProperty(), std::vector<NgramProperty>());

Completed in 408 milliseconds

123