Home
last modified time | relevance | path

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

/art/profman/
Dprofman.cc1038 const std::string& maybe_annotated_line, in ProcessLine() argument
1041 if (maybe_annotated_line.empty()) { in ProcessLine()
1045 std::string line = maybe_annotated_line; in ProcessLine()
1048 if (maybe_annotated_line[0] == kAnnotationStart) { in ProcessLine()
1049 size_t end_pos = maybe_annotated_line.find(kAnnotationEnd, 0); in ProcessLine()
1051 LOG(ERROR) << "Invalid line: " << maybe_annotated_line; in ProcessLine()
1054 annotation_string = maybe_annotated_line.substr(1, end_pos - 1); in ProcessLine()
1056 line = maybe_annotated_line.substr(end_pos + 1); in ProcessLine()