/external/libchrome/base/files/ |
file_path.h | 311 // Mac uses UTF8, and since ASCII is a subset of that, it works there as well. 375 static FilePath FromUTF8Unsafe(const std::string& utf8);
|
/external/libvterm/src/ |
vterm_internal.h | 135 int utf8:1; member in struct:VTerm::__anon16711
|
parser.c | 302 if(c == 0x07 || (c == 0x9c && !vt->mode.utf8)) { 309 if(c >= 0x80 && c < 0xa0 && !vt->mode.utf8) {
|
state.c | 8 #include "utf8.h" 215 state->vt->mode.utf8 ? &state->encoding_utf8 : 455 char utf8[18]; size_t len = 0; local 460 len += fill_utf8((code | modifiers) + 0x20, utf8 + len); 461 len += fill_utf8(col + 0x21, utf8 + len); 462 len += fill_utf8(row + 0x21, utf8 + len); 463 utf8[len] = 0; 465 vterm_push_output_sprintf_ctrl(state->vt, C1_CSI, "M%s", utf8); [all...] |
/external/nist-pkits/ |
extract-pkits-tests.pl | 37 utf8::encode($delimiter);
|
/frameworks/base/tools/aapt/ |
StringPool.h | 83 * If 'utf8' is true, strings will be encoded with UTF-8 instead of 86 explicit StringPool(bool utf8 = false);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_multibytecodec_support.py | 38 for native, utf8 in zip(*[StringIO(f).readlines() 41 self.assertEqual(u, utf8.decode('utf-8')) 372 with open(os.path.join(dir, name + '-utf8.txt'), 'rb') as f: 373 utf8 = f.read() 374 return encoded, utf8
|
/system/core/base/ |
file.cpp | 27 #include "android-base/utf8.h" 36 using namespace android::base::utf8;
|
/external/chromium-trace/catapult/catapult_build/ |
node_bootstrap.js | 26 var contents = fs.readFileSync(fileName, 'utf8');
|
/frameworks/base/tools/aapt2/util/ |
Util.h | 206 * Converts a UTF8 string to a UTF16 string. 208 std::u16string utf8ToUtf16(const StringPiece& utf8); 209 std::string utf16ToUtf8(const StringPiece16& utf8);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/ |
storage_v1.py | 96 result.fields = FLAGS.fields.decode('utf8') 98 result.key = FLAGS.key.decode('utf8') 100 result.oauth_token = FLAGS.oauth_token.decode('utf8') 104 result.quotaUser = FLAGS.quotaUser.decode('utf8') 106 result.trace = FLAGS.trace.decode('utf8') 108 result.userIp = FLAGS.userIp.decode('utf8') 187 bucket=bucket.decode('utf8'), 188 entity=entity.decode('utf8'), 215 bucket=bucket.decode('utf8'), 216 entity=entity.decode('utf8'), [all...] |
/external/icu/icu4c/source/test/intltest/ |
ustrtest.cpp | 232 static const uint8_t utf8[]={ 0x61, 0xC3, 0xA4, 0xC3, 0x9F, 0xE4, 0xB8, 0x80, 0 }; local 234 UnicodeString from8a = UnicodeString((const char *)utf8); 235 UnicodeString from8b = UnicodeString((const char *)utf8, (int32_t)sizeof(utf8)-1); 242 if(length8!=((int32_t)sizeof(utf8)-1) || 0!=uprv_memcmp(buffer, utf8, sizeof(utf8))) { 246 if(length8!=4 || buffer[length8]!=0 || 0!=uprv_memcmp(buffer, utf8+1, length8)) { 1857 static const uint8_t utf8[] = { local [all...] |
/frameworks/base/tools/aapt2/ |
StringPool.cpp | 297 bool StringPool::flatten(BigBuffer* out, const StringPool& pool, bool utf8) { 303 if (utf8) { 322 if (utf8) { 334 // Now encode the size of the converted UTF8 string.
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
dumpICUrules.bat | 20 # in icu/data, from ICU4J UTF8 transliterator data files, in 210 # Param: Java file name of the form m|Transliterator_(.+)\.utf8\.txt$| 217 if (m|Transliterator_(.+)\.utf8\.txt$| || 340 # f:/icu4j/src/com/ibm/text/resources/Transliterator_Fullwidth_Halfwidth.utf8.txt 352 # Open file, write UTF8 marker, close it, and reopen in text mode 354 binmode OUT; # Must do this so we can write our UTF8 marker 355 print OUT pack("C3", 0xEF, 0xBB, 0xBF); # Write UTF8 marker 368 binmode IN; # IN is a UTF8 file 371 my $BOM = pack("C3", 239, 187, 191); # a UTF8 byte order mark
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20100503.jar | |
/external/icu/icu4c/source/test/cintltst/ |
ucnvseltst.c | 271 const char *utf8, int32_t length, 302 * (UBool)(uset_spanUTF8(set, utf8, length, USET_SPAN_SIMPLE) == length); 304 * or if the utf8 string contains an illegal sequence. 312 U8_NEXT(utf8, offset, length, cp);
|
/external/pcre/dist/ |
pcregrep.c | 199 static BOOL utf8 = FALSE; variable [all...] |
/prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20130327-2119.jar | |
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/ |
org.eclipse.equinox.simpleconfigurator.manipulator_2.0.0.v20130327-2119.jar | |
/external/ImageMagick/coders/ |
emf.c | 183 static size_t UTF8ToUTF16(const unsigned char *utf8,wchar_t *utf16) 200 for (p=utf8; *p != '\0'; p++) 239 for (p=utf8; *p != '\0'; p++) 263 return(p-utf8);
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/framed/ |
FramedServer.java | 98 path = requestHeaders.get(i).value.utf8();
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
MultipartBuilder.java | 208 this.contentType = MediaType.parse(type + "; boundary=" + boundary.utf8());
|