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

1234567891011

/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_ssession/src/
H A DSYNCML_DM_ChoiceAlert.cc40 if (p_alert_list_item != NULL && p_alert_list_item->next != NULL )
41 parseChoices(p_alert_list_item->next->next);
56 p_alert_list_item = p_alert_list_item->next;
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/hdr/
H A Dsmldevinfdtd.h75 struct sml_devinf_extlist_s *next; member in struct:sml_devinf_extlist_s
94 struct sml_devinf_ctdatalist_s *next; member in struct:sml_devinf_ctdatalist_s
104 struct sml_devinf_ctdataproplist_s *next; member in struct:sml_devinf_ctdataproplist_s
114 struct sml_devinf_ctcaplist_s *next; member in struct:sml_devinf_ctcaplist_s
132 struct sml_devinf_xmitlist_s *next; member in struct:sml_devinf_xmitlist_s
150 struct sml_devinf_datastorelist_s *next; member in struct:sml_devinf_datastorelist_s
H A Dsmlmetinfdtd.h73 SmlPcdataPtr_t next; member in struct:sml_metinf_anchor_s
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/ghdr/
H A Dsmldevinfdtd.h75 struct sml_devinf_extlist_s *next; member in struct:sml_devinf_extlist_s
94 struct sml_devinf_ctdatalist_s *next; member in struct:sml_devinf_ctdatalist_s
104 struct sml_devinf_ctdataproplist_s *next; member in struct:sml_devinf_ctdataproplist_s
114 struct sml_devinf_ctcaplist_s *next; member in struct:sml_devinf_ctcaplist_s
132 struct sml_devinf_xmitlist_s *next; member in struct:sml_devinf_xmitlist_s
150 struct sml_devinf_datastorelist_s *next; member in struct:sml_devinf_datastorelist_s
H A Dsmlmetinfdtd.h73 SmlPcdataPtr_t next; member in struct:sml_metinf_anchor_s
/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/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/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.cpp33 std::vector<DicNode> next; local
47 next.emplace_back(dicNode);
48 next.back().advanceDigraphIndex();
51 processChildDicNodes(dictionaryStructurePolicy, codePoint, &dicNode, &next);
54 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/DeskClock/src/com/android/deskclock/timer/
H A DTimers.java52 TimerObj t = i.next();
62 TimerObj t = i.next();
74 TimerObj timer = it.next();
86 TimerObj timer = it.next();
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java143 App entry = i.next();
172 Connection connection = i.next();
187 App entry = i.next();
200 App entry = i.next();
214 Connection connection = i.next();
226 Connection connection = ii.next();
243 Connection connection = i.next();
256 Connection connection = i.next();
266 Connection connection = i.next();
280 App entry = i.next();
[all...]
/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/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/wsm/src/
H A Dwsm_sm.c123 while ( p->next != NULL) p = p->next;
124 p->next = *newEle;
139 *p = (*p)->next;
156 *p = (*p)->next;
175 act = act->next;
179 root = act->next;
181 old->next = act->next;
246 pEle->next
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/src/
H A Dwsm_sm.c123 while ( p->next != NULL) p = p->next;
124 p->next = *newEle;
139 *p = (*p)->next;
156 *p = (*p)->next;
175 act = act->next;
179 root = act->next;
181 old->next = act->next;
246 pEle->next
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DEvent.java105 // The next event, if any. Null if there is no next event yet.
111 final Event next) {
120 mNextEvent = next;
143 final Event next, final boolean isKeyRepeat) {
146 null /* suggestedWordInfo */, isKeyRepeat ? FLAG_REPEAT : FLAG_NONE, next);
150 public static Event createDeadEvent(final int codePoint, final int keyCode, final Event next) { argument
154 null /* suggestedWordInfo */, FLAG_DEAD, next);
168 null /* suggestedWordInfo */, FLAG_NONE, null /* next */);
183 x, y, null /* suggestedWordInfo */, FLAG_NONE, null /* next */);
109 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
142 createHardwareKeypressEvent(final int codePoint, final int keyCode, final Event next, final boolean isKeyRepeat) argument
[all...]
/packages/apps/Mms/src/com/android/mms/transaction/
H A DObservable.java72 mIterator.next().update(this);
/packages/apps/Camera/src/com/android/camera/
H A DExif.java40 int event = parser.next();
62 event = parser.next();

Completed in 571 milliseconds

1234567891011