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

  /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/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/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) {
752 // Verify that the equals sign we found wasn't inside of quote marks.
755 return valid_ = false; // Malformed, quote appears before equals sign
776 // * Does not detect when the final quote is escaped
  /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/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 405 milliseconds