Home
last modified time | relevance | path

Searched refs:attrPtr (Results 1 – 3 of 3) sorted by relevance

/external/jhead/
Dmain.c217 char* attrPtr = strchr(attributes, ' ') + 1; in saveAttributes() local
219 ALOGE("attribute count %d attrPtr %s\n", attrCnt, attrPtr); in saveAttributes()
240 char* tagEnd = strchr(attrPtr, '='); in saveAttributes()
247 if (tagEnd - attrPtr > 99) { in saveAttributes()
253 memcpy(tag, attrPtr, tagEnd - attrPtr); in saveAttributes()
254 tag[tagEnd - attrPtr] = 0; in saveAttributes()
265 attrPtr = tagEnd + 1; in saveAttributes()
272 int valueLen = atoi(attrPtr); in saveAttributes()
273 attrPtr = strchr(attrPtr, ' ') + 1; in saveAttributes()
274 if (attrPtr == 0) { in saveAttributes()
[all …]
/external/skia/src/svg/
DSkSVGElements.h23 virtual int getAttributes(const SkSVGAttribute** attrPtr); \
30 int SkSVG##_type::getAttributes(const SkSVGAttribute** attrPtr) { \
31 *attrPtr = gAttributes; \
DSkSVGPaintState.cpp187 int SkSVGPaint::getAttributes(const SkSVGAttribute** attrPtr) { in getAttributes() argument
188 *attrPtr = gAttributes; in getAttributes()