/external/llvm-project/lldb/source/Interpreter/ |
D | OptionValueDictionary.cpp | 139 const char quote_char = key.front(); in SetArgs() local 140 if ((quote_char == '\'') || (quote_char == '"')) { in SetArgs() 141 if ((key.size() > 2) && (key.back() == quote_char)) { in SetArgs() 232 llvm::StringRef key, quote_char; in GetSubValue() local 235 quote_char = temp.take_front(); in GetSubValue() 242 if (!key.consume_back(quote_char) || key.empty()) { in GetSubValue()
|
D | CommandInterpreter.cpp | 1362 std::string &suffix, char "e_char) { in ExtractCommand() argument 1368 quote_char = '\0'; in ExtractCommand() 1373 quote_char = first_char; in ExtractCommand() 1374 const size_t end_quote_pos = command_string.find(quote_char, 1); in ExtractCommand() 3101 char quote_char = '\0'; in ResolveCommandImpl() local 3103 ExtractCommand(scratch_command, next_word, suffix, quote_char); in ResolveCommandImpl() 3144 if (quote_char) in ResolveCommandImpl() 3145 revised_command_line.Printf(" %c%s%s%c", quote_char, in ResolveCommandImpl() 3147 quote_char); in ResolveCommandImpl() 3154 if (quote_char) in ResolveCommandImpl() [all …]
|
/external/libchrome/base/strings/ |
D | string_tokenizer.h | 218 char_type quote_char; member 219 AdvanceState() : in_quote(false), in_escape(false), quote_char('\0') {} in AdvanceState() 229 } else if (c == state->quote_char) { in AdvanceOne() 235 state->in_quote = IsQuote(state->quote_char = c); in AdvanceOne()
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | Args.h | 181 void AppendArgument(llvm::StringRef arg_str, char quote_char = '\0'); 198 char quote_char = '\0'); 212 char quote_char = '\0'); 253 void Unshift(llvm::StringRef arg_str, char quote_char = '\0'); 287 char quote_char);
|
/external/llvm-project/lldb/source/Utility/ |
D | Args.cpp | 291 void Args::Unshift(llvm::StringRef arg_str, char quote_char) { in Unshift() argument 292 InsertArgumentAtIndex(0, arg_str, quote_char); in Unshift() 320 void Args::AppendArgument(llvm::StringRef arg_str, char quote_char) { in AppendArgument() argument 321 InsertArgumentAtIndex(GetArgumentCount(), arg_str, quote_char); in AppendArgument() 325 char quote_char) { in InsertArgumentAtIndex() argument 331 m_entries.emplace(m_entries.begin() + idx, arg_str, quote_char); in InsertArgumentAtIndex() 336 char quote_char) { in ReplaceArgumentAtIndex() argument 343 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex() 598 char quote_char) { in EscapeLLDBCommandArgument() argument 600 switch (quote_char) { in EscapeLLDBCommandArgument()
|
/external/python/cpython3/Parser/pegen/ |
D | parse_string.c | 552 char quote_char = 0; in fstring_find_expr() local 582 if (quote_char) { in fstring_find_expr() 598 if (quote_char) { in fstring_find_expr() 609 if (ch == quote_char) { in fstring_find_expr() 617 quote_char = 0; in fstring_find_expr() 622 quote_char = 0; in fstring_find_expr() 637 quote_char = ch; in fstring_find_expr() 703 if (quote_char) { in fstring_find_expr()
|
/external/llvm-project/lldb/source/API/ |
D | SBCommandInterpreter.cpp | 300 char quote_char = request.GetParsedArg().GetQuoteChar(); in HandleCompletionWithDescriptions() local 302 Args::EscapeLLDBCommandArgument(common_prefix, quote_char); in HandleCompletionWithDescriptions() 304 common_prefix.push_back(quote_char); in HandleCompletionWithDescriptions()
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | Cocoa.cpp | 723 const char quote_char = '"'; in NSURLSummaryProvider() local 734 bool back_consumed = summary_str.consume_back(quote_char + suffix); in NSURLSummaryProvider() 739 bool front_consumed = base_summary_str.consume_front(prefix + quote_char); in NSURLSummaryProvider()
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 1128 def test_basic_auth(self, quote_char='"'): argument 1135 (quote_char, realm, quote_char) ) 1145 self.test_basic_auth(quote_char="'")
|
/external/python/cpython3/Python/ |
D | ast.c | 4922 char quote_char = 0; in fstring_find_expr() local 4952 if (quote_char) in fstring_find_expr() 4967 if (quote_char) { in fstring_find_expr() 4978 if (ch == quote_char) { in fstring_find_expr() 4986 quote_char = 0; in fstring_find_expr() 4991 quote_char = 0; in fstring_find_expr() 5006 quote_char = ch; in fstring_find_expr() 5072 if (quote_char) { in fstring_find_expr()
|