OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Images
(Results
1 - 25
of
44
) sorted by null
1
2
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/provider/
Images.java
22
public class
Images
{
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/provider/
Images.java
22
public class
Images
{
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/provider/
Images.java
22
public class
Images
{
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowMediaStoreTest.java
3
import static android.provider.MediaStore.
Images
;
15
assertThat(
Images
.Media.EXTERNAL_CONTENT_URI.toString()).isEqualTo("content://media/external/
images
/media");
16
assertThat(
Images
.Media.INTERNAL_CONTENT_URI.toString()).isEqualTo("content://media/internal/
images
/media");
ShadowAsyncQueryHandlerTest.java
3
import static android.provider.MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMediaStore.java
14
@Implements(MediaStore.
Images
.class)
17
@Implements(MediaStore.
Images
.Media.class)
/device/linaro/hikey/build/tasks/
dtimage.mk
12
#
Images
will be packed into target_files zip, and hikey-img.zip.
/development/samples/ApiDemos/src/com/example/android/apis/content/
PhotosContentJob.java
48
= MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI.getPathSegments();
52
MediaStore.
Images
.ImageColumns._ID, MediaStore.
Images
.ImageColumns.DATA
67
// Look for specific changes to
images
in the provider.
69
MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI,
151
selection.append(MediaStore.
Images
.ImageColumns._ID);
163
MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI,
/external/glide/library/src/main/java/com/bumptech/glide/load/data/
MediaStoreThumbFetcher.java
21
* thumbs using {@link android.provider.MediaStore.
Images
.Thumbnails} and
163
return context.getContentResolver().query(MediaStore.
Images
.Thumbnails.EXTERNAL_CONTENT_URI, new String[] {
164
MediaStore.
Images
.Thumbnails.DATA
165
}, MediaStore.
Images
.Thumbnails.IMAGE_ID + " = ? AND " + MediaStore.
Images
.Thumbnails.KIND + " = ?",
166
new String[] { id, String.valueOf(MediaStore.
Images
.Thumbnails.MINI_KIND) }, null);
/external/ImageMagick/api_examples/
magick_script.mgk
20
A bit like what Imagemagick does with
Images
!
/cts/tests/tests/provider/src/android/provider/cts/
MediaStore_DownloadsTest.java
39
import android.provider.MediaStore.
Images
;
95
mExternalImages = MediaStore.
Images
.Media.getContentUri(mVolumeName);
160
cursor.getString(cursor.getColumnIndex(
Images
.Media.MIME_TYPE)));
345
values.put(
Images
.Media.DISPLAY_NAME, displayName);
346
values.put(
Images
.Media.TITLE, displayName);
347
values.put(
Images
.Media.DESCRIPTION, description);
348
values.put(
Images
.Media.DATA, file.getAbsolutePath());
349
values.put(
Images
.Media.DATE_ADDED, System.currentTimeMillis() / 1000);
350
values.put(
Images
.Media.DATE_MODIFIED, System.currentTimeMillis() / 1000);
351
values.put(
Images
.Media.MIME_TYPE, mimeType)
[
all
...]
MediaStore_Images_ThumbnailsTest.java
47
import android.provider.MediaStore.
Images
.Media;
48
import android.provider.MediaStore.
Images
.Thumbnails;
116
mExternalImages = MediaStore.
Images
.Media.getContentUri(mVolumeName);
377
Bitmap foo = MediaStore.
Images
.Thumbnails.getThumbnail(mContentResolver,
382
// Remove one of the
images
, which will also delete any thumbnails
393
Bitmap foo = MediaStore.
Images
.Thumbnails.getThumbnail(mContentResolver,
399
MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, null, null, null,
403
foo = MediaStore.
Images
.Thumbnails.getThumbnail(
405
MediaStore.
Images
.Thumbnails.MICRO_KIND, null);
453
MediaStore.
Images
.Thumbnails.MINI_KIND
[
all
...]
MediaStore_FilesTest.java
79
mExternalImages = MediaStore.
Images
.Media.getContentUri(mVolumeName);
312
insertValues.put(MediaStore.
Images
.ImageColumns.DESCRIPTION, "Not a cat photo");
314
assertEquals(0, queryLong(uri, MediaStore.
Images
.ImageColumns.IS_PRIVATE));
315
assertStringColumn(uri, MediaStore.
Images
.ImageColumns.DESCRIPTION, "Not a cat photo");
320
updateValues.put(MediaStore.
Images
.ImageColumns.IS_PRIVATE, 1);
MediaStoreIntentsTest.java
64
mExternalImages = MediaStore.
Images
.Media.getContentUri(mVolumeName);
/cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java
25
import android.provider.MediaStore.
Images
;
384
values.put(
Images
.Media.MIME_TYPE, "image/jpeg");
385
values.put(
Images
.Media.DATA,
389
Uri uri = resolver.insert(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, values);
392
assertEquals(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI
403
values.put(
Images
.Media.MIME_TYPE, "image/jpeg");
404
values.put(
Images
.Media.DATA,
407
final Uri uri = resolver.insert(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, values);
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageGridFragment.java
45
import com.example.android.displayingbitmaps.provider.
Images
;
54
* cache is retained over configuration changes like orientation change so the
images
are populated
86
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
213
* transparent ActionBar and don't want the real top row of
images
to start off covered by it.
245
return
Images
.imageThumbUrls.length + mNumColumns;
251
null :
Images
.imageThumbUrls[position - mNumColumns];
306
mImageFetcher.loadImage(
Images
.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java
39
import com.example.android.displayingbitmaps.provider.
Images
;
45
private static final String IMAGE_CACHE_DIR = "
images
";
61
// Fetch screen height and width, to use as our max size when loading
images
as this
68
// For this sample we'll use half of the longest width to resize our
images
. As the
79
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
85
mAdapter = new ImagePagerAdapter(getSupportFragmentManager(),
Images
.imageUrls.length);
169
* Called by the ViewPager child fragments to load
images
via the one ImageFetcher
195
return ImageDetailFragment.newInstance(
Images
.imageUrls[position]);
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageGridFragment.java
45
import com.example.android.displayingbitmaps.provider.
Images
;
54
* cache is retained over configuration changes like orientation change so the
images
are populated
86
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
213
* transparent ActionBar and don't want the real top row of
images
to start off covered by it.
245
return
Images
.imageThumbUrls.length + mNumColumns;
251
null :
Images
.imageThumbUrls[position - mNumColumns];
306
mImageFetcher.loadImage(
Images
.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java
39
import com.example.android.displayingbitmaps.provider.
Images
;
45
private static final String IMAGE_CACHE_DIR = "
images
";
61
// Fetch screen height and width, to use as our max size when loading
images
as this
68
// For this sample we'll use half of the longest width to resize our
images
. As the
79
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
85
mAdapter = new ImagePagerAdapter(getSupportFragmentManager(),
Images
.imageUrls.length);
169
* Called by the ViewPager child fragments to load
images
via the one ImageFetcher
195
return ImageDetailFragment.newInstance(
Images
.imageUrls[position]);
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/ui/
ImageGridFragment.java
45
import com.example.android.displayingbitmaps.provider.
Images
;
54
* cache is retained over configuration changes like orientation change so the
images
are populated
86
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
213
* transparent ActionBar and don't want the real top row of
images
to start off covered by it.
245
return
Images
.imageThumbUrls.length + mNumColumns;
251
null :
Images
.imageThumbUrls[position - mNumColumns];
306
mImageFetcher.loadImage(
Images
.imageThumbUrls[position - mNumColumns], imageView);
ImageDetailActivity.java
39
import com.example.android.displayingbitmaps.provider.
Images
;
45
private static final String IMAGE_CACHE_DIR = "
images
";
61
// Fetch screen height and width, to use as our max size when loading
images
as this
68
// For this sample we'll use half of the longest width to resize our
images
. As the
79
// The ImageFetcher takes care of loading
images
into our ImageView children asynchronously
85
mAdapter = new ImagePagerAdapter(getSupportFragmentManager(),
Images
.imageUrls.length);
169
* Called by the ViewPager child fragments to load
images
via the one ImageFetcher
195
return ImageDetailFragment.newInstance(
Images
.imageUrls[position]);
/external/autotest/client/cros/video/
collect_golden_images.py
22
description='Capture
images
of a video.',
27
Use this tool to capture golden/reference
images
that will be used to
28
verify test
images
captured during a video playback.
35
Output
images
will be placed under /tmp/test.
Images
will be saved as
/external/tensorflow/tensorflow/js/ops/
ts_op_gen_test.cc
43
name: "
images
"
46
description: "
Images
to process."
61
description: "Type for
images
"
116
op { graph_op_name: "Foo" arg_order: "dim" arg_order: "
images
" }
123
export function Foo(dim: tfc.Tensor,
images
: tfc.Tensor[]): tfc.Tensor {
140
export function Foo(
images
: tfc.Tensor[], dim: tfc.Tensor): tfc.Tensor {
230
createTensorsTypeOpAttr('T',
images
),
231
{name: 'N', type: nodeBackend().binding.TF_ATTR_INT, value:
images
.length}
/cts/hostsidetests/appsecurity/test-apps/MediaStorageApp/src/com/android/cts/mediastorageapp/
MediaStorageTest.java
167
doMediaNone(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, MediaStorageTest::createImage);
220
doMediaRead(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, MediaStorageTest::createImage);
255
doMediaWrite(MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, MediaStorageTest::createImage);
426
MediaStore.
Images
.Media.EXTERNAL_CONTENT_URI, displayName, "image/png");
/external/tensorflow/tensorflow/cc/framework/
cc_op_gen_test.cc
32
name: "
images
"
33
description: "
Images
to process."
48
description: "Type for
images
"
135
arg_order: "
images
"
148
ExpectSubstrOrder(h_file_text, "Input
images
", "Input dim");
154
ExpectSubstrOrder(h_file_text, "Input dim", "Input
images
");
Completed in 1936 milliseconds
1
2