Searched refs:Quote (Results 1 - 13 of 13) sorted by relevance

/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.
96 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, argument
111 PrintArg(OS, Arg, Quote);
142 bool Quote, bool CrashReport) const {
143 Command::Print(OS, "", Quote, CrashReport);
145 Fallback->Print(OS, Terminator, Quote, CrashReport);
181 void JobList::Print(raw_ostream &OS, const char *Terminator, bool Quote, argument
184 (*it)->Print(OS, Terminator, Quote, CrashRepor
141 Print(raw_ostream &OS, const char *Terminator, bool Quote, bool CrashReport) const argument
[all...]
/external/clang/include/clang/Driver/
H A DJob.h53 /// \param Quote - Should separate arguments be quoted.
56 bool Quote, bool CrashReport = false) const = 0;
79 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
109 void Print(llvm::raw_ostream &OS, const char *Terminator, bool Quote,
139 bool Quote, bool CrashReport = false) const override;
/external/clang/lib/AST/
H A DCommentLexer.cpp190 const char Quote = *BufferPtr; local
191 assert(Quote == '\"' || Quote == '\'');
196 if (C == Quote && BufferPtr[-1] != '\\')
/external/chromium_org/net/http/
H A Dhttp_auth_handler_digest.cc355 HttpUtil::Quote(
357 authorization += ", realm=" + HttpUtil::Quote(original_realm_);
358 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
359 authorization += ", uri=" + HttpUtil::Quote(path);
366 // No need to call HttpUtil::Quote() as the response digest cannot contain
371 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
377 authorization += ", cnonce=" + HttpUtil::Quote(cnonce);
H A Dhttp_util_unittest.cc253 TEST(HttpUtilTest, Quote) {
254 EXPECT_STREQ("\"xyz\\\"abc\"", HttpUtil::Quote("xyz\"abc").c_str());
257 EXPECT_STREQ("\"xyz\\\\abc\"", HttpUtil::Quote("xyz\\abc").c_str());
260 EXPECT_STREQ("\"xyzXabc\"", HttpUtil::Quote("xyzXabc").c_str());
H A Dhttp_util.h133 static std::string Quote(const std::string& str);
/external/chromium_org/chrome/test/remoting/
H A Dkey_code_map.h85 {'\'', '\"', "Quote", ui::VKEY_OEM_7}, // '"
/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/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DContentData.h195 DEFINE_CONTENT_DATA_TYPE_CASTS(Quote);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-key-codes.js153 '\'': {keyCode: 0xDE, keyName: 'Quote', shiftModifier: false},
154 '"': {keyCode: 0xDE, keyName: 'Quote', shiftModifier: true},
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DDateTimeFormatTest.cpp255 TEST_F(DateTimeFormatTest, Quote)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dwbnf.cpp546 class Quote : public Pick{ class in inherits:Pick
548 Quote(Pick & base):item(base),e(Escaper::NO, Escaper::NO, Escaper::BSLASH_ONLY){ function in class:Quote
1103 node = new Quote(*node);
1423 Quote q(*p);
/external/clang/lib/Lex/
H A DLexer.cpp210 char Quote = Charify ? '\'' : '"'; local
212 if (Result[i] == '\\' || Result[i] == Quote) {

Completed in 336 milliseconds