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

1234567891011>>

/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/Email/provider_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/services/Telephony/src/com/android/phone/common/mail/store/imap/
H A DImapResponseParser.java92 * Peek next one byte.
98 final int next = mIn.peek();
99 if (next == -1) {
102 return next;
112 int next = mIn.read();
113 if (next == -1) {
116 return next;
132 * Reads the next response available on the stream and returns an
188 * Read next byte from stream and throw it away. If the byte is different from {@code expected}
192 final int next
[all...]
/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
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/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
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/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
H A DParseException.java131 Token tok = currentToken.next;
139 tok = tok.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
/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
H A DParseException.java131 Token tok = currentToken.next;
139 tok = tok.next;
141 retval += "\" at line " + currentToken.next.beginLine + ", column " + currentToken.next.beginColumn;
/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
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/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
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/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/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/Messaging/src/android/support/v7/mms/
H A DCarrierConfigXmlParser.java48 int nextEvent = mInputParser.next();
52 nextEvent = mInputParser.next();
/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/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DSplineMath.java39 double[] next = null;
48 next = points[pivot + 1];
49 if (x <= next[0]) {
51 double x2 = next[0];
53 double y2 = next[1];
70 curve[i][0] = (float) (next[0]);
71 curve[i][1] = (float) (next[1]);
79 double[] next = null;
90 next = mPoints[pivot + 1];
92 double x2 = next[
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java173 App entry = i.next();
191 App entry = i.next();
222 Connection connection = i.next();
237 Connection connection = i.next();
250 App entry = i.next();
263 App entry = i.next();
276 App entry = i.next();
308 Connection connection = i.next();
320 Connection connection = ii.next();
337 Connection connection = i.next();
[all...]

Completed in 810 milliseconds

1234567891011>>