Home
last modified time | relevance | path

Searched refs:typeIdx (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/aapt/
DResourceTable.cpp363 ssize_t typeIdx = block.indexOfAttribute(NULL, "format"); in compileAttribute() local
364 if (typeIdx >= 0) { in compileAttribute()
365 String16 typeStr = String16(block.getAttributeStringValue(typeIdx, &len)); in compileAttribute()
948 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
949 if (typeIdx < 0) { in compileResourceFile()
953 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1020 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
1021 if (typeIdx < 0) { in compileResourceFile()
1025 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1160 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
[all …]
/frameworks/rs/script_api/
DSpecification.cpp465 int typeIdx = findCType(cTypeStr); in expandRSTypeInString() local
466 if (typeIdx == -1) { in expandRSTypeInString()
470 return stringReplace(s, pattern, TYPES[typeIdx].rsDataType); in expandRSTypeInString()