Lines Matching refs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
85 * is used in the {@code <intent-filter>} of a {@code <provider>}.
110 * Buffer is large enough to rewind past any EXIF headers.
131 * Unique ID of a document. This ID is both provided by and interpreted
133 * value by client applications. This column is required.
150 * directory containing additional documents, which is represented with
151 * the {@link #MIME_TYPE_DIR} MIME type. This column is required.
161 * user. This column is required.
168 * Summary of a document, which may be shown to a user. This column is
177 * January 1, 1970 00:00:00.0 UTC. This column is required, and may be
189 * Specific icon resource ID for a document. This column is optional,
198 * Flags that apply to a document. This column is required.
212 * is required.
219 * MIME type of a document which is a directory that may contain
240 * When a document is opened with {@link Intent#ACTION_OPEN_DOCUMENT},
241 * the calling application is granted both
253 * Flag indicating that a document is deletable.
262 * Flag indicating that a document is a directory that supports creation
263 * of new files within it. Only valid when {@link #COLUMN_MIME_TYPE} is
274 * pictures. Only valid when {@link #COLUMN_MIME_TYPE} is
284 * {@link #COLUMN_MIME_TYPE} is {@link #MIME_TYPE_DIR}.
304 * themselves. Only valid when {@link #COLUMN_MIME_TYPE} is
316 * names and flags. A root is the start of a tree of documents, such as a
328 * Unique ID of a root. This ID is both provided by and interpreted by a
330 * by client applications. This column is required.
337 * Flags that apply to a root. This column is required.
349 * Icon resource ID for a root. This column is required.
356 * Title for a root, which will be shown to a user. This column is
365 * Summary for this root, which may be shown to a user. This column is
375 * Document which is a directory that represents the top directory of
376 * this root. This column is required.
385 * Number of bytes available in this root. This column is optional, and
393 * MIME types supported by this root. This column is optional, and if
394 * {@code null} the root is assumed to support all MIME types. Multiple
415 * Flag indicating that this root offers content that is strictly local
416 * on the device. That is, no network requests are made for the content.
454 * Flag indicating that this root is currently empty. This may be used
456 * shown when creating documents and {@link #FLAG_SUPPORTS_CREATE} is
480 * indicating that a document provider is still loading data. For example, a
481 * provider has returned some results, but is still waiting on an
483 * notification when loading is finished.
597 * This is typically used to access documents under a user-selected
653 * This is typically used to access documents under a user-selected
793 * @param signal signal used to indicate if caller is no longer interested
832 BufferedInputStream is = null;
836 is = new BufferedInputStream(new FileInputStream(fd), THUMBNAIL_BUFFER_SIZE);
837 is.mark(THUMBNAIL_BUFFER_SIZE);
844 if (is != null) {
845 BitmapFactory.decodeStream(is, null, opts);
855 if (is != null) {
856 is.reset();
857 bitmap = BitmapFactory.decodeStream(is, null, opts);
927 * name, that new document is returned and the original document is no
928 * longer valid. Otherwise, the original document is returned.