HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 951 - 975 of 1949) sorted by null

<<31323334353637383940>>

  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
NameConverter.java 93 Cursor cursor = context.getContentResolver().query(uri, new String[]{
125 Cursor cursor = context.getContentResolver().query(builder.build(), STRUCTURED_NAME_FIELDS,
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockDatabaseHelper.java 165 Cursor cursor = db.query(OLD_ALARMS_TABLE_NAME, OLD_TABLE_COLUMNS,
212 final Cursor cursor = db.query(ALARMS_TABLE_NAME,
ClockProvider.java 61 public Cursor query(Uri uri, String[] projectionIn, String selection, String[] selectionArgs, method in class:ClockProvider
65 // Generate the body of the query
97 Cursor ret = qb.query(db, projectionIn, selection, selectionArgs,
101 LogUtils.e("Alarms.query: failed");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 46 * Projection for a query to get all columns necessary for an actual move.
65 * Projection for a query to get the original folder id for a message.
230 final Cursor moveCursor = cr.query(CONTENT_URI, ProjectionLastSyncedMailboxQuery.PROJECTION,
246 final Cursor messageCursor = cr.query(ContentUris.withAppendedId(
  /packages/apps/Email/src/com/android/email/
NotificationController.java 267 Cursor c = resolver.query(
328 final Cursor accountCursor = mContext.getContentResolver().query(EmailProvider.uiUri(
342 mContext.getContentResolver().query(uiAccount.settings.defaultInbox,
545 Cursor c = mContext.getContentResolver().query(Account.CONTENT_URI,
605 final Cursor mailboxCursor = contentResolver.query(
663 final Cursor accountCursor = contentResolver.query(accountUri,
686 final Cursor folderCursor = contentResolver.query(folderUri, UIProvider.FOLDERS_PROJECTION,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SecureAlbum.java 138 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION,
155 Cursor cursor = mContext.getContentResolver().query(uri, PROJECTION,
168 // Query existing ids.
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
SavedWallpaperImages.java 75 Cursor result = db.query(ImageDb.TABLE_NAME,
79 null, // select query
80 null, // args to select query
123 Cursor result = db.query(ImageDb.TABLE_NAME,
126 ImageDb.COLUMN_ID + " = ?", // select query
127 new String[] { Integer.toString(id) }, // args to select query
151 ImageDb.COLUMN_ID + " = ?", // SELECT query
153 Integer.toString(id) // args to SELECT query
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 195 // TODO ContentResolver.query() appends closing ')' to the selection argument
198 Cursor cursor = SqliteWrapper.query(context, context.getContentResolver(),
221 Cursor cursor = SqliteWrapper.query(
  /packages/apps/Music/src/com/android/music/
AlbumBrowserActivity.java 118 //Log.i("@@@", "starting query");
355 String query = ""; local
363 query = mCurrentAlbumName;
368 query = query + " " + mCurrentArtistNameForAlbum;
373 // unknown, the query and title strings will have at least one of those.
376 i.putExtra(SearchManager.QUERY, query);
438 cursor = MusicUtils.query(this, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI,
471 ret = MusicUtils.query(this, uri
    [all...]
CreatePlaylist.java 102 Cursor c = MusicUtils.query(this, MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI,
138 Cursor c = resolver.query(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI,
RenamePlaylist.java 122 Cursor c = MusicUtils.query(this, MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI,
139 Cursor c = MusicUtils.query(this, MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI,
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
LevenshteinFormatterTest.java 151 private void verifyFormatSuggestion(String query, String suggestion, SpanFormat... spans) {
152 Spanned s = mFormatter.formatSuggestion(query, suggestion);
168 verifyFormatSuggestion("query", "query",
169 new SpanFormat(0, "query", mQueryStyle));
173 verifyFormatSuggestion("query", "query suggested",
174 new SpanFormat(0, "query", mQueryStyle),
190 verifyFormatSuggestion("query", "suggested query",
    [all...]
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordContents.java 181 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
185 cursor = context.getContentResolver().query(UserDictionary.Words.CONTENT_URI,
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SearchRecentSuggestionsProvider.java 38 * String used to delimit different parts of a query.
51 private static final String NULL_COLUMN = "query";
68 // Uri and query support
95 ",query TEXT" +
143 "query AS " + SearchManager.SUGGEST_COLUMN_QUERY,
244 * Copy the projection, and change the query field alone.
260 queryAs = realQuery + " ' || query AS " + SearchManager.SUGGEST_COLUMN_QUERY;
262 queryAs = "query AS " + SearchManager.SUGGEST_COLUMN_QUERY;
267 // Assumes that newProjection[length-2] is the query field.
273 * Set the other query terms to be included in the user's query
287 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:SearchRecentSuggestionsProvider
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceContact.java 128 Cursor cursor = activity.getContentResolver().query(
303 Cursor cursor = activity.getContentResolver().query(
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.cpp 173 void Dictionary::getProperty(const char *const query, const int queryLength, char *const outResult,
176 return mDictionaryStructureWithBufferPolicy->getProperty(query, queryLength, outResult,
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarDatabaseHelperTest.java 463 Cursor goodCursor = mGoodDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
465 Cursor badCursor = mBadDb.query(SQLITE_MASTER, PROJECTION, null, null, null, null,
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadIdleService.java 99 final Cursor cursor = resolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI,
137 final Cursor cursor = resolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI,
DownloadReceiver.java 155 final Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
199 final Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 188 Cursor cursor = mResolver.query(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI,
205 Cursor cursor = mResolver.query(Downloads.Impl.CONTENT_URI, columns, null, null, null);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaThumbRequest.java 109 Cursor c = mCr.query(mThumbUri, THUMB_PROJECTION,
151 c = mCr.query(mThumbUri, THUMB_PROJECTION,
216 // time to query and fetch by using Cursor.getBlob
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 125 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:UserDictionaryProvider
153 // Get the database and run the query
155 Cursor c = qb.query(db, projection, selection, selectionArgs, null, null, orderBy);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 64 schema, netloc, url, params, query, fragments = \
66 if params or query or fragments:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 64 schema, netloc, url, params, query, fragments = \
66 if params or query or fragments:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 106 IChooseImportQuery query = new IChooseImportQuery() { local
116 true, query);

Completed in 1590 milliseconds

<<31323334353637383940>>