Lines Matching defs:quoted
23 static llvm::StringRef ParseDoubleQuotes(llvm::StringRef quoted,
29 size_t regular = quoted.find_first_of(k_escapable_characters);
30 result += quoted.substr(0, regular);
31 quoted = quoted.substr(regular);
34 if (quoted.empty() || quoted.front() == '"')
38 quoted = quoted.drop_front();
40 if (quoted.empty()) {
48 if (strchr(k_escapable_characters, quoted.front()) == nullptr)
51 result += quoted.front();
52 quoted = quoted.drop_front();
55 return quoted;
145 size_t quoted = command.find(special);
146 arg += command.substr(0, quoted);
147 command = command.substr(quoted);