Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/commands/modem_simulator/
Dcommand_parser.cpp29 auto fpos = command_.find('\"'); in GetNextStr() local
30 if (fpos == std::string_view::npos) { in GetNextStr()
34 auto spos = command_.find('\"', fpos + 1); in GetNextStr()
36 command_ = command_.substr(fpos + 1); in GetNextStr()
40 auto str = command_.substr(fpos + 1, (spos - fpos - 1)); in GetNextStr()