Home
last modified time | relevance | path

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

/art/dexdump/
Ddexdump_cfg.cc113 size_t next_escape = inst_str.find_first_of("\"{}<>", cur_start + 1); in DumpMethodCFG() local
114 if (next_escape == std::string::npos) { in DumpMethodCFG()
118 os << inst_str.substr(cur_start, next_escape - cur_start); in DumpMethodCFG()
120 while (next_escape < inst_str.size()) { in DumpMethodCFG()
121 char c = inst_str[next_escape]; in DumpMethodCFG()
127 next_escape++; in DumpMethodCFG()
129 if (next_escape >= inst_str.size()) { in DumpMethodCFG()
130 next_escape = std::string::npos; in DumpMethodCFG()
132 cur_start = next_escape; in DumpMethodCFG()