OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fMeta
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/include/views/
SkEvent.h
121
bool findS32(const char name[], int32_t* value = NULL) const { return
fMeta
.findS32(name, value); }
126
bool findScalar(const char name[], SkScalar* value = NULL) const { return
fMeta
.findScalar(name, value); }
131
const SkScalar* findScalars(const char name[], int* count, SkScalar values[] = NULL) const { return
fMeta
.findScalars(name, count, values); }
134
const char* findString(const char name[]) const { return
fMeta
.findString(name); }
139
bool findPtr(const char name[], void** value) const { return
fMeta
.findPtr(name, value); }
140
bool findBool(const char name[], bool* value) const { return
fMeta
.findBool(name, value); }
142
return
fMeta
.findData(name, byteCount);
146
bool hasS32(const char name[], int32_t value) const { return
fMeta
.hasS32(name, value); }
148
bool hasScalar(const char name[], SkScalar value) const { return
fMeta
.hasScalar(name, value); }
150
bool hasString(const char name[], const char value[]) const { return
fMeta
.hasString(name, value);
[
all
...]
SkView.h
161
SkMetaData
fMeta
;
Completed in 383 milliseconds