Searched refs:token (Results 101 - 125 of 132) sorted by relevance

123456

/packages/providers/ContactsProvider/tests/assets/testSynced/
H A Dlegacy_contacts.sql56 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
77 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
137 CREATE INDEX peopleLookupIndex ON peopleLookup (token,source);
138 CREATE INDEX peopleLookupWithPhoneticNameIndex ON peopleLookupWithPhoneticName (token,source);
/packages/apps/Calendar/src/com/android/calendar/event/
H A DCreateEventDialogFragment.java96 public void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
H A DEditEventFragment.java161 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
175 switch (token) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DBinaryDictionaryTests.java828 int token = 0;
831 binaryDictionary.getNextWordProperty(token);
849 token = result.mNextToken;
850 } while (token != 0);
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java1114 for (String token: sDayTokens) {
1116 if (dow.indexOf(token) >= 0) {
1125 * Extract the value of a token in an RRULE string
1127 * @param token a token to look for in the RRULE
1128 * @return the value of that token
1130 static String tokenFromRrule(String rrule, String token) { argument
1131 int start = rrule.indexOf(token);
1134 start += token.length();
/packages/apps/Calendar/src/com/android/calendar/
H A DDeleteEventHelper.java112 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
H A DEventInfoFragment.java456 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
466 switch (token) {
612 sendAccessibilityEventIfQueryDone(token);
635 private void sendAccessibilityEventIfQueryDone(int token) { argument
636 mCurrentQuery |= token;
/packages/apps/Music/src/com/android/music/
H A DAudioPreview.java131 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
H A DMusicUtils.java183 public static void unbindFromService(ServiceToken token) { argument
184 if (token == null) {
185 Log.e("MusicUtils", "Trying to unbind with null token");
188 ContextWrapper cw = token.mWrappedContext;
H A DMusicPicker.java381 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
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 DTrackBrowserActivity.java1395 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
1398 if (token == 0 && cookie != null && cursor != null &&
H A DAlbumBrowserActivity.java523 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
H A DArtistAlbumBrowserActivity.java583 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DConfirmAddDetailActivity.java456 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
466 switch (token) {
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DContactsSyncParser.java715 Rfc822Token token = tokens[0];
716 email = token.getAddress();
717 displayName = token.getName();
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DMmsUtils.java2254 for (final Rfc822Token token : tokens) {
2255 if (token != null && !TextUtils.isEmpty(token.getAddress())) {
2256 return token.getAddress();
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DPduParser.java485 * (Absolute-token Date-value | Relative-token Delta-seconds-value) */
493 /* Absolute-token or Relative-token */
494 int token = extractByteValue(pduDataStream);
504 if (PduHeaders.VALUE_RELATIVE_TOKEN == token) {
526 * (Address-present-token Encoded-string-value | Insert-address-token)
531 /* Address-present-token or Insert-address-token */
[all...]
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DPduParser.java511 * (Absolute-token Date-value | Relative-token Delta-seconds-value) */
518 /* Absolute-token or Relative-token */
519 int token = extractByteValue(pduDataStream);
529 if (PduHeaders.VALUE_RELATIVE_TOKEN == token) {
552 * (Address-present-token Encoded-string-value | Insert-address-token)
557 /* Address-present-token or Insert-address-token */
[all...]
/packages/services/Telecomm/src/com/android/server/telecom/
H A DPhoneAccountRegistrar.java279 long token = Binder.clearCallingIdentity();
284 Binder.restoreCallingIdentity(token);
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java311 * quoted phrases as one token. "one \"two three\"" ==> ["one" "two three"]
1144 * Escape any special characters in the search token
1145 * @param token the token to escape
1146 * @return the escaped token
1149 String escapeSearchToken(String token) { argument
1150 Matcher matcher = SEARCH_ESCAPE_PATTERN.matcher(token);
1166 String token;
1170 token = matcher.group(1);
1172 // unquoted token
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java984 public void removeNfcUnlockHandler(INfcUnlockHandler token) throws RemoteException { argument
986 mNfcUnlockManager.removeUnlockHandler(token.asBinder());
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java849 final long token = Binder.clearCallingIdentity();
853 Binder.restoreCallingIdentity(token);
/packages/apps/Nfc/src/com/android/nfc/beam/
H A DSendUi.java236 mWindowLayoutParams.token = new Binder();

Completed in 864 milliseconds

123456