Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt/
DResourceTable.cpp364 ssize_t typeIdx = block.indexOfAttribute(NULL, "format"); in compileAttribute() local
365 if (typeIdx >= 0) { in compileAttribute()
366 String16 typeStr = String16(block.getAttributeStringValue(typeIdx, &len)); in compileAttribute()
949 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
950 if (typeIdx < 0) { in compileResourceFile()
954 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1021 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
1022 if (typeIdx < 0) { in compileResourceFile()
1026 type = String16(block.getAttributeStringValue(typeIdx, &len)); in compileResourceFile()
1161 ssize_t typeIdx = block.indexOfAttribute(NULL, "type"); in compileResourceFile() local
[all …]
/frameworks/rs/script_api/
DSpecification.cpp464 int typeIdx = findCType(cTypeStr); in expandRSTypeInString() local
465 if (typeIdx == -1) { in expandRSTypeInString()
469 return stringReplace(s, pattern, TYPES[typeIdx].rsDataType); in expandRSTypeInString()