Home
last modified time | relevance | path

Searched refs:image (Results 1 – 25 of 59) sorted by relevance

123

/development/tools/emulator/skins/WQVGA432/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/tools/emulator/skins/WQVGA400/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/tools/emulator/skins/QVGA/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/tools/emulator/skins/WVGA854/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/tools/emulator/skins/WVGA800/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/tools/emulator/skins/HVGA/
Dlayout4 image background_port.png
9 image background_land.png
24 image controls.png
28 image button.png
33 image button.png
38 image button.png
43 image arrow_up.png
48 image arrow_down.png
53 image arrow_left.png
58 image arrow_right.png
[all …]
/development/samples/browseable/WearDrawers/src/com.example.android.wearable.wear.weardrawers/
DPlanet.java25 private String image; field in Planet
33 String image, in Planet() argument
40 this.image = image; in Planet()
55 return image; in getImage()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DCompressedTextureActivity.java115 Buffer image = createImage(width, height); in load() local
116 … ETC1Util.ETC1Texture etc1Texture = ETC1Util.compressTexture(image, width, height, 3, 3 * width); in load()
136 ByteBuffer image = ByteBuffer.allocateDirect(height * stride) in createImage() local
146 image.position(stride*y+x*3); in createImage()
147 image.put(red); in createImage()
148 image.put(green); in createImage()
149 image.put(blue); in createImage()
152 image.position(0); in createImage()
153 return image; in createImage()
/development/samples/VirtualDeviceManager/host/src/com/example/android/vdmdemo/host/
DDisplayActivity.java116 Image image = reader.acquireLatestImage();
118 if (image != null && mSurface != null) {
119 copyImageToSurfaceLocked(image);
120 image.close();
335 private void copyImageToSurfaceLocked(Image image) { in copyImageToSurfaceLocked() argument
336 ByteBuffer buffer = image.getPlanes()[0].getBuffer(); in copyImageToSurfaceLocked()
337 int pixelStride = image.getPlanes()[0].getPixelStride(); in copyImageToSurfaceLocked()
338 int rowStride = image.getPlanes()[0].getRowStride(); in copyImageToSurfaceLocked()
339 int pixelBytesPerRow = pixelStride * image.getWidth(); in copyImageToSurfaceLocked()
355 Bitmap.createBitmap(image.getWidth(), image.getHeight(), Bitmap.Config.ARGB_8888); in copyImageToSurfaceLocked()
/development/tools/ninja_dependency_analysis/ninja_metrics_proto/
Dninja_metrics.proto20 // device or an image. These information is captured from ninja analysis
22 // Total number of input files to build a target or an image
26 // or an image
39 // image
/development/tools/labpretest/
DREADME5 determines device type, erases user cache, flashes a generic userdata image,
6 updates the bootloader image, updates the radio image, updates the system image
38 2) Copy a build image to the new sub directory in our format.
40 3) Copy a boot image to the new sub directory in our format.
42 4) Copy a radio image to the new sub directory in our format.
/development/tools/winscope/src/viewers/viewer_media_based/
Dviewer_media_based_component.ts300 const image = constant
302 if (image) {
304 width: image.naturalWidth,
305 height: image.naturalHeight,
/development/tools/emulator/skins/WXGA800/
Dlayout4 image background_port.png
9 image background_land.png
/development/tools/emulator/skins/WSVGA/
Dlayout4 image background_port.png
9 image background_land.png
/development/tools/emulator/skins/WXGA800-7in/
Dlayout4 image background_port.png
9 image background_land.png
/development/tools/emulator/skins/WXGA720/
Dlayout4 image background_port.png
9 image background_land.png
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
DRecipeListAdapter.java44 Bitmap image; field in RecipeListAdapter.Item
75 parsed.image = AssetUtils.loadBitmapAsset(mContext, imageFile); in parseJson()
127 if (item.image != null) { in getView()
128 iv.setImageBitmap(item.image); in getView()
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
DMainActivity.java119 ImageView image = (ImageView) view.findViewById(R.id.imageview_item); in getView() local
120 Picasso.with(image.getContext()).load(item.getThumbnailUrl()).into(image); in getView()
/development/samples/ShortcutDemo/common/src/com/example/android/pm/shortcutdemo/
DShortcutAdapter.java181 final ImageView image = (ImageView) view.findViewById(getImageId()); in bindView() local
183 image.setVisibility(View.GONE); in bindView()
185 image.setVisibility(View.VISIBLE); in bindView()
186 image.setImageDrawable(mLauncherApps.getShortcutBadgedIconDrawable(si, in bindView()
/development/samples/VoiceInteractionService/src/com/example/android/voiceinteractor/
DSampleVisualQueryDetectionService.java116 Image image = null; in onReceiveImage() local
118 image = reader.acquireLatestImage(); in onReceiveImage()
119 ByteBuffer buffer = image.getPlanes()[0].getBuffer(); in onReceiveImage()
129 if (image != null) { in onReceiveImage()
130 image.close(); in onReceiveImage()
/development/samples/browseable/ActivitySceneTransitionBasic/
D_index.jd10 changeBounds to nicely transition a grid of images to an Activity with a large image
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
DBaseActivityListFragment.java178 final ImageView image = (ImageView) view.findViewById(R.id.image); in bindView() local
179 image.setImageDrawable(icon); in bindView()
/development/samples/browseable/MediaEffects/
D_index.jd9 These APIs let you apply effects to image frames represented as OpenGL ES 2.0 textures.
/development/samples/browseable/StorageClient/
D_index.jd11 interface, and choose an image on your device. It will be displayed in this app.
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
DAttraction.java37 public Bitmap image; field in Attraction

123