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

  /external/chromium/net/http/
http_auth_handler_digest.cc 161 HttpUtil::Quote(username);
162 authorization += ", realm=" + HttpUtil::Quote(realm_);
163 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
164 authorization += ", uri=" + HttpUtil::Quote(path);
171 // No need to call HttpUtil::Quote() as the response digest cannot contain
176 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
182 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 103 static std::string Quote(const std::string& str);
  /external/dbus/dbus/
dbus-shell.c 58 /* Skip the initial quote mark */
77 /* Possible escaped quote or \ */
135 /* If we reach here this means the close quote was never encountered */
146 * the shell, for example, you should first quote it with this
195 /* close the quote */
339 * 1) "If the current character is backslash, single-quote or
340 * double-quote (\, ' or ") and it is not quoted, it will affect
347 * enclosing quotes or substitution operators, between the quote
374 * field splitting (using default whitespace IFS) and quote
376 * Quote removal does not increase the number of words
    [all...]
  /external/chromium/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...]

Completed in 210 milliseconds