HomeSort by relevance Sort by last modified time
    Searched refs:utf (Results 1 - 25 of 33) sorted by null

1 2

  /external/libxml2/
xmlstring.c 60 * encoded in UTF-8 or an encoding with 8bit based chars, we assume
512 * encoded in UTF-8 or an encoding with 8bit based chars, we assume
586 * From rfc2044: encoding of the Unicode values on UTF-8: *
588 * UCS-4 range (hex.) UTF-8 octet sequence (binary) *
600 * @utf: pointer to the UTF8 character
607 xmlUTF8Size(const xmlChar *utf) {
611 if (utf == NULL)
613 if (*utf < 0x80)
616 if (!(*utf & 0x40))
621 if (!(*utf & mask)
    [all...]
xmlschemastypes.c 4983 const xmlChar *utf; local
    [all...]
parser.c     [all...]
  /external/libxml2/include/libxml/
xmlstring.h 24 * This is a basic byte in an UTF-8 encoded string.
109 xmlGetUTF8Char (const unsigned char *utf,
112 xmlCheckUTF8 (const unsigned char *utf);
114 xmlUTF8Strsize (const xmlChar *utf,
117 xmlUTF8Strndup (const xmlChar *utf,
120 xmlUTF8Strpos (const xmlChar *utf,
123 xmlUTF8Strloc (const xmlChar *utf,
126 xmlUTF8Strsub (const xmlChar *utf,
130 xmlUTF8Strlen (const xmlChar *utf);
132 xmlUTF8Size (const xmlChar *utf);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
__init__.py 105 encoding='utf-8'
110 encoding='utf-8', **kw):
142 ``encoding`` is the character encoding for str instances, default is UTF-8.
152 encoding == 'utf-8' and not kw):
168 encoding='utf-8', **kw):
198 ``encoding`` is the character encoding for str instances, default is UTF-8.
208 encoding == 'utf-8' and not kw):
226 than utf-8 (e.g. latin-1), then an appropriate ``encoding`` name must
249 other than utf-8 (e.g. latin-1) then an appropriate ``encoding`` name
  /cts/tests/tests/jni/libjnitest/
android_jni_cts_InstanceNonce.c 198 const char *utf = (*env)->GetStringUTFChars(env, v, NULL); local
199 jboolean result = (strcmp("fuzzbot", utf) == 0);
201 (*env)->ReleaseStringUTFChars(env, v, utf);
244 const char *utf = (*env)->GetStringUTFChars(env, v6, NULL); local
245 result = (strncmp("six", utf, 3) == 0);
247 (*env)->ReleaseStringUTFChars(env, v6, utf);
android_jni_cts_StaticNonce.c 212 const char *utf = (*env)->GetStringUTFChars(env, v, NULL); local
213 jboolean result = (strcmp("fuzzbot", utf) == 0);
215 (*env)->ReleaseStringUTFChars(env, v, utf);
259 const char *utf = (*env)->GetStringUTFChars(env, v6, NULL); local
260 result = (strncmp("six", utf, 3) == 0);
262 (*env)->ReleaseStringUTFChars(env, v6, utf);
macroized_tests.c 1184 const char *utf = CALL(GetStringUTFChars, result, NULL); local
1186 if (strcmp(utf, "muffins") == 0) {
1189 msg = failure("unexpected string: %s", utf);
1192 CALL(ReleaseStringUTFChars, result, utf);
    [all...]
  /external/icu4c/test/perf/collationperf/
Makefile.in 58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
  /external/libxslt/libxslt/
xsltutils.c 235 * @utf: a sequence of UTF-8 encoded bytes
238 * Read one UTF8 Char from @utf
246 xsltGetUTF8Char(const unsigned char *utf, int *len) {
249 if (utf == NULL)
256 c = utf[0];
260 if ((utf[1] & 0xc0) != 0x80)
265 if ((utf[2] & 0xc0) != 0x80)
270 if ((c & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80)
274 c = (utf[0] & 0x7) << 18
    [all...]
xsltutils.h 95 xsltGetUTF8Char (const unsigned char *utf,
  /external/chromium/net/http/
http_util.cc 599 if (LowerCaseEqualsASCII(charset, "utf-8")) {
602 charset_with_q += ",utf-8;q=0.7,*;q=0.3";
  /development/testrunner/
create_test.py 37 TEST_MANIFEST_TEMPLATE = """<?xml version="1.0" encoding="utf-8"?>
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLMetaElement01.js 104 assertEquals("contentLink","text/html; CHARSET=utf-8",vcontent);
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLMetaElement01.js 104 assertEquals("contentLink","text/html; CHARSET=utf-8",vcontent);
  /dalvik/vm/
CheckJni.cpp 196 #define kFlag_NullableUtf 0x0020 /* are our UTF parameters nullable? */
500 * u - const char* (modified UTF-8)
632 } else if (ch == 'u') { // const char* (modified UTF-8)
633 const char* utf = va_arg(ap, const char*); local
634 if (utf == NULL) {
637 StringAppendF(&msg, "\"%s\"", utf);
    [all...]
  /external/markdown/
test-markdown.py 72 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
163 def test_directory(self, dir, measure_time=False, safe_mode=False, encoding="utf-8", output_format='xhtml1') :
212 self.html_diff_file.write(self.diffs_buffer.decode("utf-8"))
252 expected_lines = [x.encode("utf-8") for x in smart_split(expected_output)]
253 actual_lines = [x.encode("utf-8") for x in smart_split(actual_output)]
  /external/svox/pico/lib/
picotok.c 217 utf8char0c utf; member in struct:tok_subobj
437 tok->utf[tok->utfpos] = ch;
446 tok->utf[tok->utfpos] = 0;
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 592 Utf8Info utf = (Utf8Info)getItem(index); local
593 return utf.string;
    [all...]
  /dalvik/libnativehelper/include/nativehelper/
jni.h     [all...]
  /development/ndk/platforms/android-3/include/
jni.h     [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
jni.h     [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
jni.h     [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
jni.h     [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
jni.h     [all...]

Completed in 758 milliseconds

1 2