Searched defs:token (Results 26 - 50 of 77) sorted by relevance

1234

/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogQueryHandler.java54 /** The token for the query to fetch the old entries from the call log. */
56 /** The token for the query to mark all missed calls as old after seeing the call log. */
58 /** The token for the query to mark all new voicemails as old. */
60 /** The token for the query to mark all missed calls as read after seeing the call log. */
62 /** The token for the query to fetch voicemail status messages. */
157 private void fetchCalls(int token, int requestId, int callType, boolean newOnly, argument
193 startQuery(token, requestId, uri,
261 protected void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) { argument
262 if (token == QUERY_CALLLOG_TOKEN) {
272 } else if (token
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DCallerInfoAsyncQuery.java63 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
142 Log.d(this, "Processing event: " + cw.event + " token (arg1): " + msg.arg1 +
159 // passing the original token value back to the caller
198 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
199 Log.d(this, "##### onQueryComplete() ##### query complete for token: " + token);
217 // check the token and if needed, create the callerinfo object.
277 Log.d(this, "constructing CallerInfo object for token: " + token);
282 startQuery(token, endMarke
304 startQuery(int token, Context context, Uri contactRef, OnQueryCompleteListener listener, Object cookie) argument
334 startQuery(int token, Context context, String number, OnQueryCompleteListener listener, Object cookie) argument
420 addQueryListener(int token, OnQueryCompleteListener listener, Object cookie) argument
[all...]
H A DContactInfoCache.java99 public void onQueryComplete(int token, Object cookie, CallerInfo callerInfo) { argument
266 public void onImageLoadComplete(int token, Drawable photo, Bitmap photoIcon, Object cookie) { argument
/packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
H A Ddbregtest.cpp320 string token; local
322 while (cmdline >> token)
326 int pos = token.find("-");
330 switch (token[1])
333 --c; cmdline >> token; local
334 if (token.compare("rt") == 0)
338 else if (token.compare("a") == 0)
342 else if (token.compare("p") == 0)
371 cerr << progname << "illegal option " << token << endl;
388 image_list_file_name = token;
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DManageSimMessages.java128 int token, Object cookie, Cursor cursor) {
127 onQueryComplete( int token, Object cookie, Cursor cursor) argument
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
H A DContentTypeParser.java117 public Token token, jj_nt; field in class:ContentTypeParser
135 token = new Token();
147 token = new Token();
156 token = new Token();
165 token = new Token();
173 token = new Token();
181 token = new Token();
189 if ((oldToken = token).next != null) token = token
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
H A DDateTimeParser.java38 private static int parseDigits(Token token) { argument
39 return Integer.parseInt(token.image, 10);
198 {if (true) return token.image;}
411 public Token token, jj_nt; field in class:DateTimeParser
434 token = new Token();
446 token = new Token();
455 token = new Token();
464 token = new Token();
472 token = new Token();
480 token
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DRichInputMethodManager.java118 public boolean switchToNextInputMethod(final IBinder token, final boolean onlyCurrentIme) { argument
119 if (mImmWrapper.switchToNextInputMethod(token, onlyCurrentIme)) {
124 if (switchToNextInputSubtypeInThisIme(token, onlyCurrentIme)) {
127 return switchToNextInputMethodAndSubtype(token);
130 private boolean switchToNextInputSubtypeInThisIme(final IBinder token, argument
149 setInputMethodAndSubtype(token, nextSubtype);
153 private boolean switchToNextInputMethodAndSubtype(final IBinder token) { argument
167 imm.setInputMethod(token, nextImi.getId());
171 imm.setInputMethodAndSubtype(token, nextImi.getId(), firstSubtype);
356 public void setInputMethodAndSubtype(final IBinder token, fina argument
[all...]
/packages/services/Telephony/src/com/android/phone/
H A DADNList.java185 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
196 protected void onInsertComplete(int token, Object cookie, Uri uri) { argument
202 protected void onUpdateComplete(int token, Object cookie, int result) { argument
208 protected void onDeleteComplete(int token, Object cookie, int result) { argument
H A DContactsAsyncHelper.java54 * @param token Integer passed in {@link ContactsAsyncHelper#startObtainPhotoAsync(int,
62 public void onImageLoadComplete(int token, Drawable photo, Bitmap photoIcon, argument
234 " token: " + msg.what + " image URI: " + args.uri);
241 " token: " + msg.what + " image URI: " + args.uri +
315 * @param token Arbitrary integer which will be returned as the first argument of
326 public static final void startObtainPhotoAsync(int token, Context context, Uri personUri, argument
346 Message msg = sThreadHandler.obtainMessage(token);
H A DDeleteFdnContactScreen.java166 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
170 protected void onInsertComplete(int token, Object cookie, Uri uri) { argument
174 protected void onUpdateComplete(int token, Object cookie, int result) { argument
178 protected void onDeleteComplete(int token, Object cookie, int result) { argument
H A DEditFdnContactScreen.java433 protected void onQueryComplete(int token, Object cookie, Cursor c) { argument
437 protected void onInsertComplete(int token, Object cookie, Uri uri) { argument
444 protected void onUpdateComplete(int token, Object cookie, int result) { argument
451 protected void onDeleteComplete(int token, Object cookie, int result) { argument
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DAsyncQueryServiceTest.java113 work[index].token = ++mId;
125 aqs.startQuery(work[index].token, work[index].cookie, work[index].uri,
142 work[index].token = ++mId;
152 aqs.startInsert(work[index].token, work[index].cookie, work[index].uri, work[index].values,
168 work[index].token = ++mId;
180 aqs.startUpdate(work[index].token, work[index].cookie, work[index].uri, work[index].values,
196 work[index].token = ++mId;
206 aqs.startDelete(work[index].token,
226 work[index].token = ++mId;
239 aqs.startBatch(work[index].token,
495 onQueryComplete(int token, Object cookie, Cursor cursor) argument
514 onInsertComplete(int token, Object cookie, Uri uri) argument
527 onUpdateComplete(int token, Object cookie, int result) argument
540 onDeleteComplete(int token, Object cookie, int result) argument
553 onBatchComplete(int token, Object cookie, ContentProviderResult[] results) argument
[all...]
/packages/apps/Music/src/com/android/music/
H A DPlaylistBrowserActivity.java558 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
H A DQueryBrowserActivity.java356 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
H A DAlbumBrowserActivity.java523 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
H A DMusicPicker.java381 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DSearchIndexManager.java178 public void appendToken(String token) { argument
179 if (TextUtils.isEmpty(token)) {
186 mSbTokens.append(token);
200 // Then, if the name contains more than one FTS token, put each token into the index
213 // So, here, we put each token in a name into the index too. In the case above,
422 for (String token : FTS_TOKEN_SEPARATOR_RE.split(s)) {
423 if (!TextUtils.isEmpty(token)) {
424 ret.add(token);
431 * Tokenizes the query and normalizes/hex encodes each token
446 addToken(StringBuilder builder, String token) argument
490 addToken(StringBuilder builder, String token) argument
502 addToken(StringBuilder builder, String token) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventFragment.java161 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
175 switch (token) {
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectSyncedCalendarsMultiAccountAdapter.java97 // when a new update comes in, we'd like to leave a token space that won't be canceled.
148 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
175 setChildrenCursor(token, newCursor);
443 public RefreshCalendars(int token, String account, String accountType) { argument
444 mToken = token;
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java450 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
460 switch (token) {
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DMessage.java590 * @param token (optional) token to identify the command to the handler
593 public void markAlwaysShowImages(AsyncQueryHandler handler, int token, Object cookie) { argument
599 handler.startUpdate(token, cookie, uri, values, null, null);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.java614 jj_la = xla; jj_lastpos = jj_scanpos = token;
621 jj_la = xla; jj_lastpos = jj_scanpos = token;
700 public Token token, jj_nt; field in class:AddressListParser
730 token = new Token();
743 token = new Token();
754 token = new Token();
764 token = new Token();
774 token = new Token();
783 token = new Token();
793 if ((oldToken = token)
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DApiServiceListener.java247 * @param token The token given in the original request
253 Bitmap thumbnail, int index, int token, Exception exception) {
252 onMediaItemThumbnail(String projectPath, String mediaItemId, Bitmap thumbnail, int index, int token, Exception exception) argument
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DMediaItemView.java384 public boolean setBitmap(Bitmap bitmap, int index, int token) { argument
386 if (token != mGeneration) {

Completed in 978 milliseconds

1234