OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ICONDIRENTRY
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/gfx/
icon_util.h
148
//
ICONDIRENTRY
contains meta data for an individual icon image within a
150
struct
ICONDIRENTRY
{
167
ICONDIRENTRY
idEntries[1];
icon_util.cc
477
buffer_size += sizeof(
ICONDIRENTRY
) + png_bytes->size();
487
// - 1 because there is already one
ICONDIRENTRY
in ICONDIR.
490
size_t offset = sizeof(ICONDIR) + (sizeof(
ICONDIRENTRY
) * icon_dir_count);
503
ICONDIRENTRY
* entry = &icon_dir->idEntries[bitmap_count];
635
// single
ICONDIRENTRY
structure, which is why we subtract one from the
639
total_buffer_size += sizeof(
ICONDIRENTRY
) * (bitmap_count - 1);
icon_util_unittest.cc
108
icon_dir->idCount * sizeof(IconUtil::
ICONDIRENTRY
));
109
const IconUtil::
ICONDIRENTRY
* png_entry = NULL;
111
const IconUtil::
ICONDIRENTRY
* entry = &icon_dir->idEntries[i];
112
// Mod 256 because as a special case in
ICONDIRENTRY
, the value 0 represents
Completed in 28 milliseconds