/external/llvm/test/YAMLParser/ |
spec-10-02.data | 5 quoted", 'single 6 quoted',
|
spec-02-18.data | 7 quoted: "So does this 8 quoted scalar.\n"
|
spec-06-06.data | 5 quoted: "text
|
spec-10-14.data | 4 "quoted key":
|
spec-05-12.data | 8 quoted: "Quoted "
|
spec-08-09.data | 6 quoted:
|
sloppy-indentation.data | 18 bar: 'quoted scalars
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
alias.c | 29 char quoted = 0; local 37 if (!quoted && isspace(c)) { 47 } else if (!quoted && (c == '\'' || c == '"')) { 48 quoted = c; 50 } else if (c == quoted) { 51 quoted = 0; 54 if (c == '\\' && quoted != '\'') { 70 if (quoted) {
|
/external/libcxx/test/input.output/iostream.format/quoted.manip/ |
quoted.pass.cpp | 12 // quoted 32 auto q = std::quoted(str); 43 ss << std::quoted(p); 45 ss >> std::quoted(s); 54 ss << std::quoted(p); 56 ss >> std::quoted(s); 63 ss << std::quoted(p, delim); 65 ss >> std::quoted(s, delim); 71 ss << std::quoted(p, '"', escape ); 73 ss >> std::quoted(s, '"', escape ) [all...] |
Android.mk | 17 test_makefile := external/libcxx/test/input.output/iostream.format/quoted.manip/Android.mk 19 test_name := input.output/iostream.format/quoted.manip/quoted 20 test_src := quoted.pass.cpp
|
quoted_char.fail.cpp | 12 // quoted 23 ss << std::quoted(p); 25 ss >> std::quoted(s);
|
quoted_traits.fail.cpp | 12 // quoted 29 ss << std::quoted(p); 31 ss >> std::quoted(s);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/quoted.manip/ |
quoted.pass.cpp | 12 // quoted 32 auto q = std::quoted(str); 43 ss << std::quoted(p); 45 ss >> std::quoted(s); 54 ss << std::quoted(p); 56 ss >> std::quoted(s); 63 ss << std::quoted(p, delim); 65 ss >> std::quoted(s, delim); 71 ss << std::quoted(p, '"', escape ); 73 ss >> std::quoted(s, '"', escape ) [all...] |
quoted_char.fail.cpp | 12 // quoted 23 ss << std::quoted(p); 25 ss >> std::quoted(s);
|
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 31 * Codec for the Quoted-Printable section of <a href="http://www.ietf.org/rfc/rfc1521.txt">RFC 1521 </a>. 34 * The Quoted-Printable encoding is intended to represent data that largely consists of octets that correspond to 37 * data remains largely 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 quoted-printable spec 49 * for those applications that do not require quoted-printable line formatting (rules #3, #4, #5), for instance Q codec. 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 are escaped. 131 * This function implements a subset of quoted-printable encoding specification (rule #1 and rule #2) as defined in 136 * bitset of characters deemed quoted-printabl [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/ |
main_unittest.py | 14 """triple-quoted docstring""" 17 long_list = ['this is a list of strings that should be wrapped', "and consistently quoted"] 18 longer_list = ['this is a list of strings that should be wrapped', "and consistently quoted", "because it's important to test quoting"] 26 """triple-quoted docstring""" 29 long_list = ['this is a list of strings that should be wrapped', 'and consistently quoted'] 32 'and consistently quoted', 41 """triple-quoted docstring""" 46 'and consistently quoted'] 49 'and consistently quoted', 57 """triple-quoted docstring"" [all...] |
fix_double_quote_strings.py | 9 literals will also not be modified. This affects both single-quoted strings 10 and triple-single-quoted strings.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
X500NameTokenizer.java | 44 boolean quoted = false; 57 quoted = !quoted; 64 if (escaped || quoted)
|
/frameworks/opt/vcard/tests/res/raw/ |
v21_invalid_comment_line.vcf | 7 NOTE;ENCODING=QUOTED-PRINTABLE:This is an (sharp ->=
|
v21_japanese_2.vcf | 6 ADR;HOME;CHARSET=SHIFT_JIS;ENCODING=QUOTED-PRINTABLE:;=93=8C=8B=9E=93=73=
9 NOTE;CHARSET=SHIFT_JIS;ENCODING=QUOTED-PRINTABLE:=83=81=83=82
|
/packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/ |
QuotedHtmlSanitizerTest.java | 8 * the visibility of quoted text. 21 * For Gmail, <div class="gmail_quote"> indicates the block of quoted text. 28 * For Yahoo, <div class="yahoo_quoted"> indicates the block of quoted text. 35 * For AOL, <div id="AOLMsgPart_RANDOM_GUID"> indicates the block of quoted text.
|
/external/chromium_org/net/websockets/ |
websocket_extension_parser_test.cc | 87 "\"foo\"", // quoted extension name 88 "foo; \"bar\"", // quoted parameter name 89 "foo; bar=\"\a2\"", // control in quoted parameter value 90 "foo; bar=\"b@z\"", // separator in quoted parameter value 91 "foo; bar=\"b\\\\z\"", // separator in quoted parameter value 92 "foo; bar=\"\"", // quoted empty parameter value 93 "foo; bar=\"baz", // unterminated quoted string 94 "foo; bar=\"baz \"", // space in quoted string
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameTokenizer.java | 45 boolean quoted = false; 58 quoted = !quoted; 65 if (escaped || quoted)
|
/external/chromium_org/third_party/WebKit/Source/build/ |
gn_list_to_space_separated_string.py | 8 # quoted and separated by a space.
|
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/ |
QuotedPrintable.java | 26 * Decodes an array quoted-printable characters into an array of original bytes. 31 * quoted-printable encoding specification (rule #1 and rule #2) 35 * @param bytes array of quoted-printable characters 37 * null if quoted-printable decoding is unsuccessful.
|