HomeSort by relevance Sort by last modified time
    Searched full:utf8 (Results 126 - 150 of 1524) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/regex-re2/re2/testing/
exhaustive3_test.cc 28 // Returns UTF8 for Rune r
29 static string UTF8(Rune r) {
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/chromium_org/third_party/harfbuzz-ng/src/
hb-glib.cc 253 gchar utf8[12];
258 len = g_unichar_to_utf8 (a, utf8);
259 len += g_unichar_to_utf8 (b, utf8 + len);
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
290 gchar utf8[6];
295 len = g_unichar_to_utf8 (ab, utf8);
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
348 gchar utf8[6];
353 utf8_len = g_unichar_to_utf8 (u, utf8);
354 utf8_decomposed = g_utf8_normalize (utf8, utf8_len, G_NORMALIZE_NFKD)
    [all...]
  /external/harfbuzz_ng/src/
hb-glib.cc 253 gchar utf8[12];
258 len = g_unichar_to_utf8 (a, utf8);
259 len += g_unichar_to_utf8 (b, utf8 + len);
260 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFC);
290 gchar utf8[6];
295 len = g_unichar_to_utf8 (ab, utf8);
296 normalized = g_utf8_normalize (utf8, len, G_NORMALIZE_NFD);
348 gchar utf8[6];
353 utf8_len = g_unichar_to_utf8 (u, utf8);
354 utf8_decomposed = g_utf8_normalize (utf8, utf8_len, G_NORMALIZE_NFKD)
    [all...]
  /external/chromium_org/content/child/
web_database_observer_impl.cc 80 open_connections_->AddOpenConnection(origin_identifier.utf8(),
83 origin_identifier.utf8(), database_name,
91 origin_identifier.utf8(), database_name));
98 origin_identifier.utf8(), database_name));
99 open_connections_->RemoveOpenConnection(origin_identifier.utf8(),
182 origin_identifier.utf8(),
  /external/chromium_org/third_party/icu/source/common/
unisetspan.h 41 UTF8 = 4,
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
122 uint8_t *utf8; member in class:UnicodeSetStringSpan
  /external/icu/icu4c/source/common/
unisetspan.h 41 UTF8 = 4,
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
122 uint8_t *utf8; member in class:UnicodeSetStringSpan
  /external/flac/libFLAC/
format.c 316 static FLaC__INLINE unsigned utf8len_(const FLAC__byte *utf8)
318 FLAC__ASSERT(0 != utf8);
319 if ((utf8[0] & 0x80) == 0) {
322 else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80) {
323 if ((utf8[0] & 0xFE) == 0xC0) /* overlong sequence check */
327 else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80) {
328 if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check *
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h 98 // typedef unsigned char UTF8; /* typically 8 bits */
108 typedef ANTLR3_UINT8 UTF8; /* typically 8 bits */
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* targetEnd, ConversionFlags flags)
    [all...]
  /external/chromium_org/components/os_crypt/
os_crypt_win.cc 21 std::string utf8; local
22 if (!DecryptString(ciphertext, &utf8))
25 *plaintext = base::UTF8ToUTF16(utf8);
  /external/chromium_org/third_party/sqlite/src/test/
func3.test 27 sqlite3_create_function_v2 db f2 -1 utf8 -func f2
42 sqlite3_create_function_v2 db f3 -1 utf8 -func f3 -destroy destroy
46 sqlite3_create_function_v2 db f3 -1 utf8 -func f3
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
utf_util_win.h 24 inline std::wstring ToUtf16(const char* utf8, size_t len) {
25 int len16 = ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len),
28 ::MultiByteToWideChar(CP_UTF8, 0, utf8, static_cast<int>(len), ws.get(),
  /external/harfbuzz_ng/util/
helper-cairo.hh 53 char *utf8; member in struct:helper_cairo_line_t
64 if (utf8)
65 g_free (utf8);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
CopyrightBox.java 22 import com.coremedia.iso.Utf8;
62 return 7 + Utf8.utf8StringLengthInBytes(copyright);
76 byteBuffer.put(Utf8.convert(copyright));
DescriptionBox.java 21 import com.coremedia.iso.Utf8;
48 return 7 + Utf8.utf8StringLengthInBytes(description);
62 byteBuffer.put(Utf8.convert(description));
GenreBox.java 21 import com.coremedia.iso.Utf8;
58 return 7 + Utf8.utf8StringLengthInBytes(genre);
72 byteBuffer.put(Utf8.convert(genre));
PerformerBox.java 21 import com.coremedia.iso.Utf8;
57 return 6 + Utf8.utf8StringLengthInBytes(performer) + 1;
64 byteBuffer.put(Utf8.convert(performer));
TitleBox.java 21 import com.coremedia.iso.Utf8;
68 return 7 + Utf8.utf8StringLengthInBytes(title);
75 byteBuffer.put(Utf8.convert(title));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/vodafone/
AlbumArtistBox.java 22 import com.coremedia.iso.Utf8;
58 return 6 + Utf8.utf8StringLengthInBytes(albumArtist) + 1;
71 byteBuffer.put(Utf8.convert(albumArtist));
ContentDistributorIdBox.java 21 import com.coremedia.iso.Utf8;
48 return 2 + Utf8.utf8StringLengthInBytes(contentDistributorId) + 5;
62 byteBuffer.put(Utf8.convert(contentDistributorId));
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
FontTableBox.java 5 import com.coremedia.iso.Utf8;
80 bb.put(Utf8.convert(fontname));
84 return Utf8.utf8StringLengthInBytes(fontname) + 3;
  /external/chromium_org/base/android/
jni_string.cc 32 // JNI's GetStringUTFChars() returns strings in Java "modified" UTF8, so
34 // function that yields plain (non Java-modified) UTF8.
55 // JNI's NewStringUTF expects "modified" UTF8 so instead create the string
58 // a trusted source. We can't guarantee that all UTF8 will be sanitized before
  /external/chromium_org/base/strings/
utf_string_conversions.cc 63 std::wstring UTF8ToWide(const StringPiece& utf8) {
65 UTF8ToWide(utf8.data(), utf8.length(), &ret);
124 // UTF16 <-> UTF8 --------------------------------------------------------------
133 string16 UTF8ToUTF16(const StringPiece& utf8) {
137 UTF8ToUTF16(utf8.data(), utf8.length(), &ret);
161 string16 UTF8ToUTF16(const StringPiece& utf8) {
162 return UTF8ToWide(utf8);
  /external/chromium_org/content/renderer/
webpublicsuffixlist_impl.cc 17 host.utf8(),
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_unilib_google3.cc 10 #include "util/utf8/unilib.h"
  /external/chromium_org/third_party/libjingle/source/talk/base/
iosfilesystem.mm 39 // Return a new[]'d |char*| copy of the UTF8 representation of |s|.
42 const char* utf8 = [s UTF8String];
43 size_t len = strlen(utf8) + 1;
48 strcpy(copy, utf8);

Completed in 1779 milliseconds

1 2 3 4 56 7 8 91011>>