Home
last modified time | relevance | path

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

/openbsd/gnu/lib/libreadline/
H A Dcomplete.c648 char quote_char; local
652 quote_char = '\0';
679 if (quote_char != '\0')
685 quote_char = '\0';
695 if (quote_char == '\'')
771 return (quote_char);
1336 if (quote_char && rl_point && rl_line_buffer[rl_point - 1] != quote_char)
1456 char quote_char; local
1470 quote_char = '\0';
1916 static char quote_char; local
[all …]
/openbsd/gnu/llvm/lldb/include/lldb/Utility/
H A DArgs.h180 void AppendArgument(llvm::StringRef arg_str, char quote_char = '\0');
197 char quote_char = '\0');
211 char quote_char = '\0');
252 void Unshift(llvm::StringRef arg_str, char quote_char = '\0');
285 char quote_char);
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dcompleter.c207 int quote_char = '\0'; in location_completer() local
222 quote_char = *p++; in location_completer()
266 if (*s == ':' || *s == quote_char) in location_completer()
685 char quote_char = '\0'; in skip_quoted_chars() local
696 if (quote_char != '\0') in skip_quoted_chars()
699 if (*scan == quote_char) in skip_quoted_chars()
709 quote_char = *scan; in skip_quoted_chars()
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp149 const char quote_char = key.front(); in SetArgs() local
150 if ((quote_char == '\'') || (quote_char == '"')) { in SetArgs()
151 if ((key.size() > 2) && (key.back() == quote_char)) { in SetArgs()
252 llvm::StringRef key, quote_char; in GetSubValue() local
255 quote_char = temp.take_front(); in GetSubValue()
262 if (!key.consume_back(quote_char) || key.empty()) { in GetSubValue()
H A DCommandInterpreter.cpp1574 quote_char = '\0'; in ExtractCommand()
1579 quote_char = first_char; in ExtractCommand()
1679 const char quote_char = entry.GetQuoteChar(); in BuildAliasResult() local
1699 if (quote_char == '\0') in BuildAliasResult()
1702 result_str.Printf("%c%s%c", quote_char, in BuildAliasResult()
1703 entry.c_str(), quote_char); in BuildAliasResult()
3385 char quote_char = '\0'; in ResolveCommandImpl() local
3425 if (quote_char) in ResolveCommandImpl()
3428 quote_char); in ResolveCommandImpl()
3435 if (quote_char) in ResolveCommandImpl()
[all …]
/openbsd/gnu/llvm/lldb/source/Utility/
H A DArgs.cpp294 void Args::Unshift(llvm::StringRef arg_str, char quote_char) { in Unshift() argument
295 InsertArgumentAtIndex(0, arg_str, quote_char); in Unshift()
323 void Args::AppendArgument(llvm::StringRef arg_str, char quote_char) { in AppendArgument() argument
324 InsertArgumentAtIndex(GetArgumentCount(), arg_str, quote_char); in AppendArgument()
328 char quote_char) { in InsertArgumentAtIndex() argument
334 m_entries.emplace(m_entries.begin() + idx, arg_str, quote_char); in InsertArgumentAtIndex()
339 char quote_char) { in ReplaceArgumentAtIndex() argument
346 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex()
603 char quote_char) { in EscapeLLDBCommandArgument() argument
605 switch (quote_char) { in EscapeLLDBCommandArgument()
/openbsd/gnu/llvm/lldb/source/API/
H A DSBCommandInterpreter.cpp273 char quote_char = request.GetParsedArg().GetQuoteChar(); in HandleCompletionWithDescriptions() local
275 Args::EscapeLLDBCommandArgument(common_prefix, quote_char); in HandleCompletionWithDescriptions()
277 common_prefix.push_back(quote_char); in HandleCompletionWithDescriptions()
/openbsd/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DCocoa.cpp816 const char quote_char = '"'; in NSURLSummaryProvider() local
827 bool back_consumed = summary_str.consume_back(quote_char + suffix); in NSURLSummaryProvider()
832 bool front_consumed = base_summary_str.consume_front(prefix + quote_char); in NSURLSummaryProvider()
/openbsd/gnu/lib/libreadline/doc/
H A Drltech.texinfo1550 to be dequoted, and @var{quote_char}, which is the quoting character
1552 @var{quote_char} is zero, the filename was not in an embedded string.