| /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 <a179 …* 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 // quoted22 // 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/buildtools/third_party/libc++/trunk/test/std/strings/string.view/string.view.nonmem/ | 
| D | quoted.pass.cpp | 15 // quoted39     ss << std::quoted(sv);  in round_trip()
 41     ss >> std::quoted(s);  in round_trip()
 52     ss << std::quoted(sv);  in round_trip_ws()
 54     ss >> std::quoted(s);  in round_trip_ws()
 63     ss << std::quoted(sv, delim);  in round_trip_d()
 65     ss >> std::quoted(s, delim);  in round_trip_d()
 73     ss << std::quoted(sv, '"', escape );  in round_trip_e()
 75     ss >> std::quoted(s, '"', escape );  in round_trip_e()
 83     ss << std::quoted(p, delim, escape);  in quote()
 [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/libcxx/test/std/input.output/iostream.format/quoted.manip/ | 
| D | quoted.pass.cpp | 12 // quoted31     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/cronet/buildtools/third_party/libc++/trunk/test/std/input.output/iostream.format/quoted.manip/ | 
| D | quoted.pass.cpp | 13 // quoted30     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::quoted14 //   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/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 takes50      * 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/markdown/tests/extensions/ | 
| D | smarty.txt | 12 "'Quoted' words in a larger quote."  13 'Quoted "words" in a larger quote.'
 14 "quoted" text and **bold "quoted" text**
 15 'quoted' text and **bold 'quoted' text**
 
 | 
| D | smarty.html | 11 “‘Quoted’ words in a larger quote.”<br />12 ‘Quoted “words” in a larger quote.’<br />
 13 “quoted” text and <strong>bold “quoted” text</strong><br />
 14 ‘quoted’ text and <strong>bold ‘quoted’ text</strong><br />
 
 | 
| /external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/ | 
| D | TestSerializedString.java | 20         final String QUOTED = "\\\"quo\\\\ted\\\"";  in testAppending()  local25         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 data5    :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/python/cpython2/Doc/library/ | 
| D | quopri.rst | 1 :mod:`quopri` --- Encode and decode MIME quoted-printable data5    :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 used38    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,
 
 | 
| /external/ms-tpm-20-ref/TPMCmd/tpm/src/command/Attestation/ | 
| D | Quote.c | 57     TPMS_ATTEST              quoted;  in TPM2_Quote()  local70     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/cronet/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/mbedtls/programs/test/ | 
| D | udp_proxy_wrapper.sh | 55     tail="$1" quoted=""58             *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";;
 59             *) quoted="${quoted}${tail}"; tail=; false;;
 62     tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'"
 65 unset tail quoted
 
 | 
| /external/openthread/third_party/mbedtls/repo/programs/test/ | 
| D | udp_proxy_wrapper.sh | 55     tail="$1" quoted=""58             *\'*) quoted="${quoted}${tail%%\'*}'\\''" tail="${tail#*\'}";;
 59             *) quoted="${quoted}${tail}"; tail=; false;;
 62     tpxy_cmd_snippet="$tpxy_cmd_snippet '$quoted'"
 65 unset tail quoted
 
 | 
| /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()  local76             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()
 
 |