/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
StringIdsSection.java | 107 CstUtf8 utf8 = new CstUtf8(string); local 108 return intern(new StringIdItem(utf8)); 118 CstUtf8 utf8 = string.getString(); local 119 return intern(new StringIdItem(utf8));
|
/external/icu/icu4c/as_is/ |
bomlist.py | 19 utf8=0 variable
|
/external/webrtc/webrtc/base/ |
win32.h | 49 inline std::wstring ToUtf16(const char* utf8, size_t len) { 50 int len16 = ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len), 53 ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len), ws, len16); 84 // Convert a Utf8 path representation to a non-length-limited Unicode pathname. 85 bool Utf8ToWindowsFilename(const std::string& utf8, std::wstring* filename);
|
/external/icu/icu4c/source/test/perf/utrie2perf/ |
utrie2perf.sh | 5 # export LD_LIBRARY_PATH=/home/mscherer/svn.icu/utf8-dev/lib:/home/mscherer/svn.icu/utf8-dev/tools/ctestfw 10 PERF=~/svn.icu/utf8-dev/test/perf/utrie2perf/utrie2perf
|
utrie2perf.bat | 4 set PERF=c:\svn\icuproj\icu\utf8\source\test\perf\utrie2perf\x86\Release\utrie2perf
|
utrie2perf.cpp | 25 // Left over from when icu/branches/markus/utf8 could use both old UTrie 47 utf8(NULL), utf8Length(0), countInputCodePoints(0) { 58 // Preflight the UTF-8 length and allocate utf8. 61 utf8=(char *)malloc(utf8Length); 62 if(utf8!=NULL) { 64 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status); 85 char *utf8; member in class:UTrie2PerfTest 162 UBool isFCD=unorm_checkFCDUTF8((const uint8_t *)testcase.utf8, testcase.utf8Length, NULL);
|
/external/libchrome/base/strings/ |
utf_string_conversions.h | 29 BASE_EXPORT std::wstring UTF8ToWide(StringPiece utf8); 39 BASE_EXPORT string16 UTF8ToUTF16(StringPiece utf8);
|
sys_string_conversions_posix.cc | 21 std::wstring SysUTF8ToWide(const StringPiece& utf8) { 25 UTF8ToWide(utf8.data(), utf8.size(), &out);
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
Header.java | 54 return String.format("%s: %s", name.utf8(), value.utf8());
|
/external/v8/samples/ |
hello-world.cc | 61 // Convert the result to an UTF8 string and print it. 62 String::Utf8Value utf8(result); 63 printf("%s\n", *utf8);
|
/external/okhttp/okio/okio/src/test/java/okio/ |
ByteStringTest.java | 42 assertEquals("llo, Worl", byteString.utf8()); 72 @Test public void utf8() throws Exception { method in class:ByteStringTest 76 assertEquals(byteString.utf8(), bronzeHorseman); 197 assertEquals("", ByteString.decodeBase64("====").utf8()); 198 assertEquals("\u0000\u0000\u0000", ByteString.decodeBase64("AAAA====").utf8()); 202 assertEquals("", ByteString.decodeBase64("").utf8()); 214 + "N1cCBpbiB0aGUgcG93ZXIuLi4=").utf8()); 220 assertEquals("\u0000\u0000\u0000", ByteString.decodeBase64(" AA AA ").utf8()); 221 assertEquals("\u0000\u0000\u0000", ByteString.decodeBase64(" AA A\r\nA ").utf8()); 222 assertEquals("\u0000\u0000\u0000", ByteString.decodeBase64("AA AA").utf8()); [all...] |
/external/icu/icu4c/source/test/perf/unisetperf/ |
unisetperf.cpp | 49 utf8(NULL), utf8Length(0), countInputCodePoints(0), spanCount(0) { 65 // Preflight the UTF-8 length and allocate utf8. 68 utf8=(char *)malloc(utf8Length); 69 if(utf8!=NULL) { 71 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status); 120 char *utf8; member in class:UnicodeSetPerformanceTest 315 char utf8[4]; local 324 U8_APPEND_UNSAFE(utf8, length, c); 325 if(testcase.set.spanUTF8(utf8, length, USET_SPAN_CONTAINED)>0) { 339 const char *s=testcase.utf8; 361 char utf8[4]; local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/ |
pulseaudio.h | 40 #include <pulse/utf8.h> 54 * operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/ |
pulseaudio.h | 41 #include <pulse/utf8.h> 55 * operation.h,\ref volume.h, \ref xmalloc.h, \ref utf8.h, \ref
|
/system/core/adb/sysdeps/win32/ |
stat.cpp | 26 #include <android-base/utf8.h>
|
/frameworks/base/tools/aapt2/util/ |
StringPiece.h | 196 android::String8 utf8(str.data(), str.size()); 197 return out.write(utf8.string(), utf8.size()); 256 android::String8 utf8(str.data(), str.size()); 257 return out.write(utf8.string(), utf8.size());
|
Util.cpp | 424 std::u16string utf8ToUtf16(const StringPiece& utf8) { 425 ssize_t utf16Length = utf8_to_utf16_length(reinterpret_cast<const uint8_t*>(utf8.data()), 426 utf8.length()); 433 utf8_to_utf16(reinterpret_cast<const uint8_t*>(utf8.data()), utf8.length(), &*utf16.begin()); 443 std::string utf8; local 445 utf8.resize(utf8Length + 1); 446 utf16_to_utf8(utf16.data(), utf16.length(), &*utf8.begin(), utf8Length + 1); 447 utf8.resize(utf8Length); 448 return utf8; [all...] |
/external/ImageMagick/coders/ |
braille.c | 331 unsigned char utf8[3]; 333 utf8[0] = (unsigned char) (0xe0|((0x28>>4)&0x0f)); 334 utf8[1] = 0x80|((0x28<<2)&0x3f)|(cell>>6); 335 utf8[2] = 0x80|(cell&0x3f); 336 (void) WriteBlob(image,3,utf8); 326 unsigned char utf8[3]; local
|
/external/icu/icu4c/source/common/ |
ucnv_u8.c | 27 #include "unicode/utf8.h" 764 UConverter *utf8; local 776 utf8=pToUArgs->converter; 783 c=(UChar32)utf8->toUnicodeStatus; 785 toULength=oldToULength=utf8->toULength; 786 toULimit=(int8_t)utf8->mode; 843 utf8->toUnicodeStatus=0; 844 utf8->toULength=0; 916 utf8->toUBytes[oldToULength++]=*source++; 918 utf8->toUnicodeStatus=c [all...] |
/external/llvm/lib/Support/Windows/ |
WindowsSupport.h | 179 std::error_code UTF8ToUTF16(StringRef utf8, SmallVectorImpl<wchar_t> &utf16); 181 SmallVectorImpl<char> &utf8); 184 SmallVectorImpl<char> &utf8);
|
/external/pcre/dist/ |
pcredemo.c | 62 int utf8; local 247 * In UTF-8 mode, which can be set by (*UTF8) in the pattern, this may be * 267 utf8 = option_bits & PCRE_UTF8; 345 else if (utf8) /* Otherwise, ensure we */
|
perltest.pl | 4 # them the same. This version needs to have "use utf8" at the start for running 10 #use utf8; 18 if ($utf8) 96 $utf8 = $pattern =~ s/8(?=[a-zA-Z]*$)//; 226 # It seems that $REGMARK is not marked as UTF-8 even when use utf8 is 233 $xx = Encode::decode_utf8($xx) if $utf8;
|
/external/skia/samplecode/ |
SampleRectanizer.cpp | 61 char utf8[kMaxBytesInUTF8Sequence]; variable 62 size_t size = SkUTF8_FromUnichar(uni, utf8); 65 switch (utf8[0]) {
|
SampleUnpremul.cpp | 59 char utf8[kMaxBytesInUTF8Sequence]; variable 60 size_t size = SkUTF8_FromUnichar(uni, utf8); 63 switch (utf8[0]) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetEncoder2Test.java | 158 Charset utf8 = Charset.forName("utf-8"); local 159 CharsetEncoder encoder = utf8.newEncoder(); 187 CharBuffer chars = utf8.newDecoder().decode(bytes);
|