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

12345678

/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/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/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/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;
/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/tests/src/com/android/gallery3d/exif/
H A DExifXmlReader.java42 while (parser.next() != XmlPullParser.END_DOCUMENT) {
51 while (parser.next() != XmlPullParser.END_TAG) {
77 while (parser.next() != XmlPullParser.END_TAG) {
90 if (parser.next() == XmlPullParser.TEXT) {
92 parser.next();
H A DExifParserTest.java56 int event = parser.next();
79 event = parser.next();
112 int event = parser.next();
141 event = parser.next();
165 int event = parser.next();
191 event = parser.next();
200 int event = parser.next();
220 event = parser.next();
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimers.java58 TimerObj t = i.next();
68 TimerObj t = i.next();
80 TimerObj timer = it.next();
/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/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifReader.java36 int event = parser.next();
70 event = parser.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.java198 DayView next = (DayView) mViewSwitcher.getNextView();
200 next.setFirstVisibleHour(currentView.getFirstVisibleHour());
203 next.setSelected(goToTime, ignoreTime, animateToday);
204 next.reloadEvents();
206 next.requestFocus();
207 next.updateTitle();
208 next.restartCurrentTimeUpdates();
/packages/apps/Contacts/src/com/android/contacts/
H A DCollapser.java73 if (itr.next() == null) {
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcApplication.java36 RunningAppProcessInfo appInfo = (RunningAppProcessInfo)(i.next());

Completed in 410 milliseconds

12345678