OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:findS32
(Results
1 - 16
of
16
) sorted by null
/external/skia/tests/
MetaDataTest.cpp
41
REPORTER_ASSERT(reporter, !m1.
findS32
("int"));
62
REPORTER_ASSERT(reporter, m1.
findS32
("int", &n) && n == 12345);
110
REPORTER_ASSERT(reporter, !m1.
findS32
("int"));
/external/skqp/tests/
MetaDataTest.cpp
41
REPORTER_ASSERT(reporter, !m1.
findS32
("int"));
62
REPORTER_ASSERT(reporter, m1.
findS32
("int", &n) && n == 12345);
110
REPORTER_ASSERT(reporter, !m1.
findS32
("int"));
/external/skia/src/utils/
SkMetaData.h
51
bool
findS32
(const char name[], int32_t* value = nullptr) const;
62
return this->
findS32
(name, &v) && v == value;
SkMetaData.cpp
146
bool SkMetaData::
findS32
(const char name[], int32_t* value) const
/external/skqp/include/core/
SkMetaData.h
51
bool
findS32
(const char name[], int32_t* value = nullptr) const;
62
return this->
findS32
(name, &v) && v == value;
/external/skia/src/xml/
SkDOM.h
62
bool
findS32
(const Node*, const char name[], int32_t* value) const;
SkDOM.cpp
377
bool SkDOM::
findS32
(const Node* node, const char name[], int32_t* value) const {
379
return vstr && SkParse::
FindS32
(vstr, value);
410
return vstr && SkParse::
FindS32
(vstr, &value) && value == target;
/external/skqp/src/xml/
SkDOM.h
62
bool
findS32
(const Node*, const char name[], int32_t* value) const;
SkDOM.cpp
377
bool SkDOM::
findS32
(const Node* node, const char name[], int32_t* value) const {
379
return vstr && SkParse::
FindS32
(vstr, value);
410
return vstr && SkParse::
FindS32
(vstr, &value) && value == target;
/external/skia/samplecode/
Sample.h
106
bool
findS32
(const char name[], int32_t* value = nullptr) const {
107
return fMeta.
findS32
(name, value);
SamplePath.cpp
295
if (click->fMeta.
findS32
("index", &index)) {
428
if (click->fMeta.
findS32
("index", &index)) {
551
if (click->fMeta.
findS32
("index", &index)) {
754
if (click->fMeta.
findS32
("index", &index)) {
SampleXfer.cpp
192
if (click->fMeta.
findS32
("mode", &mode)) {
/external/skqp/samplecode/
Sample.h
106
bool
findS32
(const char name[], int32_t* value = nullptr) const {
107
return fMeta.
findS32
(name, value);
SamplePath.cpp
295
if (click->fMeta.
findS32
("index", &index)) {
428
if (click->fMeta.
findS32
("index", &index)) {
551
if (click->fMeta.
findS32
("index", &index)) {
754
if (click->fMeta.
findS32
("index", &index)) {
SampleXfer.cpp
192
if (click->fMeta.
findS32
("mode", &mode)) {
/external/skqp/src/core/
SkMetaData.cpp
146
bool SkMetaData::
findS32
(const char name[], int32_t* value) const
Completed in 1637 milliseconds