HomeSort by relevance Sort by last modified time
    Searched refs:COLUMN_SIZE (Results 1 - 25 of 63) sorted by null

1 2 3

  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/archives/
ReadableArchiveTest.java 97 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
107 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
118 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
138 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
155 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
173 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
202 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
220 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
234 childCursor.getInt(childCursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
285 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
    [all...]
WriteableArchiveTest.java 165 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
180 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
215 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
247 cursor.getInt(cursor.getColumnIndexOrThrow(Document.COLUMN_SIZE)));
ResourcesProvider.java 53 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
96 row.add(Document.COLUMN_SIZE, 0);
151 row.add(Document.COLUMN_SIZE, fd.getLength());
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
TestRootProvider.java 51 Document.COLUMN_SIZE,
87 row.add(Document.COLUMN_SIZE, 0);
101 row.add(Document.COLUMN_SIZE, 0);
InspectorProvider.java 105 row.add(Document.COLUMN_SIZE, size);
  /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;
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestDocumentsProvider.java 46 Document.COLUMN_SIZE,
119 .add(Document.COLUMN_SIZE, doc.size)
TestModel.java 41 Document.COLUMN_SIZE,
124 row.add(Document.COLUMN_SIZE, doc.size);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
SortingCursorWrapperTest.java 61 Document.COLUMN_SIZE,
124 row.add(Document.COLUMN_SIZE, rand.nextInt());
194 int size = DocumentInfo.getCursorInt(cursor, Document.COLUMN_SIZE);
217 int size = DocumentInfo.getCursorInt(cursor, Document.COLUMN_SIZE);
234 row.add(Document.COLUMN_SIZE, i);
268 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE);
286 row.add(Document.COLUMN_SIZE, i);
319 int size = DocumentInfo.getCursorInt(c, Document.COLUMN_SIZE);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/
ModelTest.java 53 Document.COLUMN_SIZE,
90 row.add(Document.COLUMN_SIZE, rand.nextInt());
  /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 763 values.putNull(Document.COLUMN_SIZE);
804 values.put(Document.COLUMN_SIZE, root.mMaxCapacity - root.mFreeSpace);
    [all...]
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportStorageProvider.java 46 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
  /packages/apps/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/DocumentsUI/src/com/android/documentsui/archives/
Archive.java 63 Document.COLUMN_SIZE,
279 row.add(Document.COLUMN_SIZE, entry.getSize());
  /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 119 private static final String COLUMN_SIZE = "size";
134 COLUMN_SIZE + " TEXT NOT NULL, " +
139 "PRIMARY KEY (" + COLUMN_COMPONENT + ", " + COLUMN_USER + ", " + COLUMN_SIZE + ") " +
148 values.put(CacheDb.COLUMN_SIZE, key.size);
259 + 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/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...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/sorting/
SortModel.java 257 new String[]{ Document.COLUMN_SIZE });
308 columnName = Document.COLUMN_SIZE;
  /frameworks/support/core-utils/kitkat/android/support/v4/provider/
DocumentsContractApi19.java 88 return queryForLong(context, self, DocumentsContract.Document.COLUMN_SIZE, 0);
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
GridDocumentHolder.java 167 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 64 Document.COLUMN_LAST_MODIFIED, Document.COLUMN_FLAGS, Document.COLUMN_SIZE,
217 row.add(Document.COLUMN_SIZE, size);
  /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());

Completed in 3356 milliseconds

1 2 3