Home
last modified time | relevance | path

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

/art/profman/
Dprofman.cc1387 std::string_view maybe_annotated_line, in ProcessLine() argument
1390 if (maybe_annotated_line.empty()) { in ProcessLine()
1394 std::string_view line = maybe_annotated_line; in ProcessLine()
1397 if (maybe_annotated_line[0] == kAnnotationStart) { in ProcessLine()
1398 size_t end_pos = maybe_annotated_line.find(kAnnotationEnd, 0); in ProcessLine()
1400 LOG(ERROR) << "Invalid line: " << maybe_annotated_line; in ProcessLine()
1403 annotation_string = maybe_annotated_line.substr(1, end_pos - 1); in ProcessLine()
1405 line = maybe_annotated_line.substr(end_pos + 1); in ProcessLine()