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

  /external/clang/lib/AST/
CommentLexer.cpp 187 /// Returns pointer to closing quote.
190 const char Quote = *BufferPtr;
191 assert(Quote == '\"' || Quote == '\'');
196 if (C == Quote && BufferPtr[-1] != '\\')
646 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_org/net/http/
http_util.cc 26 // Returns the index of the closing quote of the string, if any. |start| points
27 // at the opening quote.
423 // Single quote mark isn't actually part of quoted-text production,
455 // No terminal quote mark.
484 std::string HttpUtil::Quote(const std::string& str) {
883 // Verify that the equals sign we found wasn't inside of quote marks.
886 return valid_ = false; // Malformed, quote appears before equals sign
907 // * Does not detect when the final quote is escaped
  /external/chromium_org/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/clang/lib/Lex/
Lexer.cpp 210 char Quote = Charify ? '\'' : '"';
212 if (Result[i] == '\\' || Result[i] == Quote) {
245 // Munch the encoding-prefix and opening double-quote.
261 // quote.
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 497 char Quote = Src[I++];
498 while (I != E && Src[I] != Quote) {
528 /// escape double quote. This method consumes runs of backslashes as well as the
529 /// following double quote if it's escaped.
531 /// * If an even number of backslashes is followed by a double quote, one
533 /// quote remains unconsumed. The double quote will later be interpreted as
537 /// * If an odd number of backslashes is followed by a double quote, one
538 /// backslash is output for every pair of backslashes, and a double quote is
539 /// output for the last pair of backslash-double quote. The double quote i
    [all...]

Completed in 1005 milliseconds