HomeSort by relevance Sort by last modified time
    Searched refs:Quote (Results 1 - 19 of 19) sorted by null

  /external/chromium/net/http/
http_auth_handler_digest.cc 353 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);
http_util_unittest.cc 162 // Allow single quotes to act as quote marks.
167 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());
http_util.h 113 static std::string Quote(const std::string& str);
  /external/clang/lib/AST/
CommentLexer.cpp 187 /// Returns pointer to closing quote.
190 const char Quote = *BufferPtr;
191 assert(Quote == '\"' || Quote == '\'');
196 if (C == Quote && BufferPtr[-1] != '\\')
632 if (TokenPtr != CommentEnd) // Skip closing quote.
  /external/chromium_org/net/http/
http_auth_handler_digest.cc 353 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);
http_util_unittest.cc 248 // Allow single quotes to act as quote marks.
253 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());
http_util.h 126 static std::string Quote(const std::string& str);
  /external/clang/lib/Driver/
Compilation.cpp 75 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/
Compilation.h 163 /// \param Quote - Should separate arguments be quoted.
165 const char *Terminator, bool Quote) const;
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 329 std::vector<std::string> Quote = unescapeJsonCommandLine("a\\\\\\\"");
330 ASSERT_EQ(1ul, Quote.size());
331 EXPECT_EQ("a\"", Quote[0]);
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
DateTimeFormatTest.cpp 255 TEST_F(DateTimeFormatTest, Quote)
  /external/chromium_org/third_party/icu/source/test/intltest/
wbnf.cpp 243 // We get the precedence of escape/quote operations
546 class Quote : public Pick{
548 Quote(Pick & base):item(base),e(Escaper::NO, Escaper::NO, Escaper::BSLASH_ONLY){
893 state = IN_QUOTE; // the first time we see single quote
903 if (c == '\''){ // the second time we see single quote
905 } else if ( c== '\\') { // backslah escape in quote
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 243 // We get the precedence of escape/quote operations
546 class Quote : public Pick{
548 Quote(Pick & base):item(base),e(Escaper::NO, Escaper::NO, Escaper::BSLASH_ONLY){
893 state = IN_QUOTE; // the first time we see single quote
903 if (c == '\''){ // the second time we see single quote
905 } else if ( c== '\\') { // backslah escape in quote
    [all...]
  /external/chromium_org/v8/test/mjsunit/
json.js 188 TestInvalid("'single quote'"); // Valid JavaScript
372 // Following the ES5 specification of the abstraction function Quote.
  /external/v8/test/mjsunit/
json.js 188 TestInvalid("'single quote'"); // Valid JavaScript
326 // Following the ES5 specification of the abstraction function Quote.
  /external/clang/lib/Lex/
Lexer.cpp 218 char Quote = Charify ? '\'' : '"';
220 if (Result[i] == '\\' || Result[i] == Quote) {
253 // Munch the encoding-prefix and opening double-quote.
269 // quote.
    [all...]
  /external/chromium_org/chrome/browser/resources/history/
history.js 417 * Quote a string so it can be used in a regular expression.
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
android_3p-bundle.js     [all...]

Completed in 921 milliseconds