Searched refs:quote_char (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/base/strings/
H A Dstring_tokenizer.h220 char_type quote_char; member in struct:base::StringTokenizerT::AdvanceState
221 AdvanceState() : in_quote(false), in_escape(false), quote_char('\0') {}
231 } else if (c == state->quote_char) {
237 state->in_quote = IsQuote(state->quote_char = c);
/external/lldb/include/lldb/Interpreter/
H A DArgs.h197 /// @param[in] quote_char
204 AppendArgument (const char *arg_cstr, char quote_char = '\0');
221 /// @param[in] quote_char
228 InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
240 /// @param[in] quote_char
248 ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char = '\0');
299 /// @param[in] quote_char
306 Unshift (const char *arg_cstr, char quote_char = '\0');
/external/lldb/source/Interpreter/
H A DArgs.cpp137 char quote_char = GetArgumentQuoteCharAtIndex(i); local
138 if (quote_char)
140 command.append (1, quote_char);
142 command.append (1, quote_char);
200 char quote_char = '\0'; local
231 if (quote_char == '\0')
251 if (quote_char)
257 if (quote_char == arg_end[0])
266 quote_char = '\0'; // Note that we are no longer inside quotes
287 quote_char
471 Unshift(const char *arg_cstr, char quote_char) argument
498 AppendArgument(const char *arg_cstr, char quote_char) argument
504 InsertArgumentAtIndex(size_t idx, const char *arg_cstr, char quote_char) argument
529 ReplaceArgumentAtIndex(size_t idx, const char *arg_cstr, char quote_char) argument
[all...]
H A DCommandInterpreter.cpp1227 ExtractCommand (std::string &command_string, std::string &command, std::string &suffix, char &quote_char) argument
1234 quote_char = '\0';
1241 quote_char = first_char;
1242 const size_t end_quote_pos = command_string.find (quote_char, 1);
1617 char quote_char = '\0'; local
1619 ExtractCommand (command_string, next_word, suffix, quote_char);
1663 if (quote_char)
1664 revised_command_line.Printf (" %c%s%s%c", quote_char, next_word.c_str(), suffix.c_str(), quote_char);
1672 if (quote_char)
2044 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index); local
[all...]
H A DOptionValueDictionary.cpp135 const char quote_char = key.front(); local
136 if ((quote_char == '\'') || (quote_char == '"'))
138 if ((key.size() > 2) && (key.back() == quote_char))
/external/chromium_org/tools/gn/
H A Dtokenizer.h62 bool IsCurrentStringTerminator(char quote_char) const;
H A Dtokenizer.cc342 bool Tokenizer::IsCurrentStringTerminator(char quote_char) const {
344 if (cur_char() != quote_char)

Completed in 2054 milliseconds