OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:image
(Results
151 - 175
of
10027
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/replicaisland/res/xml/
level_2_9_dialog_wanda.xml
7
image
="@drawable/wanda_smile"
13
image
="@drawable/wanda_happy"
level_3_11_dialog_wanda.xml
6
image
="@drawable/wanda_surprised"
16
image
="@drawable/wanda_surprised"
level_3_4_dialog_kyle.xml
7
image
="@drawable/kyle_closeup_angry"
13
image
="@drawable/kyle_closeup_angry"
level_3_9_dialog_kyle.xml
7
image
="@drawable/kyle_closeup_neutral"
13
image
="@drawable/kyle_closeup_angry"
level_4_2_dialog_wanda.xml
7
image
="@drawable/wanda_sad"
13
image
="@drawable/wanda_sad"
level_4_7_dialog_rokudou.xml
7
image
="@drawable/rokudou_closeup_normal"
13
image
="@drawable/rokudou_closeup_normal"
/frameworks/base/libs/hwui/
Image.h
34
class
Image
{
37
* Creates a new
image
from the specified graphic buffer. If the
image
41
Image
(sp<GraphicBuffer> buffer);
42
~
Image
();
46
* from this
image
.
53
* Returns the name of the EGL
image
represented by this object.
62
}; // class
Image
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_screen.c
209
__DRIimage *
image
;
local
215
image
= CALLOC(sizeof *
image
);
216
if (
image
== NULL)
221
image
->format = MESA_FORMAT_RGB565;
222
image
->internal_format = GL_RGB;
223
image
->data_type = GL_UNSIGNED_BYTE;
226
image
->format = MESA_FORMAT_XRGB8888;
227
image
->internal_format = GL_RGB;
228
image
->data_type = GL_UNSIGNED_BYTE
265
__DRI
image
*
image
;
local
310
__DRI
image
*
image
;
local
[
all
...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_screen.c
209
__DRIimage *
image
;
local
215
image
= CALLOC(sizeof *
image
);
216
if (
image
== NULL)
221
image
->format = MESA_FORMAT_RGB565;
222
image
->internal_format = GL_RGB;
223
image
->data_type = GL_UNSIGNED_BYTE;
226
image
->format = MESA_FORMAT_XRGB8888;
227
image
->internal_format = GL_RGB;
228
image
->data_type = GL_UNSIGNED_BYTE
265
__DRI
image
*
image
;
local
310
__DRI
image
*
image
;
local
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ShapeValue.h
48
Image
66
static PassRefPtr<ShapeValue> createImageValue(PassRefPtr<StyleImage>
image
)
68
return adoptRef(new ShapeValue(
image
));
74
StyleImage*
image
() const { return m_image.get(); }
function in class:WebCore::ShapeValue
75
bool isImageValid() const { return
image
() &&
image
()->cachedImage() &&
image
()->cachedImage()->hasImage(); }
76
void setImage(PassRefPtr<StyleImage>
image
)
78
ASSERT(type() ==
Image
);
79
if (m_image !=
image
)
[
all
...]
/external/chromium_org/third_party/skia/src/pdf/
SkPDFImage.h
25
An
image
XObject.
30
// and settings used from the paint to canonicalize
image
objects.
33
/** Create a new
Image
XObject to represent the passed bitmap.
34
* @param bitmap The
image
to encode.
37
* @return The
image
XObject or NUll if there is nothing to draw for
46
/** Add a Soft Mask (alpha or shape channel) to the
image
. Refs mask.
47
* @param mask A gray scale
image
representing the mask.
69
/** Create a PDF
image
XObject. Entries for the
image
properties are
71
* @param stream The
image
stream. May be NULL. Otherwise, thi
[
all
...]
/external/skia/src/pdf/
SkPDFImage.h
25
An
image
XObject.
30
// and settings used from the paint to canonicalize
image
objects.
33
/** Create a new
Image
XObject to represent the passed bitmap.
34
* @param bitmap The
image
to encode.
37
* @return The
image
XObject or NUll if there is nothing to draw for
46
/** Add a Soft Mask (alpha or shape channel) to the
image
. Refs mask.
47
* @param mask A gray scale
image
representing the mask.
69
/** Create a PDF
image
XObject. Entries for the
image
properties are
71
* @param stream The
image
stream. May be NULL. Otherwise, thi
[
all
...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
change_picture_options.js
49
var imageGrid = $('user-
image
-grid');
52
// Preview
image
will track the selected item's URL.
53
var previewElement = $('user-
image
-preview');
77
// Profile
image
data.
94
$('user-
image
-stream-crop').addEventListener(
98
$('user-
image
-preview-img').addEventListener(
103
// Old user
image
data (if present).
116
var imageGrid = $('user-
image
-grid');
127
var imageGrid = $('user-
image
-grid');
128
imageGrid.blur(); // Make sure the
image
grid is not active
[
all
...]
/external/chromium_org/chrome/browser/ui/cocoa/tab_contents/
favicon_util_mac.mm
18
NSImage*
image
= favicon_tab_helper->GetFavicon().AsNSImage();
19
// The |
image
| could be nil if the bitmap is null. In that case, fallback
20
// to the default
image
.
21
if (
image
) {
22
return
image
;
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
throbber_view_unittest.mm
14
#include "ui/gfx/
image
/
image
.h"
22
NSImage*
image
= ResourceBundle::GetSharedInstance().GetNativeImageNamed(
24
view_ = [ThrobberView filmstripThrobberViewWithFrame:frame
image
:
image
];
/external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
README
21
// dataURL is a data URL encoded PNG. You can add this to a
image
like this:
22
var
image
= new
Image
();
23
image
.onload = function() { ... }
24
image
.src = dataURL;
/external/chromium_org/printing/
image.h
24
// Lightweight raw-bitmap management. The
image
, once initialized, is immutable.
25
// The main purpose is testing
image
contents.
26
class PRINTING_EXPORT
Image
{
28
// Creates the
image
from the given file on disk. Uses extension to
30
// If
image
loading fails size().IsEmpty() will be true.
31
explicit
Image
(const base::FilePath& path);
33
// Creates the
image
from the metafile. Deduces bounds based on bounds in
35
explicit
Image
(const Metafile& metafile);
38
explicit
Image
(const
Image
& image)
[
all
...]
/external/chromium_org/ui/gfx/image/
image_util_unittest.cc
5
#include "ui/gfx/
image
/image_util.h"
12
#include "ui/gfx/
image
/image_unittest_util.h"
15
gfx::
Image
original = gfx::test::CreateImage(100, 100);
20
gfx::
Image
decoded =
23
// JPEG is lossy, so simply check that the
image
decoded successfully.
/external/jpeg/
jconfig.cfg
31
#define BMP_SUPPORTED /* BMP
image
file format */
32
#define GIF_SUPPORTED /* GIF
image
file format */
33
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
34
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
35
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.dj
26
#define BMP_SUPPORTED /* BMP
image
file format */
27
#define GIF_SUPPORTED /* GIF
image
file format */
28
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
29
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
30
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.mac
30
#define BMP_SUPPORTED /* BMP
image
file format */
31
#define GIF_SUPPORTED /* GIF
image
file format */
32
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
33
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
34
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.manx
30
#define BMP_SUPPORTED /* BMP
image
file format */
31
#define GIF_SUPPORTED /* GIF
image
file format */
32
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
33
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
34
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.sas
32
#define BMP_SUPPORTED /* BMP
image
file format */
33
#define GIF_SUPPORTED /* GIF
image
file format */
34
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
35
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
36
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.st
28
#define BMP_SUPPORTED /* BMP
image
file format */
29
#define GIF_SUPPORTED /* GIF
image
file format */
30
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
31
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
32
#define TARGA_SUPPORTED /* Targa
image
file format */
jconfig.vc
33
#define BMP_SUPPORTED /* BMP
image
file format */
34
#define GIF_SUPPORTED /* GIF
image
file format */
35
#define PPM_SUPPORTED /* PBMPLUS PPM/PGM
image
file format */
36
#undef RLE_SUPPORTED /* Utah RLE
image
file format */
37
#define TARGA_SUPPORTED /* Targa
image
file format */
Completed in 895 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>