HomeSort by relevance Sort by last modified time
    Searched defs:Quote (Results 1 - 11 of 11) 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]);
  /prebuilts/go/darwin-x86/src/strconv/
quote.go 13 func quoteWith(s string, quote byte, ASCIIonly, graphicOnly bool) string {
14 return string(appendQuotedWith(make([]byte, 0, 3*len(s)/2), s, quote, ASCIIonly, graphicOnly))
17 func quoteRuneWith(r rune, quote byte, ASCIIonly, graphicOnly bool) string {
18 return string(appendQuotedRuneWith(nil, r, quote, ASCIIonly, graphicOnly))
21 func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
22 buf = append(buf, quote)
35 buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
37 buf = append(buf, quote)
41 func appendQuotedRuneWith(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
42 buf = append(buf, quote)
    [all...]
  /prebuilts/go/linux-x86/src/strconv/
quote.go 13 func quoteWith(s string, quote byte, ASCIIonly, graphicOnly bool) string {
14 return string(appendQuotedWith(make([]byte, 0, 3*len(s)/2), s, quote, ASCIIonly, graphicOnly))
17 func quoteRuneWith(r rune, quote byte, ASCIIonly, graphicOnly bool) string {
18 return string(appendQuotedRuneWith(nil, r, quote, ASCIIonly, graphicOnly))
21 func appendQuotedWith(buf []byte, s string, quote byte, ASCIIonly, graphicOnly bool) []byte {
22 buf = append(buf, quote)
35 buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
37 buf = append(buf, quote)
41 func appendQuotedRuneWith(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
42 buf = append(buf, quote)
    [all...]
  /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...]
  /system/tpm/trunks/
tpm_generated.cc     [all...]
  /prebuilts/jdk/jdk8/darwin-x86/lib/
tools.jar 
  /prebuilts/jdk/jdk8/linux-x86/lib/
tools.jar 

Completed in 515 milliseconds