HomeSort by relevance Sort by last modified time
    Searched defs:quote_char (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/base/strings/
string_tokenizer.h 220 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/source/Interpreter/
OptionValueDictionary.cpp 135 const char quote_char = key.front(); local
136 if ((quote_char == '\'') || (quote_char == '"'))
138 if ((key.size() > 2) && (key.back() == quote_char))
Args.cpp 137 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 = arg_end[0]
    [all...]
CommandInterpreter.cpp 1617 char quote_char = '\\0'; local
2044 char quote_char = parsed_line.GetArgumentQuoteCharAtIndex(cursor_index); local
    [all...]

Completed in 54 milliseconds