Searched defs:next (Results 1 - 25 of 44) sorted by relevance

12

/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DLongArrayMap.java56 public E next() { method in class:LongArrayMap.ValueIterator
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dbinary_dictionary_bigrams_iterator.h47 AK_FORCE_INLINE void next() { function in class:latinime::BinaryDictionaryBigramsIterator
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DLineIterator.java123 * Returns the next line in the wrapped <code>Reader</code>.
125 * @return the next line from the input
128 public Object next() { method in class:LineIterator
133 * Returns the next line in the wrapped <code>Reader</code>.
135 * @return the next line from the input
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddictionary_utils.cpp34 std::vector<DicNode> next; local
48 next.emplace_back(dicNode);
49 next.back().advanceDigraphIndex();
52 processChildDicNodes(dictionaryStructurePolicy, baseLowerCodePoint, &dicNode, &next);
55 current.swap(next);
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/
H A DToken.java45 * A reference to the next regular (non-special) token from the input
52 public Token next; field in class:Token
59 * to the last of these special tokens, which in turn refers to the next
62 * The next fields of special tokens refer to other special tokens that
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/utils/
H A DBmsgTokenizer.java73 public Property next(boolean alwaysReturn) throws ParseException { method in class:BmsgTokenizer
97 public Property next() throws ParseException { method in class:BmsgTokenizer
98 return next(false);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DVideoUtils.java301 boolean next) {
322 if (next) {
300 correctTimeToSyncSample(Track track, double cutHere, boolean next) argument
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DDelaunay.h53 EdgePointer *next; member in class:CDelaunay
112 #define onext(a) next[a]
/packages/apps/TV/src/com/android/tv/util/
H A DRecurringRunner.java34 * <p>The next execution time is saved to a {@link SharedPreferences}, and used on the next start.
87 private void postAt(long next) { argument
93 if (DEBUG) Log.i(TAG, "Next run of " + mName + " at " + new Date(next));
94 long delay = Math.max(next - now, 0);
108 Log.w(TAG, "Scheduling a future run of " + mName + " at " + new Date(next) + "failed");
122 long next = getSharedPreferences().getLong(mName, System.currentTimeMillis());
123 if (next > System.currentTimeMillis() + mIntervalMs) {
124 next = resetNextRunTime();
126 return next;
[all...]
/packages/apps/TV/tests/common/src/com/android/tv/testing/testinput/
H A DChannelState.java78 * <p>The version is increased by {@link #next(ChannelStateData)}.
111 public ChannelState next(ChannelStateData data) { method in class:ChannelState
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
H A Dtrie_map_test.cpp42 const int next = trieMap.getNextLevelBitmapEntryIndex(10); local
44 trieMap.put(9, 9, next);
45 EXPECT_EQ(9ull, trieMap.get(9, next).mValue);
46 EXPECT_FALSE(trieMap.get(11, next).mIsValid);
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSlideshowView.java52 public void next(Bitmap bitmap, int rotation) { method in class:SlideshowView
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dallocators.h133 chunkHead_->next = 0;
147 ChunkHeader* next = chunkHead_->next; local
149 chunkHead_ = next;
160 for (ChunkHeader* c = chunkHead_; c != 0; c = c->next)
170 for (ChunkHeader* c = chunkHead_; c != 0; c = c->next)
237 chunk->next = chunkHead_;
249 ChunkHeader *next; //!< Next chunk in the linked list. member in struct:MemoryPoolAllocator::ChunkHeader
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DBuilder.java198 head = head.next;
234 public Node next() { method in class:Builder.ChildNodeIterator
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DBinaryDictOffdeviceUtils.java99 * Returns the next sequential spec. If exhausted, return null.
101 public DecoderChainSpec next() { method in class:BinaryDictOffdeviceUtils.DecoderChainSpec
246 // of these exceptions. In our case, that means we should try the next spec,
250 spec = spec.next();
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/
H A DBuilder.java198 head = head.next;
234 public Node next() { method in class:Builder.ChildNodeIterator
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DImageListUber.java67 if (slot.next()) mQueue.add(slot);
136 if (slot.next()) mQueue.add(slot);
139 if (slot.next()) mQueue.add(slot);
234 if (slot.next()) mQueue.add(slot);
237 if (slot.next()) mQueue.add(slot);
282 public boolean next() { method in class:ImageListUber.MergeSlot
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DSplitter.java414 T next; field in class:Splitter.AbstractIterator
437 next = computeNext();
445 public final T next() { method in class:Splitter.AbstractIterator
450 return next;
/packages/experimental/procstatlog/
H A Dprocstatlog.c286 struct data *next = stats; local
290 read_data(next++, filename);
292 read_data(next++, filename);
296 next += read_proc_yaffs(next, stats + stats_count - next);
297 next += read_lines("/proc/net/dev", ':', NULL, 0, next, end - next);
298 next
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEvent.java110 // The next event, if any. Null if there is no next event yet.
116 final Event next) {
125 mNextEvent = next;
150 final Event next, final boolean isKeyRepeat) {
153 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next);
159 public static Event createDeadEvent(final int codePoint, final int keyCode, final Event next) { argument
163 null /* suggestedWordInfo */, FLAG_DEAD, next);
178 null /* suggestedWordInfo */, FLAG_NONE, null /* next */);
194 x, y, null /* suggestedWordInfo */, FLAG_NONE, null /* next */);
114 Event(final int type, final CharSequence text, final int codePoint, final int keyCode, final int x, final int y, final SuggestedWordInfo suggestedWordInfo, final int flags, final Event next) argument
149 createHardwareKeypressEvent(final int codePoint, final int keyCode, final Event next, final boolean isKeyRepeat) argument
[all...]

Completed in 1039 milliseconds

12