/external/libcxx/test/std/strings/string.view/string.view.nonmem/ |
D | quoted.pass.cpp | 38 ss << std::quoted(sv); in round_trip() 40 ss >> std::quoted(s); in round_trip() 51 ss << std::quoted(sv); in round_trip_ws() 53 ss >> std::quoted(s); in round_trip_ws() 62 ss << std::quoted(sv, delim); in round_trip_d() 64 ss >> std::quoted(s, delim); in round_trip_d() 72 ss << std::quoted(sv, '"', escape ); in round_trip_e() 74 ss >> std::quoted(s, '"', escape ); in round_trip_e() 82 ss << std::quoted(p, delim, escape); in quote() 92 ss >> std::quoted(s, delim, escape); in unquote() [all …]
|
/external/libcxx/test/std/input.output/iostream.format/quoted.manip/ |
D | quoted.pass.cpp | 31 auto q = std::quoted(str); in both_ways() 45 ss << std::quoted(p); in round_trip() 47 ss >> std::quoted(s); in round_trip() 59 ss << std::quoted(p); in round_trip_ws() 61 ss >> std::quoted(s); in round_trip_ws() 71 ss << std::quoted(p, d); in round_trip_d() 73 ss >> std::quoted(s, d); in round_trip_d() 82 ss << std::quoted(p, CharT('"'), e ); in round_trip_e() 84 ss >> std::quoted(s, CharT('"'), e ); in round_trip_e() 94 ss << std::quoted(p, d, e); in quote() [all …]
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | AbstractLauncher.java | 71 String quoted = null; in tokenizeCommand() local 76 if (quoted != null) { in tokenizeCommand() 78 tokenList.add(quoted); in tokenizeCommand() 79 quoted = null; in tokenizeCommand() 81 quoted += token; in tokenizeCommand() 85 quoted = pending; in tokenizeCommand() 95 quoted = ""; in tokenizeCommand() 116 if (quoted != null) { in tokenizeCommand() 117 tokenList.add(quoted); in tokenizeCommand()
|
/external/autotest/frontend/afe/doctests/ |
D | test.control.3 | 2 some content\"""quoted content\""" 3 '''other quoted content\"""''' 7 some content\'''quoted content\''' 8 """other quoted content\'''"""
|
D | 003_misc_rpc_features.txt | 93 # test that multiline quoted strings are not indented 108 some content\"""quoted content\""" 109 '''other quoted content\"""''' 112 some content\'''quoted content\''' 113 """other quoted content\'''"""
|
/external/jsilver/src/com/google/streamhtmlparser/ |
D | HtmlParserFactory.java | 194 boolean quoted, Set<AttributeOptions> options) { in createParserInAttribute() argument 201 quoted ? parserInDefaultAttrQ : parserInDefaultAttr); in createParserInAttribute() 206 quoted ? parserInUriAttrQPartial : parserInUriAttrPartial); in createParserInAttribute() 209 quoted ? parserInUriAttrQComplete : parserInUriAttrComplete); in createParserInAttribute() 217 if (quoted) { in createParserInAttribute() 228 quoted ? parserInStyleAttrQ : parserInStyleAttr); in createParserInAttribute()
|
/external/python/cpython2/Doc/library/ |
D | quopri.rst | 1 :mod:`quopri` --- Encode and decode MIME quoted-printable data 5 :synopsis: Encode and decode files using the MIME quoted-printable encoding. 9 pair: quoted-printable; encoding 10 single: MIME; quoted-printable encoding 16 This module performs quoted-printable transport encoding and decoding, as 19 The quoted-printable encoding is designed for data where there are relatively 37 Encode the contents of the *input* file and write the resulting quoted-printable
|
D | mimify.rst | 17 of) a message entails encoding the message as quoted-printable if it contains 19 part of) a message entails undoing the quoted-printable encoding. Mimify and 34 Copy the message in *infile* to *outfile*, converting parts to quoted-printable 43 Copy the message in *infile* to *outfile*, decoding all quoted-printable parts. 65 By default, a part will be encoded as quoted-printable when it contains any 95 Encode and decode MIME quoted-printable files.
|
/external/python/cpython3/Doc/library/ |
D | quopri.rst | 1 :mod:`quopri` --- Encode and decode MIME quoted-printable data 5 :synopsis: Encode and decode files using the MIME quoted-printable encoding. 10 pair: quoted-printable; encoding 11 single: MIME; quoted-printable encoding 15 This module performs quoted-printable transport encoding and decoding, as 18 The quoted-printable encoding is designed for data where there are relatively 35 Encode the contents of the *input* file and write the resulting quoted-printable
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
D | X500NameTokenizer.java | 44 boolean quoted = false; in nextToken() 57 quoted = !quoted; in nextToken() 64 if (escaped || quoted) in nextToken()
|
/external/desugar/java/com/google/devtools/common/options/ |
D | ShellQuotedParamsFilePreProcessor.java | 92 boolean quoted = false; in readArg() 96 if (quoted) { in readArg() 106 quoted = false; in readArg() 114 quoted = true; in readArg() 131 if (quoted) { in readArg()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x500/style/ |
D | X500NameTokenizer.java | 46 boolean quoted = false; in nextToken() 59 quoted = !quoted; in nextToken() 66 if (escaped || quoted) in nextToken()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | X509NameTokenizer.java | 45 boolean quoted = false; in nextToken() 58 quoted = !quoted; in nextToken() 65 if (escaped || quoted) in nextToken()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | X509NameTokenizer.java | 47 boolean quoted = false; in nextToken() 60 quoted = !quoted; in nextToken() 67 if (escaped || quoted) in nextToken()
|
/external/python/cpython2/Lib/ |
D | shlex.py | 121 quoted = False 140 if self.token or (self.posix and quoted): 162 if self.token or (self.posix and quoted): 167 quoted = True 207 if self.token or (self.posix and quoted): 216 if self.token or (self.posix and quoted): 233 if self.token or (self.posix and quoted): 239 if self.posix and not quoted and result == '':
|
/external/python/cpython3/Lib/ |
D | shlex.py | 130 quoted = False 152 if self.token or (self.posix and quoted): 177 if self.token or (self.posix and quoted): 182 quoted = True 222 if self.token or (self.posix and quoted): 231 if self.token or (self.posix and quoted): 259 if self.token or (self.posix and quoted): 265 if self.posix and not quoted and result == '':
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/X86/ |
D | missing-closing-quote.mir | 5 @"quoted name" = external global i32 9 %a = load i32, i32* @"quoted name" 19 $rax = MOV64rm $rip, 1, _, @"quoted name, _
|
D | block-address-operands.mir | 21 store volatile i8* blockaddress(@test2, %"quoted block"), i8** @addr 23 indirectbr i8* %val, [label %"quoted block"] 25 "quoted block": 74 ; CHECK: $rax = LEA64r $rip, 1, $noreg, blockaddress(@test2, %ir-block."quoted block"), $noreg 75 $rax = LEA64r $rip, 1, _, blockaddress(@test2, %ir-block."quoted block"), _
|
/external/llvm/test/CodeGen/MIR/X86/ |
D | missing-closing-quote.mir | 5 @"quoted name" = external global i32 9 %a = load i32, i32* @"quoted name" 19 %rax = MOV64rm %rip, 1, _, @"quoted name, _
|
D | block-address-operands.mir | 21 store volatile i8* blockaddress(@test2, %"quoted block"), i8** @addr 23 indirectbr i8* %val, [label %"quoted block"] 25 "quoted block": 74 ; CHECK: %rax = LEA64r %rip, 1, _, blockaddress(@test2, %ir-block."quoted block"), _ 75 %rax = LEA64r %rip, 1, _, blockaddress(@test2, %ir-block."quoted block"), _
|
/external/python/cpython2/Lib/email/ |
D | quoprimime.py | 152 quoted = [] 162 _max_append(quoted, '_', max_encoded) 165 _max_append(quoted, c, max_encoded) 168 _max_append(quoted, "=%02X" % ord(c), max_encoded) 174 return joiner.join(['=?%s?q?%s?=' % (charset, line) for line in quoted])
|
/external/llvm/utils/lit/lit/ |
D | ShCommands.py | 19 quoted = "'%s'" % arg 21 quoted = '"%s"' % arg 24 file.write(quoted) 28 dequoted = list(ShUtil.ShLexer(quoted).lex())
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | ShCommands.py | 19 quoted = "'%s'" % arg 21 quoted = '"%s"' % arg 24 print >>file, quoted, 28 dequoted = list(ShUtil.ShLexer(quoted).lex())
|
/external/python/setuptools/ |
D | launcher.c | 49 char *quoted(char *data) { in quoted() function 305 *newargsp++ = quoted(ptr); in run() 306 for (i = 1; i<parsedargc; i++) *newargsp++ = quoted(parsedargs[i]); in run() 308 *newargsp++ = quoted(script); in run() 309 for (i = 1; i < argc; i++) *newargsp++ = quoted(argv[i]); in run()
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | ShCommands.py | 19 quoted = "'%s'" % arg 21 quoted = '"%s"' % arg 24 file.write(quoted) 28 dequoted = list(ShUtil.ShLexer(quoted).lex())
|