/prebuilts/go/linux-x86/src/net/http/ |
fs_test.go | 472 get("0", []string{"text/plain; charset=utf-8"}) 488 want := "text/css; charset=utf-8" 777 wantContentType: "text/css; charset=utf-8", 782 wantContentType: "text/html; charset=utf-8", 829 wantContentType: "text/css; charset=utf-8", 838 wantContentType: "text/css; charset=utf-8", 849 wantContentType: "text/css; charset=utf-8", 860 wantContentType: "text/css; charset=utf-8", 869 wantContentType: "text/plain; charset=utf-8", 882 wantContentType: "text/css; charset=utf-8" [all...] |
triv.go | 69 w.Header().Set("Content-Type", "text/plain; charset=utf-8") 106 rw.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
example_test.go | 103 w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header
|
readrequest_test.go | 40 "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" + 60 "Accept-Charset": {"ISO-8859-1,utf-8;q=0.7,*;q=0.7"},
|
/frameworks/minikin/tests/util/ |
UnicodeUtils.cpp | 17 #include <unicode/utf.h> 65 // UTF-16 encoding
|
/prebuilts/go/darwin-x86/src/net/http/ |
triv.go | 69 w.Header().Set("Content-Type", "text/plain; charset=utf-8") 106 rw.Header().Set("Content-Type", "text/plain; charset=utf-8")
|
example_test.go | 103 w.Header().Set("Content-Type", "text/plain; charset=utf-8") // normal header
|
readrequest_test.go | 40 "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" + 60 "Accept-Charset": {"ISO-8859-1,utf-8;q=0.7,*;q=0.7"},
|
/external/pcre/dist2/src/ |
pcre2_match.c | 127 UTF-8 mode, the number of subject bytes matched may be different to the number 128 of reference bytes. (In theory this could also happen in UTF-16 mode, but it 149 BOOL utf = (mb->poptions & PCRE2_UTF) != 0; local 169 /* Separate the caseless and UTF cases for speed. */ 177 if (utf) 180 code units matched may differ, because in UTF-8 there are some characters 182 For example, U+023A (2 bytes in UTF-8) is the upper case version of U+2C65 183 (3 bytes in UTF-8); a sequence of 3 of the former uses 6 bytes, as does a 211 /* Not in UTF mode */ 229 are in UTF mode. * 589 register BOOL utf; \/* Local copy of UTF flag for speed *\/ local 6459 BOOL utf; local [all...] |
pcre2_pattern_info.c | 258 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; local 342 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
|
pcre2_jit_test.c | 57 \xed\xa0\x80 = 55296 = 0xd800 (Invalid UTF character) 58 \xed\xb0\x80 = 56320 = 0xdc00 (Invalid UTF character) 92 \xf4\x8f\xbf\xbf = 0x10ffff = 1114111 (highest allowed utf character) 1107 int utf = 0; local [all...] |
pcre2_jit_compile.c | 454 BOOL utf; member in struct:compiler_common 767 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); 789 if (common->utf) return NULL; 5487 BOOL utf = common->utf; local [all...] |
/external/pcre/dist2/ |
perltest.sh | 5 # the start when running UTF-8 tests, but *not* for non-utf8 tests. (The 39 # utf invoke UTF-8 functionality 146 # Detect utf 148 $utf8 = $mod =~ s/utf,?//; 278 # It seems that $REGMARK is not marked as UTF-8 even when use utf8 is 279 # set and the input pattern was a UTF-8 string. We can, however, force
|
/prebuilts/go/darwin-x86/src/net/http/httptest/ |
recorder_test.go | 143 hasHeader("Content-Type", "text/plain; charset=utf-8"), 159 check(hasHeader("Content-Type", "text/html; charset=utf-8")), 186 check(hasHeader("Content-Type", "text/html; charset=utf-8")), 214 hasHeader("Content-Type", "text/html; charset=utf-8"),
|
/prebuilts/go/linux-x86/src/net/http/httptest/ |
recorder_test.go | 143 hasHeader("Content-Type", "text/plain; charset=utf-8"), 159 check(hasHeader("Content-Type", "text/html; charset=utf-8")), 186 check(hasHeader("Content-Type", "text/html; charset=utf-8")), 214 hasHeader("Content-Type", "text/html; charset=utf-8"),
|
/art/runtime/mirror/ |
string.cc | 29 #include "utf-inl.h" 193 String* String::AllocFromModifiedUtf8(Thread* self, const char* utf) { 194 DCHECK(utf != nullptr); 195 size_t byte_count = strlen(utf); 196 size_t char_count = CountModifiedUtf8Chars(utf, byte_count); 197 return AllocFromModifiedUtf8(self, char_count, utf, byte_count); 313 // Create a modified UTF-8 encoded std::string from a java/lang/String object.
|
/development/testrunner/ |
create_test.py | 37 TEST_MANIFEST_TEMPLATE = """<?xml version="1.0" encoding="utf-8"?>
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
xml_test.go | 18 <?xml version="1.0" encoding="UTF-8"?> 38 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)}, 75 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)}, 657 {`version="1.0" encoding="utf-8"`, [2]string{"1.0", "utf-8"}}, 658 {`version="1.0" encoding='utf-8'`, [2]string{"1.0", "utf-8"}}, 659 {`version="1.0" encoding='utf-8' `, [2]string{"1.0", "utf-8"}}, 660 {`version="1.0" encoding=utf-8`, [2]string{"1.0", ""}} [all...] |
/prebuilts/go/linux-x86/src/encoding/xml/ |
xml_test.go | 18 <?xml version="1.0" encoding="UTF-8"?> 38 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)}, 75 ProcInst{"xml", []byte(`version="1.0" encoding="UTF-8"`)}, 657 {`version="1.0" encoding="utf-8"`, [2]string{"1.0", "utf-8"}}, 658 {`version="1.0" encoding='utf-8'`, [2]string{"1.0", "utf-8"}}, 659 {`version="1.0" encoding='utf-8' `, [2]string{"1.0", "utf-8"}}, 660 {`version="1.0" encoding=utf-8`, [2]string{"1.0", ""}} [all...] |
/external/libxml2/ |
xmlschemastypes.c | 5010 const xmlChar *utf; local [all...] |
/libcore/ojluni/src/main/resources/sun/nio/cs/ |
standard-charsets | 62 charset UTF-8 UTF_8 64 alias unicode-1-1-utf-8 66 charset UTF-16 UTF_16 72 charset UTF-16BE UTF_16BE 75 alias X-UTF-16BE 78 charset UTF-16LE UTF_16LE 80 alias X-UTF-16LE 83 charset x-UTF-16LE-BOM UTF_16LE_BOM 86 charset UTF-32 UTF_32 90 charset UTF-32LE UTF_32L [all...] |
/prebuilts/go/darwin-x86/src/net/http/httputil/ |
example_test.go | 93 // "HTTP/1.1 200 OK\r\nContent-Length: 76\r\nContent-Type: text/plain; charset=utf-8\r\nDate: Wed, 19 Jul 1972 19:00:00 GMT\r\n\r\nGo is a general-purpose language designed with systems programming in mind.\n"
|
/prebuilts/go/linux-x86/src/net/http/httputil/ |
example_test.go | 93 // "HTTP/1.1 200 OK\r\nContent-Length: 76\r\nContent-Type: text/plain; charset=utf-8\r\nDate: Wed, 19 Jul 1972 19:00:00 GMT\r\n\r\nGo is a general-purpose language designed with systems programming in mind.\n"
|
/development/tools/privapp_permissions/ |
privapp_permissions.py | 76 <?xml version="1.0" encoding="utf-8"?>
|
/external/pcre/pcrecpp/include/ |
pcrecpp.h | 144 // UTF-8 AND THE MATCHING INTERFACE: 148 // and string to be treated as UTF-8 text, still a byte stream but 150 // is likelier to be UTF-8 than the pattern, but the match returned 454 bool utf() const { function in class:pcrecpp::RE_Options 486 static inline RE_Options UTF() {
|