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

  /external/chromium/net/http/
http_util.cc 24 // Return the index of the closing quote of the string, if any.
31 // start points to either the start quote or the last
370 // Single quote mark isn't actually part of quoted-text production,
386 // No terminal quote mark.
415 std::string HttpUtil::Quote(const std::string& str) {
745 // Verify that the equals sign we found wasn't inside of quote marks.
748 return valid_ = false; // Malformed, quote appears before equals sign
769 // * Does not detect when the final quote is escaped
  /external/clang/lib/Lex/
Lexer.cpp 208 char Quote = Charify ? '\'' : '"';
210 if (Result[i] == '\\' || Result[i] == 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 324 milliseconds