Searched refs:attrPtr (Results 1 – 3 of 3) sorted by relevance
217 char* attrPtr = strchr(attributes, ' ') + 1; in saveAttributes() local219 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 …]
23 virtual int getAttributes(const SkSVGAttribute** attrPtr); \30 int SkSVG##_type::getAttributes(const SkSVGAttribute** attrPtr) { \31 *attrPtr = gAttributes; \
187 int SkSVGPaint::getAttributes(const SkSVGAttribute** attrPtr) { in getAttributes() argument188 *attrPtr = gAttributes; in getAttributes()