Home
last modified time | relevance | path

Searched refs:Quote (Results 1 – 25 of 35) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp207 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() argument
242 llvm::sys::printArg(OS, F.c_str(), Quote); in Print()
257 llvm::sys::printArg(OS, ShortName.str(), Quote); in Print()
263 llvm::sys::printArg(OS, Arg, Quote); in Print()
268 llvm::sys::printArg(OS, "-ivfsoverlay", Quote); in Print()
270 llvm::sys::printArg(OS, CrashInfo->VFSPath.str(), Quote); in Print()
285 llvm::sys::printArg(OS, ModCachePath, Quote); in Print()
403 void CC1Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() argument
407 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
453 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print() argument
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h182 virtual void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
252 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
274 bool Quote, CrashReportInfo *CrashInfo = nullptr) const;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp83 void sys::printArg(raw_ostream &OS, StringRef Arg, bool Quote) { in printArg() argument
86 if (!Quote && !Escape) { in printArg()
H A DYAMLTraits.cpp727 const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\""; in scalarString() local
728 output(Quote); // Starting quote. in scalarString()
735 outputUpToEndOfLine(Quote); in scalarString()
754 outputUpToEndOfLine(Quote); // Ending quote. in scalarString()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dflags_parser.cpp73 const char Quote = Buffer[Pos++]; in parseFlag() local
74 while (Buffer[Pos] != 0 && Buffer[Pos] != Quote) in parseFlag()
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Doptions_parser.cpp99 const char Quote = Buffer[Pos++]; in parseOption() local
100 while (Buffer[Pos] != 0 && Buffer[Pos] != Quote) in parseOption()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp179 const char Quote = *BufferPtr; in skipHTMLQuotedString() local
180 assert(Quote == '\"' || Quote == '\''); in skipHTMLQuotedString()
185 if (C == Quote && BufferPtr[-1] != '\\') in skipHTMLQuotedString()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DProgram.h232 void printArg(llvm::raw_ostream &OS, StringRef Arg, bool Quote);
/freebsd/usr.bin/mail/misc/
H A Dmail.tildehelp4 ~~ Quote a single tilde
/freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp138 char Quote = *Pos; in getSpaceDelimitedWord() local
140 const char *End = strchr(Pos, Quote); in getSpaceDelimitedWord()
/freebsd/crypto/heimdal/lib/roken/
H A Dglob.hin89 #define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
/freebsd/usr.sbin/bsdconfig/share/packages/
H A Dpackages.subr117 '$category' '$desc' '$help'" # End-Quote
295 " # End-Quote
475 " # End-Quote
543 " # End-Quote
598 " # End-Quote
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp1216 auto Quote = FormatTok->TokenText.find('\''); in getNextToken() local
1217 if (Quote != StringRef::npos) in getNextToken()
1218 truncateToken(Quote); in getNextToken()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp240 template <typename T> static void StringifyImpl(T &Str, char Quote) { in StringifyImpl() argument
243 if (Str[i] == '\\' || Str[i] == Quote) { in StringifyImpl()
267 char Quote = Charify ? '\'' : '"'; in Stringify() local
268 StringifyImpl(Result, Quote); in Stringify()
/freebsd/contrib/libxo/doc/
H A Dfield-modifiers.rst27 q quotes Quote the field when using JSON style
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DX86.cpp1603 bool Quote = Lib.contains(' '); in qualifyWindowsLibrary() local
1604 std::string ArgStr = Quote ? "\"" : ""; in qualifyWindowsLibrary()
1608 ArgStr += Quote ? "\"" : ""; in qualifyWindowsLibrary()
/freebsd/contrib/tcsh/
H A DFixes59 10. PR/526: Quote backslashes properly so they can be preserved in ``
335 15. Quote the history in the examples (Johann 'Myrkraverk' Oskarsson)
938 10. Quote directory names properly in .cshdirs
1994 11. Quote expanded glob and history chars too.
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp3516 char Quote = getTok().getString().front(); in parseEscapedString() local
3521 if (Str[i] == Quote) { in parseEscapedString()
3527 if (Str[i + 1] == Quote) in parseEscapedString()
/freebsd/contrib/diff/
H A DChangeLog23 * configure.ac: Quote various arguments better.
1914 Quote name of diff program.
2045 * diff3.c (read_diff): Quote arguments with system_quote_arg.
2047 * diff.c (option_list): Quote options with system_quote_arg.
/freebsd/usr.sbin/services_mkdb/
H A Dservices40 qotd 17/tcp quote #Quote of the Day
41 qotd 17/udp quote #Quote of the Day
/freebsd/contrib/diff/doc/
H A Ddiff.texi3140 Quote names for the shell if they contain shell metacharacters or would
3143 Quote names for the shell, even if they would normally not require quoting.
3145 Quote names as for a C language string.
3147 Quote as with @samp{c} except omit the surrounding double-quote
3151 @c Quote as with @samp{c} except use quotation marks appropriate for the
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstring2597 // Quote: "Unless otherwise specified, all standard library objects that have been moved
2601 // Quote: "v = std::move(v); // the value of v is unspecified"
/freebsd/contrib/tzdata/
H A Dsouthamerica1227 # Quote from the website communication:
/freebsd/sys/contrib/zlib/
H A DChangeLog196 - Quote --version-script argument in CMakeLists.txt
/freebsd/contrib/file/m4/
H A Dlibtool.m4434 # Quote a variable value, and forward it to 'config.status' so that its
555 # Quote evaled strings.

12