Searched refs:next (Results 1 - 25 of 153) sorted by relevance

1234567

/packages/apps/Email/src/com/android/email/mail/store/imap/
H A DImapResponseParser.java109 * Peek next one byte.
115 final int next = mIn.peek();
116 if (next == -1) {
119 return next;
129 int next = mIn.read();
130 if (next == -1) {
133 mDiscourseLogger.addReceivedByte(next);
134 return next;
150 * Reads the next response available on the stream and returns an
209 * Read next byt
[all...]
/packages/apps/Email/emailcommon/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
H A DParseException.java131 Token tok = currentToken.next;
139 tok = tok.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
/packages/apps/Email/emailcommon/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
H A DParseException.java131 Token tok = currentToken.next;
139 tok = tok.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
H A DContentTypeParser.java189 if ((oldToken = token).next != null) token = token.next;
190 else token = token.next = token_source.getNextToken();
202 if (token.next != null) token = token.next;
203 else token = token.next = token_source.getNextToken();
212 if (t.next != null) t = t.next;
213 else t = t.next = token_source.getNextToken();
219 if ((jj_nt=token.next)
[all...]
/packages/apps/Email/emailcommon/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
H A DParseException.java131 Token tok = currentToken.next;
139 tok = tok.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
H A DDateTimeParser.java488 if ((oldToken = token).next != null) token = token.next;
489 else token = token.next = token_source.getNextToken();
501 if (token.next != null) token = token.next;
502 else token = token.next = token_source.getNextToken();
511 if (t.next != null) t = t.next;
512 else t = t.next = token_source.getNextToken();
518 if ((jj_nt=token.next)
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DPathMatcher.java46 Node next = current.getChild(segments[i]);
47 if (next == null) {
48 next = current.getChild("*");
49 if (next != null) {
55 current = 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...]
H A Dprocstatreport.py179 next = state.get("/proc/stat:cpu", "").split()
180 if last and next:
181 stime = sum([int(next[x]) - int(last[x]) for x in [2, 5, 6]])
182 utime = sum([int(next[x]) - int(last[x]) for x in [0, 1]])
183 idle = sum([int(next[x]) - int(last[x]) for x in [3, 4]])
228 next = int(state.get(key, -1))
229 if last != -1 and next != -1:
231 total_time += next - last
232 total_cycles += (next - last) * speed
264 next
[all...]
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DAbstractPromoter.java27 protected AbstractPromoter(SuggestionFilter filter, Promoter next, Config config) { argument
29 mNext = next;
H A DShortcutPromoter.java29 public ShortcutPromoter(Config config, Promoter next, SuggestionFilter filter) { argument
30 super(filter, next, config);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DSymmetricalLinearTween.java76 long next = SystemClock.uptimeMillis() + FRAME_TIME;
77 mHandler.postAtTime(mTick, next);
107 long next = base + ((frame+1)*FRAME_TIME);
109 mHandler.postAtTime(this, next);
/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
H A DActionBar.java72 int next = switcher.getNextView().getId();
73 if ((showShare && (next == R.id.share_button))
74 || (!showShare && (next == R.id.save_button))) {
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBoxBlurFilter.java90 // Slide to the next pixel, adding the new rightmost pixel and
93 int next = in[read + sample(x + RADIUS + 1, width, mode)];
94 red += ((next & RED_MASK) - (prev & RED_MASK)) >> RED_MASK_SHIFT;
95 green += ((next & GREEN_MASK) - (prev & GREEN_MASK)) >> GREEN_MASK_SHIFT;
96 blue += (next & BLUE_MASK) - (prev & BLUE_MASK);
/packages/apps/Mms/src/com/android/mms/transaction/
H A DObservable.java72 mIterator.next().update(this);
/packages/apps/Email/src/com/beetstra/jutf7/
H A DCharsetProvider.java72 Charset charset = iter.next();
77 Charset charset = iter.next();
/packages/apps/Music/src/com/android/music/
H A DIMediaPlaybackService.aidl32 void next();
/packages/apps/Browser/src/com/android/browser/
H A DTabScrollView.java248 int next = -1;
250 next = mSelected;
252 next = count - i - 1;
253 if (next <= mSelected && next > 0) {
254 next--;
257 return next;
/packages/apps/Calendar/src/com/android/calendar/
H A DDayFragment.java194 DayView next = (DayView) mViewSwitcher.getNextView();
196 next.setFirstVisibleHour(currentView.getFirstVisibleHour());
199 next.setSelected(goToTime, ignoreTime, animateToday);
200 next.reloadEvents();
202 next.requestFocus();
203 next.updateTitle();
204 next.restartCurrentTimeUpdates();
/packages/apps/Contacts/src/com/android/contacts/
H A DCollapser.java73 if (itr.next() == null) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DCollapser.java73 if (itr.next() == null) {
/packages/apps/Email/emailcommon/src/org/apache/commons/io/filefilter/
H A DOrFileFilter.java119 IOFileFilter fileFilter = iter.next();
133 IOFileFilter fileFilter = iter.next();

Completed in 493 milliseconds

1234567