HomeSort by relevance Sort by last modified time
    Searched defs:Quote (Results 1 - 7 of 7) 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] != '\\')
632 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/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 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...]
  /external/llvm/lib/Support/
CommandLine.cpp 472 char Quote = Src[I++];
473 while (I != E && Src[I] != Quote) {
503 /// escape double quote. This method consumes runs of backslashes as well as the
504 /// following double quote if it's escaped.
506 /// * If an even number of backslashes is followed by a double quote, one
508 /// quote remains unconsumed. The double quote will later be interpreted as
512 /// * If an odd number of backslashes is followed by a double quote, one
513 /// backslash is output for every pair of backslashes, and a double quote is
514 /// output for the last pair of backslash-double quote. The double quote i
    [all...]

Completed in 705 milliseconds