Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_verifier.cc3425 const auto angle_end = std::lower_bound(first, last, "=", compare); in FindStringRangesForMethodNames() local
3426 init_indices_.angle_bracket_end_index = angle_end - first; in FindStringRangesForMethodNames()
3428 const auto angle_start = std::lower_bound(first, angle_end, "<", compare); in FindStringRangesForMethodNames()
3430 if (angle_start == angle_end) { in FindStringRangesForMethodNames()
3439 const auto it = std::lower_bound(angle_start, angle_end, kClinit, compare); in FindStringRangesForMethodNames()
3440 if (it != angle_end && strcmp(get_string(*it), kClinit) == 0) { in FindStringRangesForMethodNames()
3448 const auto it = std::lower_bound(angle_start, angle_end, kInit, compare); in FindStringRangesForMethodNames()
3449 if (it != angle_end && strcmp(get_string(*it), kInit) == 0) { in FindStringRangesForMethodNames()