Searched defs:Quote (Results 1 - 7 of 7) sorted by relevance

/external/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp329 std::vector<std::string> Quote = unescapeJsonCommandLine("a\\\\\\\""); local
330 ASSERT_EQ(1ul, Quote.size());
331 EXPECT_EQ("a\"", Quote[0]);
/external/clang/lib/AST/
H A DCommentLexer.cpp190 const char Quote = *BufferPtr; local
191 assert(Quote == '\"' || Quote == '\'');
196 if (C == Quote && BufferPtr[-1] != '\\')
/external/clang/lib/Driver/
H A DJob.cpp78 static void PrintArg(raw_ostream &OS, const char *Arg, bool Quote) { argument
81 if (!Quote && !Escape) {
86 // Quote and escape. This isn't really complete, but good enough.
149 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, argument
153 PrintArg(OS, Executable, /*Quote=*/true);
182 PrintArg(OS, ShortName.str().c_str(), Quote);
188 PrintArg(OS, Arg, Quote);
193 PrintArg(OS, "-ivfsoverlay", Quote);
195 PrintArg(OS, CrashInfo->VFSPath.str().c_str(), Quote);
266 bool Quote, CrashReportInf
265 Print(raw_ostream &OS, const char *Terminator, bool Quote, CrashReportInfo *CrashInfo) const argument
300 Print(raw_ostream &OS, const char *Terminator, bool Quote, CrashReportInfo *CrashInfo) const argument
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DPick.java416 static class Quote extends ItemPick { class in class:Pick
417 Quote(Pick item) { method in class:Pick.Quote
/external/clang/lib/CodeGen/
H A DTargetInfo.cpp1638 bool Quote = (Lib.find(" ") != StringRef::npos); local
1639 std::string ArgStr = Quote ? "\"" : "";
1643 ArgStr += Quote ? "\"" : "";
/external/clang/lib/Lex/
H A DLexer.cpp204 char Quote = Charify ? '\'' : '"'; local
206 if (Result[i] == '\\' || Result[i] == Quote) {
/external/llvm/lib/Support/
H A DCommandLine.cpp551 char Quote = Src[I++]; local
552 while (I != E && Src[I] != Quote) {

Completed in 608 milliseconds