OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImageRep
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/image/
image.h
52
class
ImageRep
;
67
typedef std::map<RepresentationType, internal::
ImageRep
*> RepresentationMap;
193
// Returns the
ImageRep
of the appropriate type or NULL if there is no
195
internal::
ImageRep
* GetRepresentation(
199
void AddRepresentation(internal::
ImageRep
* rep) const;
image.cc
193
// An
ImageRep
is the object that holds the backing memory for an Image. Each
194
// RepresentationType has an
ImageRep
subclass that is responsible for freeing
195
// the memory that the
ImageRep
holds. When an
ImageRep
is created, it expects
198
class
ImageRep
{
200
explicit
ImageRep
(Image::RepresentationType rep) : type_(rep) {}
202
// Deletes the associated pixels of an
ImageRep
.
203
virtual ~
ImageRep
() {}
250
class ImageRepPNG : public
ImageRep
{
252
ImageRepPNG() :
ImageRep
(Image::kImageRepPNG)
[
all
...]
Completed in 26 milliseconds