Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc3424 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames() local
3425 init_indices_.angle_bracket_end_index = angle_end - first; in FindStringRangesForMethodNames()
3427 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3429 if (angle_start == angle_end) { in FindStringRangesForMethodNames()
3438 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3439 if (it != angle_end && strcmp(get_string(*it), kClinit) == 0) { in FindStringRangesForMethodNames()
3447 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
3448 if (it != angle_end && strcmp(get_string(*it), kInit) == 0) { in FindStringRangesForMethodNames()