Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/util/
DUtil.cpp538 StringPiece::const_iterator last_occurence = path.end(); in ExtractResFilePathParts() local
542 last_occurence = iter; in ExtractResFilePathParts()
546 if (last_occurence == path.end()) { in ExtractResFilePathParts()
550 auto iter = std::find(last_occurence, path.end(), '.'); in ExtractResFilePathParts()
552 *out_entry = StringPiece(last_occurence + 1, iter - last_occurence - 1); in ExtractResFilePathParts()
553 *out_prefix = StringPiece(path.begin(), last_occurence - path.begin() + 1); in ExtractResFilePathParts()