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

  /external/clang/lib/AST/
CommentLexer.cpp 196 /// Returns pointer to closing quote.
199 const char Quote = *BufferPtr;
200 assert(Quote == '\"' || Quote == '\'');
205 if (C == Quote && BufferPtr[-1] != '\\')
659 if (TokenPtr != CommentEnd) // Skip closing quote.
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 375 std::vector<std::string> Quote = unescapeJsonCommandLine("a\\\\\\\"");
376 ASSERT_EQ(1ul, Quote.size());
377 EXPECT_EQ("a\"", Quote[0]);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
YAMLTraits.cpp 630 // Only quote if we must.
640 const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\"";
641 output(Quote); // Starting quote.
648 this->outputUpToEndOfLine(Quote);
652 // When using single-quoted strings, any single quote ' must be doubled to be escaped.
662 this->outputUpToEndOfLine(Quote); // Ending quote.
  /external/cldr/tools/java/org/unicode/cldr/util/
Pick.java 443 static class Quote extends ItemPick {
444 Quote(Pick item) {
461 return indent(depth) + result + "QUOTE(" + item.getInternal(depth + 1, alreadySeen)
777 Utility.appendToRule(target, (int)-1, true, false, quoteBuffer); // close previous quote
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp 204 char Quote = Charify ? '\'' : '"';
206 if (Result[i] == '\\' || Result[i] == Quote) {
239 // Munch the encoding-prefix and opening double-quote.
255 // quote.
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 712 char Quote = Src[I++];
713 while (I != E && Src[I] != Quote) {
747 /// escape double quote. This method consumes runs of backslashes as well as the
748 /// following double quote if it's escaped.
750 /// * If an even number of backslashes is followed by a double quote, one
752 /// quote remains unconsumed. The double quote will later be interpreted as
756 /// * If an odd number of backslashes is followed by a double quote, one
757 /// backslash is output for every pair of backslashes, and a double quote is
758 /// output for the last pair of backslash-double quote. The double quote i
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
CommandLine.cpp 731 char Quote = Src[I++];
732 while (I != E && Src[I] != Quote) {
766 /// escape double quote. This method consumes runs of backslashes as well as the
767 /// following double quote if it's escaped.
769 /// * If an even number of backslashes is followed by a double quote, one
771 /// quote remains unconsumed. The double quote will later be interpreted as
775 /// * If an odd number of backslashes is followed by a double quote, one
776 /// backslash is output for every pair of backslashes, and a double quote is
777 /// output for the last pair of backslash-double quote. The double quote i
    [all...]

Completed in 502 milliseconds