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

12

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Dbinary_dictionary_bigrams_iterator.h37 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/apps/Camera/jni/feature_mos/src/mosaic/
H A DDelaunay.h53 EdgePointer *next; member in class:CDelaunay
112 #define onext(a) next[a]
/packages/apps/Camera2/jni/feature_mos/src/mosaic/
H A DDelaunay.h53 EdgePointer *next; member in class:CDelaunay
112 #define onext(a) next[a]
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEvent.java39 // A dead key, which means a character that should combine with what is coming next. Examples
64 // The next event, if any. Null if there is no next event yet.
68 private Event(final int type, final int codePoint, final Event next) { argument
71 mNextEvent = next;
74 public static Event createDeadEvent(final int codePoint, final Event next) { argument
75 return new Event(EVENT_DEAD, codePoint, next);
78 public static Event createCommittableEvent(final int codePoint, final Event next) { argument
79 return new Event(EVENT_COMMITTABLE, codePoint, next);
/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/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/apps/Camera2/src/com/android/camera/app/
H A DPlaceholderManager.java119 public TaskListener next() { method in class:PlaceholderManager.ListenerIterator
122 TaskListener next = mNext;
124 return next;
/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/android/mail/lib/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/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/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java178 TutorialEN.this.next();
257 next();
260 boolean next() { method in class:TutorialEN
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java181 TutorialJAJP.this.next();
329 next();
332 boolean next() { method in class:TutorialJAJP
384 next();
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoSource.java129 public Bitmap next(BitmapFactory.Options options, int longSide, int shortSide) { method in class:PhotoSource
288 ImageData next = data.naturalNext();
289 if (next != null) {
290 image = load(next, options, longSide, shortSide);
291 mImageMap.put(image, next);
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndapi.c189 NJ_INT32 i, next, first; local
199 next = -1;
292 (next == -1)) {
298 next = i;
318 if ((next == -1) || (nj_strcmp(result_stroke, tmp_stroke) > 0)) {
324 next = i;
331 if (next == -1) {
335 loctset = &(cursor->loctset[next]);
338 (cursor->cond.ds->dic[next].srhCache == NULL))) {
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifParser.java40 * int event = parser.next();
60 * event = parser.next();
260 * Moves the parser forward and returns the next parsing event
271 protected int next() throws IOException, ExifInvalidFormatException { method in class:ExifParser
280 return next();
303 Log.w(TAG, "Invalid size of link to next IFD: " + offsetSize);
307 Log.w(TAG, "Invalid link to next IFD: " + ifdOffset);
408 * If {@link #next()} return {@link #EVENT_NEW_TAG} or
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifParser.java40 * int event = parser.next();
60 * event = parser.next();
260 * Moves the parser forward and returns the next parsing event
271 protected int next() throws IOException, ExifInvalidFormatException { method in class:ExifParser
280 return next();
303 Log.w(TAG, "Invalid size of link to next IFD: " + offsetSize);
307 Log.w(TAG, "Invalid link to next IFD: " + ifdOffset);
408 * If {@link #next()} return {@link #EVENT_NEW_TAG} or
/packages/apps/Launcher3/src/com/android/gallery3d/exif/
H A DExifParser.java40 * int event = parser.next();
60 * event = parser.next();
260 * Moves the parser forward and returns the next parsing event
271 protected int next() throws IOException, ExifInvalidFormatException { method in class:ExifParser
280 return next();
303 Log.w(TAG, "Invalid size of link to next IFD: " + offsetSize);
307 Log.w(TAG, "Invalid link to next IFD: " + ifdOffset);
408 * If {@link #next()} return {@link #EVENT_NEW_TAG} or
/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DSmilPlayer.java362 public synchronized void next() { method in class:SmilPlayer

Completed in 1031 milliseconds

12