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

/external/chromium/net/http/
H A Dhttp_auth_handler_digest.cc353 HttpUtil::Quote(UTF16ToUTF8(username)));
354 authorization += ", realm=" + HttpUtil::Quote(realm_);
355 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
356 authorization += ", uri=" + HttpUtil::Quote(path);
363 // No need to call HttpUtil::Quote() as the response digest cannot contain
368 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
374 authorization += ", cnonce=" + HttpUtil::Quote(cnonce);
H A Dhttp_util_unittest.cc167 TEST(HttpUtilTest, Quote) {
168 EXPECT_STREQ("\"xyz\\\"abc\"", HttpUtil::Quote("xyz\"abc").c_str());
171 EXPECT_STREQ("\"xyz\\\\abc\"", HttpUtil::Quote("xyz\\abc").c_str());
174 EXPECT_STREQ("\"xyzXabc\"", HttpUtil::Quote("xyzXabc").c_str());
H A Dhttp_util.h113 static std::string Quote(const std::string& str);
/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.cc353 HttpUtil::Quote(
355 authorization += ", realm=" + HttpUtil::Quote(original_realm_);
356 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
357 authorization += ", uri=" + HttpUtil::Quote(path);
364 // No need to call HttpUtil::Quote() as the response digest cannot contain
369 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
375 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.h126 static std::string Quote(const std::string& str);
/external/clang/lib/Driver/
H A DCompilation.cpp75 const char *Terminator, bool Quote) const {
81 if (!Quote && !std::strpbrk(*it, " \"\\$")) {
86 // Quote the argument and escape shell special characters; this isn't
101 PrintJob(OS, **it, Terminator, Quote);
178 // Quote the argument and escape shell special characters; this isn't
291 PrintJob(*OS, C, "\n", /*Quote=*/getDriver().CCPrintOptions);
/external/clang/include/clang/Driver/
H A DCompilation.h163 /// \param Quote - Should separate arguments be quoted.
165 const char *Terminator, bool Quote) const;
/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/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/icu4c/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.cpp218 char Quote = Charify ? '\'' : '"'; local
220 if (Result[i] == '\\' || Result[i] == Quote) {

Completed in 258 milliseconds