HomeSort by relevance Sort by last modified time
    Searched defs:getCursorString (Results 1 - 2 of 2) sorted by null

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 77 String mimeType = getCursorString(cursor, COLUMN_MEDIA_TYPE);
115 final String header = getCursorString(headers, RequestHeaders.COLUMN_HEADER);
142 private static String getCursorString(Cursor cursor, String column) {
147 return Uri.parse(getCursorString(cursor, column));
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentInfo.java 141 final String authority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
153 this.documentId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
154 this.mimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
155 this.documentId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
156 this.mimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
157 this.displayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
160 this.summary = getCursorString(cursor, Document.COLUMN_SUMMARY);
233 public static String getCursorString(Cursor cursor, String columnName) {

Completed in 2057 milliseconds