Searched refs:findS32 (Results 1 – 16 of 16) sorted by relevance
/external/skia/tests/ |
D | MetaDataTest.cpp | 41 REPORTER_ASSERT(reporter, !m1.findS32("int")); in DEF_TEST() 62 REPORTER_ASSERT(reporter, m1.findS32("int", &n) && n == 12345); in DEF_TEST() 110 REPORTER_ASSERT(reporter, !m1.findS32("int")); in DEF_TEST()
|
/external/skia/src/views/animated/ |
D | SkProgressBarView.cpp | 69 if (dom.findS32(node, "max", &temp)) in onInflate() 71 if (dom.findS32(node, "progress", &temp)) in onInflate()
|
D | SkScrollBarView.cpp | 70 if (dom.findS32(node, "total", &value)) in onInflate() 72 if (dom.findS32(node, "shown", &value)) in onInflate()
|
D | SkWidgetViews.cpp | 177 return evt.findS32(gWidgetEventSinkIDSlotName, &sinkID) ? (SkEventSinkID)sinkID : 0; in GetWidgetEventSinkID() 237 if (evt.findS32(gCheckStateSlotName, &state32)) in GetWidgetEventCheckState()
|
/external/skia/include/core/ |
D | SkMetaData.h | 51 bool findS32(const char name[], int32_t* value = NULL) const; 62 return this->findS32(name, &v) && v == value; in hasS32()
|
/external/skia/include/views/ |
D | SkEvent.h | 121 …bool findS32(const char name[], int32_t* value = NULL) const { return fMeta.findS32(name, value); }
|
/external/skia/src/views/ |
D | SkOSMenu.cpp | 203 return evt.isType(gMenuEventType) && evt.findS32(gList_ItemCount_S32, count); in FindListItemCount() 237 return evt.isType(gMenuEventType) && evt.findS32(slotName, value); in FindListIndex() 249 return evt.isType(gMenuEventType) && evt.findS32(slotName, (int*)value); in FindTriState()
|
D | SkEvent.cpp | 206 md.findS32(name, &value); in dump()
|
/external/skia/include/xml/ |
D | SkDOM.h | 61 bool findS32(const Node*, const char name[], int32_t* value) const;
|
/external/skia/src/animator/ |
D | SkDisplayPost.cpp | 124 meta.findS32(name, &s32); in dump()
|
D | SkDisplayEvent.cpp | 210 meta.findS32(name, &input->fInt); in populateInput()
|
D | SkAnimator.cpp | 416 SkDEBUGCODE(success =) evt.findS32("time", (int32_t*) &fMaker->fEnableTime); in onEvent()
|
/external/skia/src/core/ |
D | SkMetaData.cpp | 145 bool SkMetaData::findS32(const char name[], int32_t* value) const in findS32() function in SkMetaData
|
/external/skia/samplecode/ |
D | SamplePath.cpp | 321 if (click->fMeta.findS32("index", &index)) { in onClick()
|
D | SampleApp.cpp | 2040 if (evt.findS32(set_use_pipe_tag, &pipeHolder)) { in onEvent()
|
/external/skia/src/xml/ |
D | SkDOM.cpp | 401 bool SkDOM::findS32(const Node* node, const char name[], int32_t* value) const in findS32() function in SkDOM
|