/third_party/typescript/tests/cases/fourslash/ |
D | navigationBarFunctionPrototype4.ts | 20 …"childItems": [{ name: "A", quoted: false }, { name: "B", quoted: true }].map(({ name, quoted }) =… 34 "text": quoted ? `"a"` : "a", 38 "text": quoted ? `"b"` : "b", 57 ...[{ name: "A", quoted: false }, { name: "B", quoted: true }].map(({ name, quoted }) => ({ 70 "text": quoted ? `"a"` : "a", 74 "text": quoted ? `"b"` : "b",
|
/third_party/mbedtls/programs/test/ |
D | udp_proxy_wrapper.sh | 55 tail="$1" quoted="" 59 *) quoted="${quoted}${tail}"; tail=; false;; 62 tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'" 65 unset tail quoted
|
/third_party/python/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
|
D | email.charset.rst | 35 Certain character sets must be encoded with quoted-printable or base64 when used 44 quoted-printable and no output conversion codec is necessary. If 62 quoted-printable), ``Charset.BASE64`` (for base64 encoding), or 102 This is either the string ``quoted-printable`` or ``base64`` depending on 108 Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, 125 The type of encoding (base64 or quoted-printable) will be based on the 143 The type of encoding (base64 or quoted-printable) will be based on the 179 quoted-printable, ``Charset.BASE64`` for base64 encoding, 180 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
|
D | email.encoders.rst | 44 Encodes the payload into quoted-printable form and sets the 45 :mailheader:`Content-Transfer-Encoding` header to ``quoted-printable`` [#]_. 55 compact form than quoted-printable. The drawback of base64 encoding is that it
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
D | CollationMapper.java | 163 boolean quoted = false; in findCommentStart() 167 quoted = !quoted; in findCommentStart() 171 if (quoted) { in findCommentStart() 177 if (!quoted) { in findCommentStart() 186 checkArgument(!quoted, "mismatched quotes in: %s", s); in findCommentStart()
|
/third_party/python/Lib/ |
D | shlex.py | 134 quoted = False 156 if self.token or (self.posix and quoted): 181 if self.token or (self.posix and quoted): 186 quoted = True 226 if self.token or (self.posix and quoted): 235 if self.token or (self.posix and quoted): 264 if self.token or (self.posix and quoted): 270 if self.posix and not quoted and result == '':
|
/third_party/rust/crates/regex/regex-syntax/src/ |
D | lib.rs | 179 let mut quoted = String::new(); in escape() localVariable 180 escape_into(text, &mut quoted); in escape() 181 quoted in escape()
|
/third_party/flutter/flutter/packages/flutter/test/foundation/ |
D | diagnostics_json_test.dart | 30 StringProperty('stringProperty1', 'value1', quoted: false), 33 StringProperty('DO_NOT_SHOW', 'DO_NOT_SHOW', level: DiagnosticLevel.hidden, quoted: false), 36 StringProperty('node_type', '<root node>', showName: false, quoted: false), 43 StringProperty('p1', 'v1', quoted: false), 44 StringProperty('p2', 'v2', quoted: false), 50 properties: <DiagnosticsNode>[StringProperty('property1', 'value1', quoted: false)], 55 StringProperty('node_type', '<leaf node>', showName: false, quoted: false), 64 StringProperty('foo', 'multi\nline\nvalue!', quoted: false),
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | IcuTextWriter.java | 314 private static int goodBreak(String quoted, int end) { in goodBreak() argument 315 if (end > quoted.length()) { in goodBreak() 316 return quoted.length(); in goodBreak() 321 char current = quoted.charAt(i--); in goodBreak() 324 && quoted.charAt(i) == '\\') { in goodBreak() 331 char ch = quoted.charAt(end - 1); in goodBreak()
|
/third_party/PyYAML/tests/data/ |
D | spec-10-02.data | 3 quoted", 'single 4 quoted',
|
D | spec-02-18.data | 5 quoted: "So does this 6 quoted scalar.\n"
|
D | spec-10-02.canonical | 4 !!str "double quoted", 5 !!str "single quoted",
|
D | scalars.events | 9 - !Scalar { implicit: [true,true], value: 'quoted scalar' } 17 - !Scalar { implicit: [true,true], value: 'quoted scalar with tag' }
|
/third_party/typescript/tests/baselines/reference/ |
D | quotedModuleNameMustBeAmbient.errors.txt | 1 …ler/quotedModuleNameMustBeAmbient.ts(1,8): error TS1035: Only ambient modules can use quoted names. 7 !!! error TS1035: Only ambient modules can use quoted names.
|
D | parserModuleDeclaration1.errors.txt | 1 …arations/parserModuleDeclaration1.ts(1,8): error TS1035: Only ambient modules can use quoted names. 7 !!! error TS1035: Only ambient modules can use quoted names.
|
/third_party/rust/crates/cxx/tests/ui/ |
D | raw_ident_namespace.stderr | 1 error: raw identifier `r#box` is not allowed in a quoted namespace; use `box`, or remove quotes 7 error: raw identifier `r#box` is not allowed in a quoted namespace; use `box`, or remove quotes
|
/third_party/python/Modules/ |
D | _csv.c | 1070 Py_ssize_t field_len, int *quoted, in join_append_data() argument 1099 if (copy_phase && *quoted) in join_append_data() 1127 *quoted = 1; in join_append_data() 1143 if (*quoted) { in join_append_data() 1180 join_append(WriterObj *self, PyObject *field, int quoted) in join_append() argument 1195 "ed, 0); in join_append() 1204 "ed, 1); in join_append() 1261 int quoted; in csv_writerow() local 1265 quoted = !PyNumber_Check(field); in csv_writerow() 1268 quoted = 1; in csv_writerow() [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/pkgdata/ |
D | pkgtypes.h | 41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted); 46 …_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/pkgdata/ |
D | pkgtypes.h | 41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted); 46 …_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
|
/third_party/node/deps/icu-small/source/tools/pkgdata/ |
D | pkgtypes.h | 41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted); 46 …_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
|
/third_party/icu/icu4c/source/tools/pkgdata/ |
D | pkgtypes.h | 41 const char *pkg_writeCharList(FileStream *s, CharList *l, const char *delim, int32_t quoted); 46 …_writeCharListWrap(FileStream *s, CharList *l, const char *delim, const char *brk, int32_t quoted);
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_15.txt | 21 Content-transfer-encoding: quoted-printable 27 Content-transfer-encoding: quoted-printable
|
/third_party/alsa-lib/src/topology/ |
D | save.c | 307 int type, err, quoted, array; in save_config() local 347 quoted = 0; in save_config() 355 if (!quoted && tplg_check_quoted((unsigned char *)id)) in save_config() 356 quoted = 1; in save_config() 395 if (quoted) { in save_config()
|
/third_party/ltp/scripts/ |
D | checkbashisms.pl | 499 my $quoted = defined($3); 500 $cat_string = $quoted ? $3 : $2; 501 unless ($quoted) {
|