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] != '\\')
652 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/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
Pick.java 416 static class Quote extends ItemPick {
417 Quote(Pick item) {
433 return indent(depth) + result + "QUOTE(" + item.getInternal(depth+1, alreadySeen)
736 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 551 char Quote = Src[I++];
552 while (I != E && Src[I] != Quote) {
586 /// escape double quote. This method consumes runs of backslashes as well as the
587 /// following double quote if it's escaped.
589 /// * If an even number of backslashes is followed by a double quote, one
591 /// quote remains unconsumed. The double quote will later be interpreted as
595 /// * If an odd number of backslashes is followed by a double quote, one
596 /// backslash is output for every pair of backslashes, and a double quote is
597 /// output for the last pair of backslash-double quote. The double quote i
    [all...]

Completed in 258 milliseconds