/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 31 …* Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521… 34 …* The Quoted-Printable encoding is intended to represent data that largely consists of octets that… 37 …gely recognizable by humans. A body which is entirely ASCII may also be encoded in Quoted-Printable 46 …* Rules #3, #4, and #5 of the quoted-printable spec are not implemented yet because the complete q… 49 …* for those applications that do not require quoted-printable line formatting (rules #3, #4, #5), … 112 * Encodes byte into its quoted-printable representation. 128 …* Encodes an array of bytes into an array of quoted-printable 7-bit characters. Unsafe characters … 131 …* This function implements a subset of quoted-printable encoding specification (rule #1 and rule #… 136 * bitset of characters deemed quoted-printable 139 * @return array of bytes containing quoted-printable data [all …]
|
D | QCodec.java | 29 * Similar to the Quoted-Printable content-transfer-encoding defined in <a 179 …* Encodes a string into its quoted-printable form using the specified charset. Unsafe characters a… 182 * string to convert to quoted-printable form 185 * @return quoted-printable string 202 …* Encodes a string into its quoted-printable form using the default charset. Unsafe characters are… 205 * string to convert to quoted-printable form 206 * @return quoted-printable string 219 …* Decodes a quoted-printable string into its original form. Escaped characters are converted back … 223 * quoted-printable string to convert into its original form 242 …* Encodes an object into its quoted-printable form using the default charset. Unsafe characters ar… [all …]
|
/external/libcxx/test/std/strings/string.view/string.view.nonmem/ |
D | quoted.pass.cpp | 12 // quoted 22 // quoted is C++14 only 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() [all …]
|
/external/python/cpython3/Lib/email/ |
D | quoprimime.py | 5 """Quoted-printable content transfer encoding per RFCs 2045-2047. 8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to 13 Quoted-printable is very space-inefficient for encoding binary files; use the 17 with quoted-printable encoding. 85 """Return a header quoted-printable encoding length. 92 quoted-printable for headers. 98 """Return a body quoted-printable encoding length. 102 quoted-printable for bodies. 128 """Encode a single header line with quoted-printable (like) encoding. 130 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but [all …]
|
D | _header_value_parser.py | 41 the value of a 'bare-quoted-string' (a quoted-string with no leading or 43 is preserved in the returned value. Note that in all Terminal strings quoted 48 produced the parsed subtree, including minimal use of quoted pair quoting. 64 It is returned in place of lists of (ctext/quoted-pair) and 65 (qtext/quoted-pair). 221 token_type = 'quoted-string' 226 if x.token_type == 'bare-quoted-string': 233 if x.token_type == 'bare-quoted-string': 242 if token.token_type == 'bare-quoted-string': 248 token_type = 'bare-quoted-string' [all …]
|
/external/libcxx/test/std/input.output/iostream.format/quoted.manip/ |
D | quoted.pass.cpp | 12 // quoted 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() [all …]
|
/external/jsilver/src/com/google/streamhtmlparser/ |
D | HtmlParserFactory.java | 47 * Indicates that the attribute value is Javascript-quoted. Only takes 50 * HTML quoted. 71 * Indicates that the parser is inside a quoted {@code String}. Only 186 * @param quoted whether the attribute value is enclosed in double quotes 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() 213 // inside a Javascript quoted string that is in an unquoted HTML in createParserInAttribute() 216 // quoted attribute values are always HTML quoted. in createParserInAttribute() [all …]
|
/external/python/cpython2/Lib/email/ |
D | quoprimime.py | 5 """Quoted-printable content transfer encoding per RFCs 2045-2047. 8 to encode US ASCII-like 8-bit data called `quoted-printable'. It is used to 13 Quoted-printable is very space-inefficient for encoding binary files; use the 17 with quoted-printable encoding. 116 """Encode a single header line with quoted-printable (like) encoding. 118 Defined in RFC 2045, this `Q' encoding is similar to quoted-printable, but 152 quoted = [] 162 _max_append(quoted, '_', max_encoded) 165 _max_append(quoted, c, max_encoded) 168 _max_append(quoted, "=%02X" % ord(c), max_encoded) [all …]
|
/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 | email.charset.rst | 29 Certain character sets must be encoded with quoted-printable or base64 when used 38 quoted-printable and no output conversion codec is necessary. If 57 quoted-printable), ``Charset.BASE64`` (for base64 encoding), or 97 This is either the string ``quoted-printable`` or ``base64`` depending on 103 Returns the string ``quoted-printable`` if *body_encoding* is ``QP``, 155 quoted-printable or base64 encoding. 169 The type of encoding (base64 or quoted-printable) will be based on the 182 The type of encoding (base64 or quoted-printable) will be based on the 218 quoted-printable, ``Charset.BASE64`` for base64 encoding, 219 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
|
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
|
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``, 158 The type of encoding (base64 or quoted-printable) will be based on the 176 The type of encoding (base64 or quoted-printable) will be based on the 212 quoted-printable, ``Charset.BASE64`` for base64 encoding, 213 ``Charset.SHORTEST`` for the shortest of quoted-printable or base64 encoding,
|
/external/openssh/regress/ |
D | sftp-glob.sh | 60 sftp_ls "${DIR}/g-wild\"*\"" "quoted glob" "g-wild*" "g-wildx" 63 sftp_ls "\"${DIR}/g-quote\\\"\"" "quoted quote" "g-quote\"" "" 64 sftp_ls "'${DIR}/g-quote\"'" "single-quoted quote" "g-quote\"" "" 66 sftp_ls "'${DIR}/g-q space'" "quoted space" "g-q space" "" 68 sftp_ls "'${DIR}/g-sl\\\\ash'" "quoted slash" "g-sl\\ash" "" "$nobs" 70 sftp_ls "'${DIR}/g-slash\\\\'" "quoted slash at EOL" "g-slash\\" "" "$nobs" 72 sftp_ls "'${DIR}/g-qs\\\\\"'" "quoted slash+quote" "g-qs\\\"" "" "$nobs"
|
/external/golang-protobuf/proto/ |
D | text_parser_test.go | 89 // Empty quoted string 98 // Quoted string concatenation with double quotes 107 // Quoted string concatenation with single quotes 116 // Quoted string concatenations with mixed quotes 132 // Quoted string with escaped apostrophe 141 // Quoted string with single quote 150 // Quoted string with all the accepted special characters from the C++ test 159 // Quoted string with quoted backslash 168 // Quoted string with UTF-8 bytes. 177 // Quoted string with unicode escapes. [all …]
|
/external/apache-http/src/org/apache/http/message/ |
D | HeaderValueParser.java | 73 * value = ( token | quoted-string ) 77 * quoted-string = <"> *( text | quoted-char ) <"> 79 * quoted-char = "\" char 156 * in a quoted string to be used within 167 * A string of text is parsed as a single word if it is quoted using 171 * quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) 176 * quoting mechanism only within quoted-string and comment constructs. 179 * quoted-pair = "\" CHAR 188 * value = token | quoted-string
|
/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/python/cpython2/Lib/ |
D | mimify.py | 5 Decode quoted-printable parts of a mail message or encode using 6 quoted-printable. 25 MAXLEN = 200 # if lines longer than this, encode as quoted-printable 27 QUOTE = '> ' # string replies are quoted with 38 qp = re.compile('^content-transfer-encoding:\\s*quoted-printable', re.I) 95 """Decode a single line of quoted-printable text to 8bit.""" 123 """Convert a quoted-printable part of a MIME mail message to 8bit.""" 208 """Convert quoted-printable parts of a MIME mail message to 8bit.""" 229 """Code a single line as quoted-printable. 263 """Code a single header line as quoted-printable.""" [all …]
|
/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/desugar/java/com/google/devtools/common/options/ |
D | ShellQuotedParamsFilePreProcessor.java | 30 * format assumes each parameter is separated by whitespace and is quoted using singe quotes 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/apache-http/src/org/apache/http/ |
D | NameValuePair.java | 65 * characters. These special characters MUST be in a quoted string to be used within 76 * A string of text is parsed as a single word if it is quoted using double-quote marks. 79 * quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) 84 * within quoted-string and comment constructs. 87 * quoted-pair = "\" CHAR 96 * value = token | quoted-string
|
/external/python/setuptools/setuptools/tests/ |
D | test_install_scripts.py | 39 Ensure that shebang is not quoted on Unix when getting the Python exe 53 Ensure that shebang is quoted on Windows when getting the Python exe 67 Ensure that shebang on Unix is not quoted, even when a value with spaces 80 Ensure that shebang on Windows is quoted when getting a path with spaces 81 from --executable, that is itself properly quoted.
|
/external/clang/unittests/Lex/ |
D | PPCallbacksTest.cpp | 243 "#include \"quoted.h\"\n"; in TEST_F() 246 InclusionDirectiveFilenameRange(Source, "/quoted.h", false); in TEST_F() 248 ASSERT_EQ("\"quoted.h\"", GetSourceString(Range)); in TEST_F() 263 "#define MACRO_QUOTED \"quoted.h\"\n" in TEST_F() 267 InclusionDirectiveFilenameRange(Source, "/quoted.h", false); in TEST_F() 269 ASSERT_EQ("\"quoted.h\"", GetSourceString(Range)); in TEST_F() 286 "#include MACRO_STRINGIZED(quoted.h)\n"; in TEST_F() 289 InclusionDirectiveFilenameRange(Source, "/quoted.h", false); in TEST_F() 291 ASSERT_EQ("\"quoted.h\"", GetSourceString(Range)); in TEST_F()
|
/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 == '': 318 # the string $'b is then quoted as '$'"'"'b'
|