/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/ |
TestModel.java | 34 Document.COLUMN_SIZE, 57 row.add(Document.COLUMN_SIZE, rand.nextInt());
|
SectionBreakDocumentsAdapterWrapperTest.java | 74 row.add(Document.COLUMN_SIZE, i); 99 row.add(Document.COLUMN_SIZE, i);
|
ModelTest.java | 55 Document.COLUMN_SIZE, 92 row.add(Document.COLUMN_SIZE, rand.nextInt()); 216 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE); 232 row.add(Document.COLUMN_SIZE, i); 265 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE);
|
/frameworks/support/documents-archive/tests/src/android/support/provider/ |
DocumentArchiveTest.java | 100 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 110 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 120 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 138 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 153 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 169 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 194 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 210 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 223 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); 261 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE))); [all...] |
StubProvider.java | 47 Document.COLUMN_DOCUMENT_ID, Document.COLUMN_DISPLAY_NAME, Document.COLUMN_SIZE, 125 row.add(Document.COLUMN_SIZE, file.length());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/ |
FileExplorerView.java | 44 private final static String COLUMN_SIZE = 65 DeviceExplorer.COLUMN_SIZE = COLUMN_SIZE;
|
/frameworks/base/packages/Shell/src/com/android/shell/ |
BugreportStorageProvider.java | 47 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 194 row.add(Document.COLUMN_SIZE, file.length());
|
/packages/apps/Email/provider_src/com/android/email/ |
AttachmentInfo.java | 53 public static final int COLUMN_SIZE = 1; 97 this(context, c.getLong(COLUMN_ID), c.getLong(COLUMN_SIZE), c.getString(COLUMN_FILENAME),
|
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/ |
MtpDatabaseConstants.java | 137 Document.COLUMN_SIZE + " INTEGER);";
|
MtpDatabase.java | 764 values.putNull(Document.COLUMN_SIZE); 805 values.put(Document.COLUMN_SIZE, root.mMaxCapacity - root.mFreeSpace); [all...] |
MtpDocumentsProvider.java | 73 Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 556 MtpDatabase.strings(Document.COLUMN_SIZE, Document.COLUMN_DISPLAY_NAME));
|
/frameworks/base/packages/DocumentsUI/perf-tests/src/com/android/documentsui/ |
StressProvider.java | 76 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 190 row.add(Document.COLUMN_SIZE, document.size);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
WidgetPreviewLoader.java | 292 final static String COLUMN_SIZE = "size"; 306 COLUMN_SIZE + " TEXT NOT NULL, " + 308 "PRIMARY KEY (" + COLUMN_NAME + ", " + COLUMN_SIZE + ") " + 366 values.put(CacheDb.COLUMN_SIZE, mSize); 411 CacheDb.COLUMN_SIZE + " = ?";
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
WidgetPreviewLoader.java | 113 private static final String COLUMN_SIZE = "size"; 128 COLUMN_SIZE + " TEXT NOT NULL, " + 133 "PRIMARY KEY (" + COLUMN_COMPONENT + ", " + COLUMN_USER + ", " + COLUMN_SIZE + ") " + 155 values.put(CacheDb.COLUMN_SIZE, key.size); 265 + CacheDb.COLUMN_SIZE + " = ?",
|
/development/samples/Vault/src/com/example/android/vault/ |
VaultProvider.java | 103 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 253 row.add(Document.COLUMN_SIZE, meta.optLong(Document.COLUMN_SIZE));
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/ |
CopyJob.java | 394 Document.COLUMN_SIZE, 579 Document.COLUMN_SIZE 595 long size = getCursorLong(cursor, Document.COLUMN_SIZE);
|
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/ |
MtpDatabaseTest.java | 52 DocumentsContract.Document.COLUMN_SIZE, 107 assertEquals(1000, getInt(cursor, COLUMN_SIZE)); 169 assertEquals(1000, getInt(cursor, COLUMN_SIZE)); 223 assertEquals(1024, getInt(cursor, COLUMN_SIZE)); 242 assertEquals(2 * 1024 * 1024, getInt(cursor, COLUMN_SIZE)); 261 assertEquals(3 * 1024 * 1024, getInt(cursor, COLUMN_SIZE)); [all...] |
/cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/ |
MyDocumentsProvider.java | 54 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE, 184 row.add(Document.COLUMN_SIZE, size);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
DirectoryLoader.java | 222 return Document.COLUMN_SIZE + " DESC";
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/ |
GridDocumentHolder.java | 128 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
|
ListDocumentHolder.java | 125 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
|
/frameworks/support/v4/kitkat/android/support/v4/provider/ |
DocumentsContractApi19.java | 71 return queryForLong(context, self, DocumentsContract.Document.COLUMN_SIZE, 0);
|
/developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/ |
MyCloudProvider.java | 77 Document.COLUMN_SIZE 511 row.add(Document.COLUMN_SIZE, file.length());
|
/developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/ |
MyCloudProvider.java | 77 Document.COLUMN_SIZE 511 row.add(Document.COLUMN_SIZE, file.length());
|
/development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/ |
MyCloudProvider.java | 77 Document.COLUMN_SIZE 511 row.add(Document.COLUMN_SIZE, file.length());
|