Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc3429 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames() local
3430 init_indices_.angle_bracket_end_index = angle_end - first; in FindStringRangesForMethodNames()
3432 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3434 if (angle_start == angle_end) { in FindStringRangesForMethodNames()
3443 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3444 if (it != angle_end && strcmp(get_string(*it), kClinit) == 0) { in FindStringRangesForMethodNames()
3452 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
3453 if (it != angle_end && strcmp(get_string(*it), kInit) == 0) { in FindStringRangesForMethodNames()