HomeSort by relevance Sort by last modified time
    Searched refs:getCursorLong (Results 1 - 7 of 7) sorted by null

  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
FilteringCursorWrapper.java 21 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
57 final long lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
GridDocumentHolder.java 20 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
125 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
128 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
ListDocumentHolder.java 20 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
121 final long docLastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
125 final long docSize = getCursorLong(cursor, Document.COLUMN_SIZE);
Model.java 23 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
188 longValues[pos] = getCursorLong(mCursor, Document.COLUMN_SIZE);
370 long l = getCursorLong(mCursor, Document.COLUMN_LAST_MODIFIED);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentInfo.java 159 this.lastModified = getCursorLong(cursor, Document.COLUMN_LAST_MODIFIED);
162 this.size = getCursorLong(cursor, Document.COLUMN_SIZE);
301 public static long getCursorLong(Cursor cursor, String columnName) {
RootInfo.java 22 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
187 root.availableBytes = getCursorLong(cursor, Root.COLUMN_AVAILABLE_BYTES);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
CopyJob.java 26 import static com.android.documentsui.model.DocumentInfo.getCursorLong;
595 long size = getCursorLong(cursor, Document.COLUMN_SIZE);

Completed in 222 milliseconds