Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/libreadline/
HDcomplete.c819 char quote_char, *brkchars; local
823 quote_char = '\0';
849 if (quote_char != '\'' && rl_line_buffer[scan] == '\\')
856 if (quote_char != '\0')
859 if (rl_line_buffer[scan] == quote_char)
862 quote_char = '\0';
869 quote_char = rl_line_buffer[scan];
872 if (quote_char == '\'')
874 else if (quote_char == '"')
882 if (rl_point == end && quote_char == '\0')
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDArgs.h176 void AppendArgument(llvm::StringRef arg_str, char quote_char = '\0');
193 char quote_char = '\0');
207 char quote_char = '\0');
248 void Unshift(llvm::StringRef arg_str, char quote_char = '\0');
283 char quote_char);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDOptionValueDictionary.cpp138 const char quote_char = key.front(); in SetArgs() local
139 if ((quote_char == '\'') || (quote_char == '"')) { in SetArgs()
140 if ((key.size() > 2) && (key.back() == quote_char)) { in SetArgs()
231 llvm::StringRef key, quote_char; in GetSubValue() local
234 quote_char = temp.take_front(); in GetSubValue()
241 if (!key.consume_back(quote_char) || key.empty()) { in GetSubValue()
HDCommandInterpreter.cpp1328 std::string &suffix, char &quote_char) { in ExtractCommand() argument
1334 quote_char = '\0'; in ExtractCommand()
1339 quote_char = first_char; in ExtractCommand()
1340 const size_t end_quote_pos = command_string.find(quote_char, 1); in ExtractCommand()
2966 char quote_char = '\0'; in ResolveCommandImpl() local
2968 ExtractCommand(scratch_command, next_word, suffix, quote_char); in ResolveCommandImpl()
3009 if (quote_char) in ResolveCommandImpl()
3010 revised_command_line.Printf(" %c%s%s%c", quote_char, in ResolveCommandImpl()
3012 quote_char); in ResolveCommandImpl()
3019 if (quote_char) in ResolveCommandImpl()
[all …]
/freebsd-11-stable/contrib/gdb/gdb/
HDcompleter.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()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDArgs.cpp286 void Args::Unshift(llvm::StringRef arg_str, char quote_char) { in Unshift() argument
287 InsertArgumentAtIndex(0, arg_str, quote_char); in Unshift()
315 void Args::AppendArgument(llvm::StringRef arg_str, char quote_char) { in AppendArgument() argument
316 InsertArgumentAtIndex(GetArgumentCount(), arg_str, quote_char); in AppendArgument()
320 char quote_char) { in InsertArgumentAtIndex() argument
326 m_entries.emplace(m_entries.begin() + idx, arg_str, quote_char); in InsertArgumentAtIndex()
331 char quote_char) { in ReplaceArgumentAtIndex() argument
338 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex()
597 char quote_char) { in EscapeLLDBCommandArgument() argument
599 switch (quote_char) { in EscapeLLDBCommandArgument()
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBCommandInterpreter.cpp396 char quote_char = request.GetParsedArg().GetQuoteChar(); in HandleCompletionWithDescriptions() local
398 Args::EscapeLLDBCommandArgument(common_prefix, quote_char); in HandleCompletionWithDescriptions()
400 common_prefix.push_back(quote_char); in HandleCompletionWithDescriptions()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
HDCocoa.cpp712 const char quote_char = '"'; in NSURLSummaryProvider() local
723 bool back_consumed = summary_str.consume_back(quote_char + suffix); in NSURLSummaryProvider()
728 bool front_consumed = base_summary_str.consume_front(prefix + quote_char); in NSURLSummaryProvider()
/freebsd-11-stable/contrib/libreadline/doc/
HDrltech.texi1637 to be dequoted, and @var{quote_char}, which is the quoting character
1639 @var{quote_char} is zero, the filename was not in an embedded string.