Searched defs:UTF8 (Results 1 - 25 of 63) sorted by relevance

123

/external/apache-http/src/org/apache/commons/codec/net/
H A DStringEncodings.java56 String UTF8 = "UTF-8"; field in interface:StringEncodings
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dprogress_callback.py21 from gslib.util import UTF8 namespace
117 return format_str.format(base_announce_text.encode(UTF8))
H A Dls_helper.py23 from gslib.util import UTF8 namespace
40 print '%s:' % bucket_listing_ref.url_string.encode(UTF8)
60 print bucket_listing_ref.url_string.encode(UTF8)
83 print bucket_listing_ref.url_string.encode(UTF8)
H A Dtracker_file.py28 from gslib.util import UTF8 namespace
69 filename = filename.encode(UTF8)
71 filename = unicode(filename, UTF8).encode(UTF8)
H A Dwildcard_iterator.py38 from gslib.util import UTF8 namespace
532 # UTF8-encode directory before passing it to os.walk() so if there are
533 # non-valid UTF8 chars in the file name (e.g., that can happen if the file
537 for dirpath, unused_dirnames, filenames in os.walk(directory.encode(UTF8)):
540 yield os.path.join(dirpath, f).decode(UTF8)
H A Dcommand_runner.py53 from gslib.util import UTF8 namespace
79 decoded = arg if isinstance(arg, unicode) else arg.decode(UTF8)
/external/regex-re2/re2/testing/
H A Dexhaustive3_test.cc28 // Returns UTF8 for Rune r
29 static string UTF8(Rune r) { function in namespace:re2
35 // Returns a vector of "interesting" UTF8 characters.
48 v.push_back(UTF8(i));
53 v.push_back(UTF8(256 + j));
56 v.push_back(UTF8(i + j));
60 v.push_back(UTF8(Runemax + j));
/external/v8/tools/
H A Dshell-utils.h39 UTF8, enumerator in enum:v8::internal::Encoding
/external/google-breakpad/src/common/
H A Dconvert_UTF.h111 typedef unsigned char UTF8; /* typically 8 bits */ typedef
138 ConversionResult ConvertUTF8toUTF16 (const UTF8** sourceStart, const UTF8* sourceEnd,
142 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
144 ConversionResult ConvertUTF8toUTF32 (const UTF8** sourceStart, const UTF8* sourceEnd,
148 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
156 Boolean isLegalUTF8Sequence(const UTF8 *sourc
[all...]
/external/smali/util/src/test/java/org/jf/util/
H A DClassFileNameHandlerTest.java43 private final Charset UTF8 = Charset.forName("UTF-8"); field in class:ClassFileNameHandlerTest
53 Assert.assertEquals(95, result.getBytes(UTF8).length);
66 Assert.assertEquals(200, sb.toString().getBytes(UTF8).length);
67 Assert.assertEquals(195, result.getBytes(UTF8).length);
72 Assert.assertEquals(200, sb.toString().getBytes(UTF8).length);
73 Assert.assertEquals(195, result.getBytes(UTF8).length);
86 Assert.assertEquals(300, sb.toString().getBytes(UTF8).length);
87 Assert.assertEquals(292, result.getBytes(UTF8).length);
92 Assert.assertEquals(300, sb.toString().getBytes(UTF8).length);
93 Assert.assertEquals(292, result.getBytes(UTF8)
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
H A DUnicodeReader.java54 private static final Charset UTF8 = Charset.forName("UTF-8"); field in class:UnicodeReader
93 encoding = UTF8;
103 encoding = UTF8;
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3convertutf.h98 // typedef unsigned char UTF8; /* typically 8 bits */
108 typedef ANTLR3_UINT8 UTF8; /* typically 8 bits */ typedef
145 const UTF8** sourceStart, const UTF8* sourceEnd,
150 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
153 const UTF8** sourceStart, const UTF8* sourceEnd,
158 UTF8** targetStart, UTF8* targetEn
[all...]
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
H A Dtest_setmeta.py24 from gslib.util import UTF8 namespace
130 unicode_header_bytes = unicode_header.encode(UTF8)
141 unicode_header_bytes = unicode_header.encode(UTF8)
147 stdout = stdout.decode(UTF8)
178 unicode_header_bytes = unicode_header.encode(UTF8)
H A Dtest_ls.py32 from gslib.util import UTF8 namespace
349 object_name_bytes = object_name.encode(UTF8)
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/testcase/
H A Dbase.py28 from gslib.util import UTF8 namespace
75 return self._testMethodName.encode(UTF8)
H A Dintegration_testcase.py49 from gslib.util import UTF8 namespace
222 'gs://%s' % json_bucket.name.encode(UTF8).lower(),
/external/llvm/include/llvm/Support/
H A DConvertUTF.h103 typedef unsigned char UTF8; /* typically 8 bits */ typedef
136 const UTF8** sourceStart, const UTF8* sourceEnd,
140 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
144 const UTF8** sourceStart, const UTF8* sourceEnd,
148 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
152 const UTF8** sourceStart, const UTF8* sourceEnd,
157 UTF8** targetStar
[all...]
/external/vogar/src/vogar/monitor/
H A DHostMonitor.java39 private static final Charset UTF8 = Charset.forName("UTF-8"); field in class:HostMonitor
96 return followProcess(new InterleavedReader(marker, new InputStreamReader(in, UTF8)));
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
H A Ddu.py32 from gslib.util import UTF8 namespace
176 'url': url_str.encode(UTF8),
H A Dls.py35 from gslib.util import UTF8 namespace
331 r'\1T\2Z', str(obj.updated).decode(UTF8).encode('ascii'))
337 encoded_metagen = str(obj.metageneration).encode(UTF8)
340 encoded_etag = obj.etag.encode(UTF8)
344 'url': url_str.encode(UTF8),
389 print '%s:' % blr.url_string.encode(UTF8)
431 print '%-33s%s' % ('', blr.url_string.encode(UTF8))
H A Dsignurl.py43 from gslib.util import UTF8 namespace
306 urllib.quote(url.object_name.encode(UTF8)))
314 print '{0}\t{1}\t{2}\t{3}'.format(url.url_string.encode(UTF8), method,
317 final_url.encode(UTF8))
/external/icu/icu4c/source/common/
H A Dunisetspan.h41 UTF8 = 4, enumerator in enum:UnicodeSetStringSpan::__anon6591
49 FWD_UTF8_CONTAINED = FWD | UTF8 | CONTAINED,
50 FWD_UTF8_NOT_CONTAINED = FWD | UTF8 | NOT_CONTAINED,
53 BACK_UTF8_CONTAINED = BACK | UTF8 | CONTAINED,
54 BACK_UTF8_NOT_CONTAINED = BACK | UTF8 | NOT_CONTAINED
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DUConverterSharedData.java390 static final int UTF8 = 4; field in class:UConverterSharedData.UConverterType
/external/pcre/dist/
H A Dpcrecpp.h147 // The UTF8 flag, passed to the constructor, causes both pattern
151 // may depend on the UTF8 flag, so always use it when matching
152 // UTF8 text. E.g., "." will match one byte normally but with UTF8
161 // Example: using the convenience function UTF8():
162 // pcrecpp::RE re(utf8_pattern, pcrecpp::UTF8());
165 // NOTE: The UTF8 option is ignored if pcre was not configured with the
186 // PCRE_UTF8 handles UTF8 chars built-in
240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
465 static inline RE_Options UTF8() { function in namespace:pcrecpp
[all...]
/external/pcre/
H A Dpcrecpp.h147 // The UTF8 flag, passed to the constructor, causes both pattern
151 // may depend on the UTF8 flag, so always use it when matching
152 // UTF8 text. E.g., "." will match one byte normally but with UTF8
161 // Example: using the convenience function UTF8():
162 // pcrecpp::RE re(utf8_pattern, pcrecpp::UTF8());
165 // NOTE: The UTF8 option is ignored if pcre was not configured with the
186 // PCRE_UTF8 handles UTF8 chars built-in
240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED()
465 static inline RE_Options UTF8() { function in namespace:pcrecpp
[all...]

Completed in 650 milliseconds

123