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 150 final String authority = getCursorString(cursor, RootCursorWrapper.COLUMN_AUTHORITY);
162 this.documentId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
163 this.mimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
164 this.documentId = getCursorString(cursor, Document.COLUMN_DOCUMENT_ID);
165 this.mimeType = getCursorString(cursor, Document.COLUMN_MIME_TYPE);
166 this.displayName = getCursorString(cursor, Document.COLUMN_DISPLAY_NAME);
169 this.summary = getCursorString(cursor, Document.COLUMN_SUMMARY);
242 public static String getCursorString(Cursor cursor, String columnName) {

Completed in 63 milliseconds