OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thumbnail
(Results
101 - 125
of
790
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/media/java/android/media/
ThumbnailUtils.java
43
*
Thumbnail
generation routines for media provider.
65
* Constant used to indicate the dimension of mini
thumbnail
.
71
* Constant used to indicate the dimension of micro
thumbnail
.
77
* This method first examines if the
thumbnail
embedded in EXIF is bigger than our target
78
* size. If not, then it'll create a
thumbnail
from original image. Due to efficiency
82
* This method always returns a "square
thumbnail
" for MICRO_KIND
thumbnail
.
143
// now we make it a "square
thumbnail
" for MICRO_KIND
thumbnail
152
* Create a video
thumbnail
for a video. May return null if the video i
232
Bitmap
thumbnail
= transform(matrix, source, width, height,
local
[
all
...]
/external/chromium/chrome/browser/history/
top_sites_unittest.cc
27
#include "chrome/tools/profiles/
thumbnail
-inl.h"
108
//
thumbnail
data, which is stored as jpgs.
155
// Gets the
thumbnail
for |url| from TopSites.
164
SkBitmap
thumbnail
;
local
165
thumbnail
.setConfig(SkBitmap::kARGB_8888_Config, 4, 4);
166
thumbnail
.allocPixels();
167
thumbnail
.eraseColor(color);
168
return
thumbnail
;
265
// Returns true if the
thumbnail
equals the specified bytes.
493
// Create a dummy
thumbnail
[
all
...]
top_sites_backend.cc
54
const Images&
thumbnail
) {
58
url_rank,
thumbnail
));
133
const Images&
thumbnail
) {
137
db_->SetPageThumbnail(url, url_rank,
thumbnail
);
top_sites_cache.cc
28
RefCountedBytes*
thumbnail
,
31
img.
thumbnail
=
thumbnail
;
44
*bytes = found->second.
thumbnail
.get();
/cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Video_ThumbnailsTest.java
69
// Get the current
thumbnail
count for future comparison.
72
// Calling getThumbnail should generate a new
thumbnail
.
95
assertTrue("
thumbnail
file does not exist", new File(path).exists());
99
assertFalse("
thumbnail
file should no longer exist", new File(path).exists());
/external/chromium_org/chrome/browser/history/
top_sites_backend.cc
58
const Images&
thumbnail
) {
62
url_rank,
thumbnail
));
124
const Images&
thumbnail
) {
128
db_->SetPageThumbnail(url, url_rank,
thumbnail
);
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/
exif_parser.js
20
var EXIF_TAG_JPG_THUMB_OFFSET = 0x0201; // Pointer from TIFF to
thumbnail
.
21
var EXIF_TAG_JPG_THUMB_LENGTH = 0x0202; // Length of
thumbnail
data.
190
thumbnail
: {}
200
//
Thumbnail
Directory chained from the end of the image directory.
202
this.vlog('Read
thumbnail
directory.');
204
this.readDirectory(br, metadata.ifd.
thumbnail
);
205
// If no
thumbnail
orientation is encoded, assume same orientation as
208
this.parseOrientation(metadata.ifd.
thumbnail
) ||
230
//
Thumbnail
may be linked from the image directory.
231
if (EXIF_TAG_JPG_THUMB_OFFSET in metadata.ifd.
thumbnail
&
[
all
...]
/external/chromium_org/chrome/test/pyautolib/
pyauto_errors.py
31
"""Represent an error while attempting to manipulate a NTP
thumbnail
.
/external/chromium_org/content/common/gpu/testdata/
bear.README
10
MD5s of RGB
thumbnail
rendered version of bear.h264 decoded with Intel
/frameworks/base/core/java/android/app/
IThumbnailReceiver.aidl
27
void newThumbnail(int id, in Bitmap
thumbnail
, CharSequence description);
/frameworks/base/services/java/com/android/server/am/
ThumbnailHolder.java
22
Bitmap lastThumbnail; // Last
thumbnail
captured for this item.
/packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapterItem.java
23
public BitmapDrawable
thumbnail
;
field in class:BrowserBookmarksAdapterItem
/packages/wallpapers/Galaxy4/res/xml/
wallpaper.xml
22
android:
thumbnail
="@drawable/wallpaper_thumb" />
/packages/wallpapers/HoloSpiral/res/xml/
wallpaper.xml
23
android:
thumbnail
="@drawable/wallpaper_thumb" />
/packages/wallpapers/PhaseBeam/res/xml/
wallpaper.xml
22
android:
thumbnail
="@drawable/wallpaper_thumb" />
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java
41
* the large version of the picture will resize from the
thumbnail
version in the
42
* main activity, colorizing it from the
thumbnail
's grayscale version at the
78
// the
thumbnail
to animate it from
106
// Figure out where the
thumbnail
and full size versions are, relative
113
// Scale factors to make the large version the same size as the
thumbnail
126
* The enter animation scales the picture in from its previous
thumbnail
135
// values scale and position the full size version down to the
thumbnail
147
// Animate scale and translation to go from
thumbnail
to full size
195
//
thumbnail
size/location that we retrieved earlier
197
// Caveat: configuration change invalidates
thumbnail
positions; just animat
[
all
...]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
file_grid.js
20
*
Thumbnail
quality.
99
* Decorates
thumbnail
.
101
* @param {Entry} entry Entry to render a
thumbnail
for.
105
li.className = '
thumbnail
-item';
110
frame.className = '
thumbnail
-frame';
124
bottom.className = '
thumbnail
-bottom';
130
* Decorates the box containing a centered
thumbnail
image.
133
* @param {Entry} entry Entry which
thumbnail
is generating for.
136
* @param {FileGrid.ThumbnailQuality} quality
Thumbnail
quality.
144
box.setAttribute('generic-
thumbnail
', 'folder')
[
all
...]
/external/chromium_org/chrome/browser/thumbnails/
simple_thumbnail_crop.cc
18
static const char kThumbnailHistogramName[] = "
Thumbnail
.ComputeMS";
48
SkBitmap
thumbnail
= CreateThumbnail(
53
context->score.boring_score = CalculateBoringScore(
thumbnail
);
59
callback.Run(*context.get(),
thumbnail
);
99
// generated
thumbnail
size is (f * kThumbnailWidth, f * kThumbnailHeight).
101
// of the copied pixels should be equal to or larger than this
thumbnail
size.
111
// good enough for the resampled image to be used directly for the
thumbnail
113
// ui::SCALE_FACTOR_200P because the high resolution
thumbnail
on high density
163
//
thumbnail
in the wider screen.
185
// TODO(mazda|oshima): Update
thumbnail
when the max scale factor changes
[
all
...]
/development/samples/devbytes/animation/WindowAnimations/res/layout/
activity_window_animations.xml
39
<ImageView android:id="@+id/
thumbnail
"
42
android:src="@drawable/
thumbnail
" />
/external/chromium/chrome/browser/ui/webui/
thumbnail_source.cc
29
// We have the
thumbnail
.
49
// Use placeholder
thumbnail
.
/external/chromium_org/content/public/browser/
devtools_http_handler_delegate.h
35
// Get a
thumbnail
for a given page. Returns non-empty string iff we have the
36
//
thumbnail
.
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
TaskDescription.java
88
public void setThumbnail(Drawable
thumbnail
) {
89
mThumbnail =
thumbnail
;
/frameworks/opt/mailcommon/res/layout/
attachment.xml
20
android:id="@+id/
thumbnail
"
42
android:layout_toRightOf="@+id/
thumbnail
">
/packages/apps/UnifiedEmail/res/layout/
attachment.xml
24
android:id="@+id/
thumbnail
"
36
android:layout_toRightOf="@+id/
thumbnail
">
/packages/wallpapers/LivePicker/res/layout/
live_wallpaper_entry.xml
29
android:id="@+id/
thumbnail
"
45
android:layout_toEndOf="@id/
thumbnail
"
Completed in 1878 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>