HomeSort by relevance Sort by last modified time
    Searched refs:Quote (Results 1 - 12 of 12) 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 186 /// Returns pointer to closing quote.
189 const char Quote = *BufferPtr;
190 assert(Quote == '\"' || Quote == '\'');
195 if (C == Quote && BufferPtr[-1] != '\\')
620 if (TokenPtr != CommentEnd) // Skip closing quote.
  /external/clang/include/clang/Driver/
Compilation.h 157 /// \param Quote - Should separate arguments be quoted.
159 const char *Terminator, bool Quote) const;
  /external/clang/lib/Driver/
Compilation.cpp 73 const char *Terminator, bool Quote) const {
79 if (!Quote && !std::strpbrk(*it, " \"\\$")) {
84 // Quote the argument and escape shell special characters; this isn't
99 PrintJob(OS, **it, Terminator, Quote);
176 // Quote the argument and escape shell special characters; this isn't
286 PrintJob(*OS, C, "\n", /*Quote=*/getDriver().CCPrintOptions);
  /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/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/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...]
  /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 840 milliseconds