| /external/starlark-go/syntax/ |
| D | quote.go | 7 // Starlark quoted string utilities. 45 // unquote unquotes the quoted string, returning the actual 46 // string value, whether the original was triple-quoted, 48 func unquote(quoted string) (s string, triple, isByte bool, err error) { 51 if strings.HasPrefix(quoted, "r") { 53 quoted = quoted[1:] 56 if strings.HasPrefix(quoted, "b") { 58 quoted = quoted[1:] 61 if len(quoted) < 2 { 66 if quoted[0] != '"' && quoted[0] != '\'' || quoted[0] != quoted[len(quoted)-1] { [all …]
|
| /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/sdv/vsomeip/third_party/boost/io/test/ |
| D | quoted_test.cpp | 10 #include <boost/io/quoted.hpp> 21 ss << boost::io::quoted(s0); in main() 27 ss << boost::io::quoted(s0); in main() 28 ss >> boost::io::quoted(r); in main() 34 ss << boost::io::quoted(s0s); in main() 40 ss << boost::io::quoted(s0s); in main() 41 ss >> boost::io::quoted(r); in main() 47 ss << boost::io::quoted(s1); in main() 53 ss << boost::io::quoted("foo\\bar, \" *"); in main() 59 ss << boost::io::quoted(s1); in main() [all …]
|
| D | quoted_fill_test.cpp | 8 #include <boost/io/quoted.hpp> 20 os << boost::io::quoted("xy"); in main() 30 os << boost::io::quoted(L"xy"); in main() 40 os << boost::io::quoted("xy"); in main() 50 os << boost::io::quoted(L"xy"); in main() 60 os << boost::io::quoted("xy"); in main() 70 os << boost::io::quoted(L"xy"); in main() 80 os << boost::io::quoted("xy"); in main() 90 os << boost::io::quoted(L"xy"); in main() 100 os << boost::io::quoted("xy"); in main() [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/cronet/stable/third_party/libc++/src/test/std/strings/string.view/string.view.nonmem/ |
| D | quoted.pass.cpp | 15 // quoted 35 ss << std::quoted(sv); in round_trip() 37 ss >> std::quoted(s); in round_trip() 48 ss << std::quoted(sv); in round_trip_ws() 50 ss >> std::quoted(s); in round_trip_ws() 59 ss << std::quoted(sv, delim); in round_trip_d() 61 ss >> std::quoted(s, delim); in round_trip_d() 69 ss << std::quoted(sv, '"', escape); in round_trip_e() 71 ss >> std::quoted(s, '"', escape); in round_trip_e() 77 ss << std::quoted(p, delim, escape); in quote() [all …]
|
| /external/cronet/tot/third_party/libc++/src/test/std/strings/string.view/string.view.nonmem/ |
| D | quoted.pass.cpp | 15 // quoted 35 ss << std::quoted(sv); in round_trip() 37 ss >> std::quoted(s); in round_trip() 48 ss << std::quoted(sv); in round_trip_ws() 50 ss >> std::quoted(s); in round_trip_ws() 59 ss << std::quoted(sv, delim); in round_trip_d() 61 ss >> std::quoted(s, delim); in round_trip_d() 69 ss << std::quoted(sv, '"', escape); in round_trip_e() 71 ss >> std::quoted(s, '"', escape); in round_trip_e() 77 ss << std::quoted(p, delim, escape); in quote() [all …]
|
| /external/sdv/vsomeip/third_party/boost/io/doc/ |
| D | quoted.adoc | 9 # Quoted Manipulators, <boost/io/quoted.hpp> 33 The Boost quoted stream I/O manipulator places delimiters, defaulted to the 43 ss << quoted(original); 44 ss >> quoted(roundtrip); 46 std::cout << quoted(original); // outputs: "fooled you" 56 std::cout << quoted("'Jack & Jill'", '&', '\''); // outputs: '&'Jack && Jill&'' 68 quoted(const std::basic_string<Char, Traits, Alloc>& string, 73 quoted(const Char* string, Char escape='\\', Char delim='\"'); 77 quoted(std::basic_string<Char, Traits, Alloc>& string, 101 corresponding arguments of the call to the `quoted` function that constructed [all …]
|
| /external/armnn/src/armnn/ |
| D | ProfilingDetails.hpp | 48 m_ProfilingDetails << std::quoted("Name") << ": " << std::quoted(workloadName); in AddDetailsToString() 52 m_ProfilingDetails << std::quoted("GUID") << ": " << std::quoted(std::to_string(guid)); in AddDetailsToString() 91 m_ProfilingDetails << std::quoted("Convolution Method") << ": " in AddDetailsToString() 92 << std::quoted(infos.m_ConvolutionMethod.value()); in AddDetailsToString() 100 m_ProfilingDetails << std::quoted(name) << " : " << std::quoted(value); in AddDetailsToString() 138 m_ProfilingDetails << std::quoted(ioString + " " + std::to_string(i)) << ": "; in PrintInfos() 144 m_ProfilingDetails << std::quoted("Shape") << ": \"["; in PrintInfos() 157 m_ProfilingDetails << std::quoted("DataType") << ": " in PrintInfos() 158 << std::quoted(GetDataTypeName(infos[i].GetDataType())); in PrintInfos() 165 m_ProfilingDetails << std::quoted("Num Dims") << ": " in PrintInfos() [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 …]
|
| /external/cronet/tot/third_party/libc++/src/test/std/input.output/iostream.format/quoted.manip/ |
| D | quoted.pass.cpp | 13 // quoted 30 auto q = std::quoted(str); in both_ways() 44 ss << std::quoted(p); in round_trip() 46 ss >> std::quoted(s); in round_trip() 58 ss << std::quoted(p); in round_trip_ws() 60 ss >> std::quoted(s); in round_trip_ws() 70 ss << std::quoted(p, d); in round_trip_d() 72 ss >> std::quoted(s, d); in round_trip_d() 81 ss << std::quoted(p, CharT('"'), e ); in round_trip_e() 83 ss >> std::quoted(s, CharT('"'), e ); in round_trip_e() [all …]
|
| D | quoted_traits.compile.pass.cpp | 13 // std::quoted 14 // Verify that the result type of std::quoted can be streamed to 56 using Q = decltype(std::quoted("hello")); in test_string_literal() 63 using WQ = decltype(std::quoted(L"hello")); in test_string_literal() 78 using Q = decltype(std::quoted(s)); in test_std_string() 79 using CQ = decltype(std::quoted(cs)); in test_std_string() 91 using QT = decltype(std::quoted(st)); in test_std_string() 92 using CQT = decltype(std::quoted(cst)); in test_std_string() 105 using WQ = decltype(std::quoted(ws)); in test_std_string() 106 using CWQ = decltype(std::quoted(cws)); in test_std_string() [all …]
|
| /external/cronet/stable/third_party/libc++/src/test/std/input.output/iostream.format/quoted.manip/ |
| D | quoted.pass.cpp | 13 // quoted 30 auto q = std::quoted(str); in both_ways() 44 ss << std::quoted(p); in round_trip() 46 ss >> std::quoted(s); in round_trip() 58 ss << std::quoted(p); in round_trip_ws() 60 ss >> std::quoted(s); in round_trip_ws() 70 ss << std::quoted(p, d); in round_trip_d() 72 ss >> std::quoted(s, d); in round_trip_d() 81 ss << std::quoted(p, CharT('"'), e ); in round_trip_e() 83 ss >> std::quoted(s, CharT('"'), e ); in round_trip_e() [all …]
|
| D | quoted_traits.compile.pass.cpp | 13 // std::quoted 14 // Verify that the result type of std::quoted can be streamed to 56 using Q = decltype(std::quoted("hello")); in test_string_literal() 63 using WQ = decltype(std::quoted(L"hello")); in test_string_literal() 78 using Q = decltype(std::quoted(s)); in test_std_string() 79 using CQ = decltype(std::quoted(cs)); in test_std_string() 91 using QT = decltype(std::quoted(st)); in test_std_string() 92 using CQT = decltype(std::quoted(cst)); in test_std_string() 105 using WQ = decltype(std::quoted(ws)); in test_std_string() 106 using CWQ = decltype(std::quoted(cws)); in test_std_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/tpm2-tss/src/tss2-esys/api/ |
| D | Esys_Quote.c | 38 * @param[out] quoted The quoted information. 40 * @param[out] signature The signature over quoted . 75 TPM2B_ATTEST **quoted, in Esys_Quote() argument 95 r = Esys_Quote_Finish(esysContext, quoted, signature); in Esys_Quote() 226 * @param[out] quoted The quoted information. 228 * @param[out] signature The signature over quoted . 252 TPM2B_ATTEST **quoted, in Esys_Quote_Finish() argument 256 LOG_TRACE("context=%p, quoted=%p, signature=%p", in Esys_Quote_Finish() 257 esysContext, quoted, signature); in Esys_Quote_Finish() 273 if (quoted != NULL) { in Esys_Quote_Finish() [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/jackson-core/src/test/java/com/fasterxml/jackson/core/util/ |
| D | TestSerializedString.java | 20 final String QUOTED = "\\\"quo\\\\ted\\\""; in testAppending() local 25 assertEquals(QUOTED, new String(sstr.asQuotedChars())); in testAppending() 28 assertEquals(QUOTED.length(), sstr.writeQuotedUTF8(bytes)); in testAppending() 29 assertEquals(QUOTED, bytes.toString("UTF-8")); in testAppending() 35 assertEquals(QUOTED.length(), sstr.appendQuotedUTF8(buffer, 3)); in testAppending() 36 assertEquals(QUOTED, new String(buffer, 3, QUOTED.length())); in testAppending()
|
| /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/openthread/third_party/mbedtls/repo/programs/test/ |
| D | udp_proxy_wrapper.sh | 43 tail="$1" quoted="" 46 *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";; 47 *) quoted="${quoted}${tail}"; tail=; false;; 50 tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'" 53 unset tail quoted
|
| /external/ms-tpm-20-ref/TPMCmd/tpm/src/command/Attestation/ |
| D | Quote.c | 57 TPMS_ATTEST quoted; in TPM2_Quote() local 70 FillInAttestInfo(in->signHandle, &in->inScheme, &in->qualifyingData, "ed); in TPM2_Quote() 74 quoted.type = TPM_ST_ATTEST_QUOTE; in TPM2_Quote() 86 "ed.attested.quote.pcrDigest); in TPM2_Quote() 90 quoted.attested.quote.pcrSelect = in->PCRselect; in TPM2_Quote() 94 return SignAttestInfo(signObject, &in->inScheme, "ed, &in->qualifyingData, in TPM2_Quote() 95 &out->quoted, &out->signature); in TPM2_Quote()
|
| /external/mbedtls/programs/test/ |
| D | udp_proxy_wrapper.sh | 43 tail="$1" quoted="" 46 *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";; 47 *) quoted="${quoted}${tail}"; tail=; false;; 50 tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'" 53 unset tail quoted
|
| /external/cronet/tot/net/websockets/ |
| D | websocket_extension_parser_test.cc | 126 "\"foo\"", // quoted extension name in TEST() 127 "foo; \"bar\"", // quoted parameter name in TEST() 128 "foo; bar=\"\a2\"", // control in quoted parameter value in TEST() 129 "foo; bar=\"b@z\"", // separator in quoted parameter value in TEST() 130 "foo; bar=\"b\\\\z\"", // separator in quoted parameter value in TEST() 131 "foo; bar=\"\"", // quoted empty parameter value in TEST() 132 "foo; bar=\"baz", // unterminated quoted string in TEST() 133 "foo; bar=\"baz \"", // space in quoted string in TEST() 141 "foo; bar=\"b\xFF\"" // 8-bit character in quoted parameter value in TEST()
|
| /external/cronet/stable/net/websockets/ |
| D | websocket_extension_parser_test.cc | 126 "\"foo\"", // quoted extension name in TEST() 127 "foo; \"bar\"", // quoted parameter name in TEST() 128 "foo; bar=\"\a2\"", // control in quoted parameter value in TEST() 129 "foo; bar=\"b@z\"", // separator in quoted parameter value in TEST() 130 "foo; bar=\"b\\\\z\"", // separator in quoted parameter value in TEST() 131 "foo; bar=\"\"", // quoted empty parameter value in TEST() 132 "foo; bar=\"baz", // unterminated quoted string in TEST() 133 "foo; bar=\"baz \"", // space in quoted string in TEST() 141 "foo; bar=\"b\xFF\"" // 8-bit character in quoted parameter value in TEST()
|