| /packages/apps/Tag/src/com/android/apps/tag/record/ |
| VCardRecord.java | 40 import android.database.Cursor;
|
| /packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
| Account.java | 21 import android.database.Cursor; 311 public Account buildFrom(Cursor cursor) { 312 return new Account(cursor); 445 protected Account(Cursor cursor) { 446 displayName = cursor.getString(cursor.getColumnIndex(UIProvider.AccountColumns.NAME)); 447 senderName = cursor.getString(cursor.getColumnIndex(UIProvider.AccountColumns.SENDER_NAME)) [all...] |
| /packages/experimental/RpcPerformance/src/com/android/rpc_performance/ |
| ProviderPerfActivity.java | 18 // TODO: find AIDL for ContentResolver. add queryExtensible() returning struct{Cursor?,String? singleRow} 36 import android.database.Cursor; 420 Cursor c = null; 429 Log.w(TAG, "cursor null"); 610 Cursor c = null; 619 Log.w(TAG, "cursor null"); 640 Cursor c = null;
|
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
| FastScrollingIndexCache.java | 21 import android.database.Cursor; 78 * values, which are {@link Bundle}s that will be appended to a {@link Cursor} as extras. 165 * Creates and returns a {@link Bundle} that is appended to a {@link Cursor} as extras.
|
| /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
| ContactsActor.java | 41 import android.database.Cursor; 639 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_RAW_CONTACTS, null, local 641 if (!cursor.moveToFirst()) { 642 cursor.close(); 645 final long aggId = cursor.getLong(Projections.COL_CONTACTS_ID); 646 cursor.close(); 654 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, local 656 final int count = cursor.getCount() 665 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, local [all...] |
| VoicemailProviderTest.java | 21 import android.database.Cursor; 100 Cursor c = mResolver.query(uri, projection, Calls.NEW + "=0", null, 406 Cursor cursor = null; local 408 cursor = mResolver.query(uri, null, null ,null, null); 409 assertEquals(1, cursor.getCount()); 420 MoreCloseables.closeQuietly(cursor); 532 Cursor cursor = mResolver.query(voicemailUri(), null, null, null, null); local 533 List<String> columnNames = Arrays.asList(cursor.getColumnNames()) [all...] |
| /packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
| StorageUtils.java | 30 import android.database.Cursor;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
| X.h | 103 typedef XID Cursor; 356 #define BadCursor 6 /* parameter not a Cursor */ 627 * CURSOR STUFF
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/ |
| X.h | 103 typedef XID Cursor; 356 #define BadCursor 6 /* parameter not a Cursor */ 627 * CURSOR STUFF
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| SubscriptionController.java | 24 import android.database.Cursor; 261 * @param cursor 264 private SubscriptionInfo getSubInfoRecord(Cursor cursor) { 265 int id = cursor.getInt(cursor.getColumnIndexOrThrow( 267 String iccId = cursor.getString(cursor.getColumnIndexOrThrow( 269 int simSlotIndex = cursor.getInt(cursor.getColumnIndexOrThrow 337 Cursor cursor = mContext.getContentResolver().query(SubscriptionManager.CONTENT_URI, local 635 Cursor cursor = mContext.getContentResolver().query(SubscriptionManager.CONTENT_URI, local 687 Cursor cursor = resolver.query(SubscriptionManager.CONTENT_URI, local 1594 Cursor cursor = mContext.getContentResolver().query(SubscriptionManager.CONTENT_URI, local 1754 Cursor cursor = resolver.query(SubscriptionManager.CONTENT_URI, local [all...] |
| /packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
| ContactListItemView.java | 23 import android.database.Cursor; [all...] |
| /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
| SettingsProvider.java | 35 import android.database.Cursor; 310 return "vnd.android.cursor.dir/" + args.table; 312 return "vnd.android.cursor.item/" + args.table; 317 public Cursor query(Uri uri, String[] projection, String where, String[] whereArgs, 558 Cursor globalCursor = getAllGlobalSettings(ALL_COLUMNS); 568 Cursor secureCursor = getAllSecureSettings(userId, ALL_COLUMNS); 577 Cursor systemCursor = getAllSystemSettings(userId, ALL_COLUMNS); 586 private void dumpSettings(Cursor cursor, PrintWriter pw) { 587 if (cursor == null || !cursor.moveToFirst()) 1500 MatrixCursor cursor = new MatrixCursor(projection, 1); local 1914 Cursor cursor = queryBuilder.query(database, ALL_COLUMNS, local [all...] |
| SettingsBackupAgent.java | 26 import android.database.Cursor; 868 Cursor cursor = getContentResolver().query(Settings.System.CONTENT_URI, PROJECTION, null, local 878 Cursor cursor = getContentResolver().query(Settings.Secure.CONTENT_URI, PROJECTION, null, local 888 Cursor cursor = getContentResolver().query(Settings.Global.CONTENT_URI, PROJECTION, null, local [all...] |
| /packages/apps/Email/tests/src/com/android/email/provider/ |
| ProviderTests.java | 24 import android.database.Cursor; 65 * TODO: Add tests for cursor notification mechanism. (setNotificationUri and notifyChange) 69 * what notification URI each cursor has, and with which URI is notified when 366 Cursor c = null; 388 Cursor c = null; 476 Cursor c = null; 506 Cursor c = null; [all...] |
| /packages/apps/Messaging/src/com/android/messaging/sms/ |
| MmsUtils.java | 26 import android.database.Cursor; 743 final Cursor thread = cr.query( 782 Cursor c = null; 1273 final Cursor cursor = resolver.query(Mms.CONTENT_URI, local 1494 Cursor cursor = null; local 1531 Cursor cursor = null; local 1568 Cursor cursor = null; local 1636 Cursor cursor = null; local 1704 final Cursor cursor = SqliteWrapper.query( local 2215 Cursor cursor = null; local [all...] |
| /frameworks/base/core/java/com/android/internal/app/ |
| AlertController.java | 29 import android.database.Cursor; [all...] |
| /packages/apps/Messaging/src/com/android/messaging/datamodel/ |
| MessageNotificationState.java | 22 import android.database.Cursor; 628 final Cursor participantsCursor = context.getContentResolver().query( 676 Cursor convMessageCursor = null; [all...] |
| /external/clang/lib/Format/ |
| Format.cpp | [all...] |
| /packages/apps/Calendar/src/com/android/calendar/event/ |
| EditEventView.java | 30 import android.database.Cursor; 174 private Cursor mCalendarsCursor; 528 public CalendarsAdapter(Context context, int resourceId, Cursor c) { 534 public void bindView(View view, Context context, Cursor cursor) { 536 int colorColumn = cursor.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR); 537 int nameColumn = cursor.getColumnIndexOrThrow(Calendars.CALENDAR_DISPLAY_NAME); 538 int ownerColumn = cursor.getColumnIndexOrThrow(Calendars.OWNER_ACCOUNT); 540 colorBar.setBackgroundColor(Utils.getDisplayColorFromColor(cursor 546 String displayName = cursor.getString(nameColumn) [all...] |
| /packages/apps/Launcher2/src/com/android/launcher2/ |
| LauncherModel.java | 37 import android.database.Cursor; 502 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, 521 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, new String[] { 568 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI, null, [all...] |
| /packages/apps/Music/src/com/android/music/ |
| MediaPlaybackService.java | 33 import android.database.Cursor; 121 private Cursor mCursor; 533 Cursor crsr = MusicUtils.query(this, [all...] |
| /packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
| ConversationCursor.java | 29 import android.database.Cursor; 72 * ConversationCursor is a wrapper around a conversation list cursor that provides update/delete 76 public final class ConversationCursor implements Cursor, ConversationCursorOperationListener, 104 /** The resolver for the cursor instantiator's context */ 112 /** The cursor underlying the caching cursor */ 115 /** The new cursor obtained via a requery */ 121 /** The listeners registered for this cursor */ 132 /** Whether our first query on this cursor should include a limit */ 141 /** Column names for this cursor */ [all...] |
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
| ActivityTest.java | 10 import android.database.Cursor; 465 Cursor c = Robolectric.newInstanceOf(SQLiteCursor.class);
|
| /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
| ConnectionUtil.java | 29 import android.database.Cursor; 416 Cursor c = mDownloadManager.query(query);
|
| /frameworks/base/core/tests/coretests/src/android/provider/ |
| SettingsProviderTest.java | 27 import android.database.Cursor; 112 Cursor c = r.query(uri, null, null, null, null);
|