HomeSort by relevance Sort by last modified time
    Searched refs:Quote (Results 1 - 10 of 10) 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/include/clang/Driver/
Compilation.h 139 /// \param Quote - Should separate arguments be quoted.
141 const char *Terminator, bool Quote) const;
  /external/clang/lib/Driver/
Compilation.cpp 74 const char *Terminator, bool Quote) const {
80 if (!Quote && !std::strpbrk(*it, " \"\\$")) {
85 // Quote the argument and escape shell special characters; this isn't
100 PrintJob(OS, **it, Terminator, Quote);
171 PrintJob(*OS, C, "\n", /*Quote=*/getDriver().CCPrintOptions);
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 157 std::vector<std::string> Quote = unescapeJsonCommandLine("a\\\\\\\"");
158 ASSERT_EQ(1ul, Quote.size());
159 EXPECT_EQ("a\"", Quote[0]);
  /external/dbus/dbus/
dbus-shell.c 59 /* Skip the initial quote mark */
78 /* Possible escaped quote or \ */
136 /* If we reach here this means the close quote was never encountered */
274 * 1) "If the current character is backslash, single-quote or
275 * double-quote (\, ' or ") and it is not quoted, it will affect
282 * enclosing quotes or substitution operators, between the quote
309 * field splitting (using default whitespace IFS) and quote
311 * Quote removal does not increase the number of words.
316 * original word contained single-quote or double-quote characters.
    [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/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 211 char Quote = Charify ? '\'' : '"';
213 if (Result[i] == '\\' || Result[i] == Quote) {
    [all...]

Completed in 699 milliseconds