OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gFormats
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/tools/
skimage_main.cpp
44
static const Format
gFormats
[] = {
55
for (size_t i = 0; i < SK_ARRAY_COUNT(
gFormats
); i++) {
56
if (
gFormats
[i].fFormat == format) {
57
return
gFormats
[i].fType;
64
for (size_t i = 0; i < SK_ARRAY_COUNT(
gFormats
); i++) {
65
if (
gFormats
[i].fType == type) {
66
return
gFormats
[i].fSuffix;
73
for (size_t i = 0; i < SK_ARRAY_COUNT(
gFormats
); i++) {
74
if (strcmp(suffix,
gFormats
[i].fSuffix) == 0) {
75
return
gFormats
[i].fFormat
[
all
...]
render_pictures_main.cpp
68
static const Format
gFormats
[] = {
83
for (size_t i = 0; i < SK_ARRAY_COUNT(
gFormats
); i++) {
84
if (
gFormats
[i].fFormat == format) {
85
return
gFormats
[i].fSuffix;
Completed in 29 milliseconds