HomeSort by relevance Sort by last modified time
    Searched refs:UTF (Results 76 - 100 of 307) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/mime/
mediatype_test.go 186 {`attachment; filename* =UTF-8''foo-%c3%a4.html`,
189 {`attachment; filename*=UTF-8''A-%2541.html`,
195 {`attachment; filename*0*=UTF-8''foo-%c3%a4; filename*1=".html"`,
209 {`attachment; filename="foo-ae.html"; filename*=UTF-8''foo-%c3%a4.html`,
212 {`attachment; filename*=UTF-8''foo-%c3%a4.html; filename="foo-ae.html"`,
216 // Browsers also just send UTF-8 directly without RFC 2231,
217 // at least when the source page is served with UTF-8.
  /external/libmojo/base/android/java/src/org/chromium/base/
CommandLine.java 261 reader = new InputStreamReader(new FileInputStream(f), "UTF-8");
  /external/llvm/utils/
clang-parse-diagnostics-file 54 <?xml version="1.0" encoding="UTF-8"?>
  /prebuilts/go/darwin-x86/src/html/template/
url.go 53 // The byte loop below assumes that all URLs use UTF-8 as the
58 // Content-type: text/html;charset=UTF-8.
  /prebuilts/go/darwin-x86/src/runtime/
utf8.go 14 // Code points in the surrogate range are not valid for UTF-8.
93 // encoderune writes into p (which must be large enough) the UTF-8 encoding of the rune.
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 455 testError(t, "\x80", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
456 testError(t, "\xff", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
459 testError(t, "ab\x80", "<input>:1:3", "illegal UTF-8 encoding", Ident)
460 testError(t, "abc\xff", "<input>:1:4", "illegal UTF-8 encoding", Ident)
463 testError(t, `"ab`+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String)
464 testError(t, `"abc`+"\xff", "<input>:1:5", "illegal UTF-8 encoding", String)
467 testError(t, "`ab"+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String)
468 testError(t, "`abc"+"\xff", "<input>:1:5", "illegal UTF-8 encoding", String)
  /prebuilts/go/linux-x86/src/html/template/
url.go 53 // The byte loop below assumes that all URLs use UTF-8 as the
58 // Content-type: text/html;charset=UTF-8.
  /prebuilts/go/linux-x86/src/runtime/
utf8.go 14 // Code points in the surrogate range are not valid for UTF-8.
93 // encoderune writes into p (which must be large enough) the UTF-8 encoding of the rune.
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 455 testError(t, "\x80", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
456 testError(t, "\xff", "<input>:1:1", "illegal UTF-8 encoding", utf8.RuneError)
459 testError(t, "ab\x80", "<input>:1:3", "illegal UTF-8 encoding", Ident)
460 testError(t, "abc\xff", "<input>:1:4", "illegal UTF-8 encoding", Ident)
463 testError(t, `"ab`+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String)
464 testError(t, `"abc`+"\xff", "<input>:1:5", "illegal UTF-8 encoding", String)
467 testError(t, "`ab"+"\x80", "<input>:1:4", "illegal UTF-8 encoding", String)
468 testError(t, "`abc"+"\xff", "<input>:1:5", "illegal UTF-8 encoding", String)
  /external/pcre/dist2/
RunTest.bat 312 call :runsub 1 testout "Main non-UTF, non-UCP functionality (Compatible with Perl >= 5.10)" -q
331 call :runsub 4 testout "UTF-%bits% and Unicode property support - (Compatible with Perl >= 5.10)" -q
340 call :runsub 5 testout "API, internals, and non-Perl stuff for UTF-%bits% and UCP" -q
345 call :runsub 6 testout "DFA matching main non-UTF, non-UCP functionality" -q
353 call :runsub 7 testout "DFA matching with UTF-%bits% and Unicode property support" -q
425 call :runsub 14 testout "DFA specials for UTF and UCP support" -q
457 call :runsub 18 testout "POSIX interface, excluding UTF-8 and UCP" -q
473 call :runsub 19 testout "POSIX interface with UTF-8 and UCP" -q
485 call :runsub 21 testout "Backslash-C tests without UTF" -q
486 call :runsub 21 testout "Backslash-C tests without UTF (DFA)" -q -dfa
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
strings.go 5 // Package strings implements simple functions to manipulate UTF-8 encoded strings.
7 // For information about UTF-8 strings in Go, see https://blog.golang.org/strings.
15 // explode splits s into a slice of UTF-8 strings,
17 // Invalid UTF-8 sequences become correct encodings of U+FFFD.
149 // invalid UTF-8 byte sequence.
261 // If sep is empty, SplitN splits after each UTF-8 sequence.
270 // If sep is empty, SplitAfterN splits after each UTF-8 sequence.
281 // If sep is empty, Split splits after each UTF-8 sequence.
287 // If sep is empty, SplitAfter splits after each UTF-8 sequence.
687 // and after each UTF-8 sequence, yielding up to k+1 replacement
    [all...]
  /prebuilts/go/linux-x86/src/strings/
strings.go 5 // Package strings implements simple functions to manipulate UTF-8 encoded strings.
7 // For information about UTF-8 strings in Go, see https://blog.golang.org/strings.
15 // explode splits s into a slice of UTF-8 strings,
17 // Invalid UTF-8 sequences become correct encodings of U+FFFD.
149 // invalid UTF-8 byte sequence.
261 // If sep is empty, SplitN splits after each UTF-8 sequence.
270 // If sep is empty, SplitAfterN splits after each UTF-8 sequence.
281 // If sep is empty, Split splits after each UTF-8 sequence.
287 // If sep is empty, SplitAfter splits after each UTF-8 sequence.
687 // and after each UTF-8 sequence, yielding up to k+1 replacement
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
app_ui_test.py 20 <?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
29 <?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
  /external/libmojo/third_party/catapult/devil/devil/android/
app_ui_test.py 20 <?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
29 <?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
  /prebuilts/go/darwin-x86/test/
stringrange.go 62 fmt.Printf("surrogate UTF-8 does not error: %U\n", c)
  /prebuilts/go/linux-x86/test/
stringrange.go 62 fmt.Printf("surrogate UTF-8 does not error: %U\n", c)
  /prebuilts/go/darwin-x86/src/net/mail/
message_test.go 134 2: {string([]byte{0xed, 0xa0, 0x80}) + " <micro@example.net>", "invalid utf-8 in address"},
135 3: {"\"" + string([]byte{0xed, 0xa0, 0x80}) + "\" <half-surrogate@example.com>", "invalid utf-8 in quoted-string"},
136 4: {"\"\\" + string([]byte{0x80}) + "\" <escaped-invalid-unicode@example.net>", "invalid utf-8 in quoted-string"},
228 // RFC 2047 "Q"-encoded UTF-8 address.
230 `=?utf-8?q?J=C3=B6rg_Doe?= <joerg@example.com>`,
258 // Custom example of RFC 2047 "B"-encoded UTF-8 address.
260 `=?UTF-8?B?SsO2cmc=?= <joerg@example.com>`,
298 // RFC 6532 3.2.2, local address parts allow UTF-8
308 // RFC 6532 3.2.4, domains parts allow UTF-8
458 // Custom example of RFC 2047 "B"-encoded UTF-8 address
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
composition.go 104 // the UTF-8 characters in order. Only the rune array is maintained in sorted
108 byte [maxByteBufferSize]byte // UTF-8 buffer. Referenced by runeInfo.pos.
256 // in dcomp. dcomp must be a sequence of decomposed UTF-8-encoded runes.
306 // bytesAt returns the UTF-8 encoding of the rune at position n.
315 hangulBase = 0xAC00 // UTF-8(hangulBase) -> EA B0 80
320 hangulEnd = hangulBase + jamoLVTCount // UTF-8(0xD7A4) -> ED 9E A4
325 jamoLBase = 0x1100 // UTF-8(jamoLBase) -> E1 84 00
  /prebuilts/go/linux-x86/src/net/mail/
message_test.go 134 2: {string([]byte{0xed, 0xa0, 0x80}) + " <micro@example.net>", "invalid utf-8 in address"},
135 3: {"\"" + string([]byte{0xed, 0xa0, 0x80}) + "\" <half-surrogate@example.com>", "invalid utf-8 in quoted-string"},
136 4: {"\"\\" + string([]byte{0x80}) + "\" <escaped-invalid-unicode@example.net>", "invalid utf-8 in quoted-string"},
228 // RFC 2047 "Q"-encoded UTF-8 address.
230 `=?utf-8?q?J=C3=B6rg_Doe?= <joerg@example.com>`,
258 // Custom example of RFC 2047 "B"-encoded UTF-8 address.
260 `=?UTF-8?B?SsO2cmc=?= <joerg@example.com>`,
298 // RFC 6532 3.2.2, local address parts allow UTF-8
308 // RFC 6532 3.2.4, domains parts allow UTF-8
458 // Custom example of RFC 2047 "B"-encoded UTF-8 address
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
composition.go 104 // the UTF-8 characters in order. Only the rune array is maintained in sorted
108 byte [maxByteBufferSize]byte // UTF-8 buffer. Referenced by runeInfo.pos.
256 // in dcomp. dcomp must be a sequence of decomposed UTF-8-encoded runes.
306 // bytesAt returns the UTF-8 encoding of the rune at position n.
315 hangulBase = 0xAC00 // UTF-8(hangulBase) -> EA B0 80
320 hangulEnd = hangulBase + jamoLVTCount // UTF-8(0xD7A4) -> ED 9E A4
325 jamoLBase = 0x1100 // UTF-8(jamoLBase) -> E1 84 00
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/
tables.go 8 // lookup returns the trie value for the first UTF-8 encoding in s and
17 return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
18 case c0 < 0xE0: // 2-byte UTF-8
25 return 0, 1 // Illegal UTF-8: not a continuation byte.
28 case c0 < 0xF0: // 3-byte UTF-8
35 return 0, 1 // Illegal UTF-8: not a continuation byte.
41 return 0, 2 // Illegal UTF-8: not a continuation byte.
44 case c0 < 0xF8: // 4-byte UTF-8
51 return 0, 1 // Illegal UTF-8: not a continuation byte.
57 return 0, 2 // Illegal UTF-8: not a continuation byte
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/width/
tables.go 8 // lookup returns the trie value for the first UTF-8 encoding in s and
17 return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
18 case c0 < 0xE0: // 2-byte UTF-8
25 return 0, 1 // Illegal UTF-8: not a continuation byte.
28 case c0 < 0xF0: // 3-byte UTF-8
35 return 0, 1 // Illegal UTF-8: not a continuation byte.
41 return 0, 2 // Illegal UTF-8: not a continuation byte.
44 case c0 < 0xF8: // 4-byte UTF-8
51 return 0, 1 // Illegal UTF-8: not a continuation byte.
57 return 0, 2 // Illegal UTF-8: not a continuation byte
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_plistlib.py 11 TESTDATA = """<?xml version="1.0" encoding="UTF-8"?>
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 255 UTF8 UTF-8 0xFFFF
256 Unicode UNICODE,UTF-16 0xFFFF
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 56 EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>
82 <failure message="Failed&#x0A;XML output: &lt;?xml encoding=&quot;utf-8&quot;&gt;&lt;top&gt;&lt;![CDATA[cdata text]]&gt;&lt;/top&gt;" type=""><![CDATA[gtest_xml_output_unittest_.cc:*
84 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
111 EXPECTED_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?>

Completed in 1278 milliseconds

1 2 34 5 6 7 8 91011>>