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

1 2

  /external/oj-libjdwp/src/share/back/
StringReferenceImpl.c 46 char *utf; local
48 utf = (char *)JNI_FUNC_PTR(env,GetStringUTFChars)(env, string, NULL);
49 (void)outStream_writeString(out, utf);
50 JNI_FUNC_PTR(env,ReleaseStringUTFChars)(env, string, utf);
util.c 1736 const char *utf; local
    [all...]
  /external/pcre/dist2/src/
pcre2_pattern_info.c 258 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; local
342 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
pcre2_printint.c 81 /* In UTF mode the character may occupy more than one code unit.
86 utf TRUE if string is UTF (will be FALSE if UTF is not supported)
92 print_char(FILE *f, PCRE2_SPTR ptr, BOOL utf)
95 BOOL one_code_unit = !utf;
97 /* If UTF is supported and requested, check for a valid single code unit. */
100 if (utf)
122 /* Code for invalid UTF code units and multi-unit UTF characters is differen
312 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; local
    [all...]
pcre2_study.c 68 string of that length that matches. In UTF mode, the result is in characters
78 utf UTF flag
83 -1 \C in UTF-8 mode
93 PCRE2_SPTR startcode, BOOL utf, recurse_check *recurses, int *countptr)
169 d = find_minlength(re, cc, startcode, utf, recurses, countptr);
189 prev_cap_d = find_minlength(re, cc, startcode, utf, recurses, countptr);
291 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
303 may need to skip over a multibyte character in UTF mode. */
312 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1])
1530 BOOL utf = (re->overall_options & PCRE2_UTF) != 0; local
    [all...]
pcre2_substitute.c 231 BOOL utf = (code->overall_options & PCRE2_UTF) != 0; local
269 /* Check UTF replacement string if necessary. */
272 if (utf && (options & PCRE2_NO_UTF_CHECK) == 0)
304 if (utf) options |= PCRE2_NO_UTF_CHECK; /* Only need to check once */
332 /* Otherwise, in UTF mode, advance past any secondary code points. */
663 if (utf)
682 if (utf) chlen = PRIV(ord2utf)(ch, temp); else
765 if (utf)
784 if (utf) chlen = PRIV(ord2utf)(ch, temp); else
pcre2_jit_test.c 57 \xed\xa0\x80 = 55296 = 0xd800 (Invalid UTF character)
58 \xed\xb0\x80 = 56320 = 0xdc00 (Invalid UTF character)
92 \xf4\x8f\xbf\xbf = 0x10ffff = 1114111 (highest allowed utf character)
1107 int utf = 0; local
    [all...]
pcre2_dfa_match.c 396 BOOL utf = (mb->poptions & PCRE2_UTF) != 0; local
398 BOOL utf = FALSE; local
454 if (utf)
658 if (utf) { GETCHARLEN(d, (code + coptable[codevalue]), dlen); } else
3127 BOOL utf, anchored, startline, firstline; local
    [all...]
pcre2_match.c 127 UTF-8 mode, the number of subject bytes matched may be different to the number
128 of reference bytes. (In theory this could also happen in UTF-16 mode, but it
149 BOOL utf = (mb->poptions & PCRE2_UTF) != 0; local
169 /* Separate the caseless and UTF cases for speed. */
177 if (utf)
180 code units matched may differ, because in UTF-8 there are some characters
182 For example, U+023A (2 bytes in UTF-8) is the upper case version of U+2C65
183 (3 bytes in UTF-8); a sequence of 3 of the former uses 6 bytes, as does a
211 /* Not in UTF mode */
229 are in UTF mode. *
589 register BOOL utf; \/* Local copy of UTF flag for speed *\/ local
6459 BOOL utf; local
    [all...]
pcre2grep.c 220 static BOOL utf = FALSE; variable
401 { OP_NODATA, 'u', NULL, "utf", "use UTF mode" },
428 /* UTF-8 tables - used only when the newline setting is "any". */
    [all...]
pcre2_compile.c 179 /* This bit (which is greater than any UTF value) is used to indicate that a
199 UTF-8 mode. */
239 /* This is the "abnormal" case, for EBCDIC systems not running in UTF-8 mode. */
284 in UTF-8 mode. It runs from '0' to 'z'. */
334 /* This is the "abnormal" table for EBCDIC systems without UTF-8 support.
379 string is built from string macros so that it works in UTF-8 mode on EBCDIC
630 /* This is a table of start-of-pattern options such as (*UTF) and settings such
632 compatibility, (*UTFn) is supported in the relevant libraries, but (*UTF) is
1827 BOOL utf = (options & PCRE2_UTF) != 0; local
2993 BOOL utf = (options & PCRE2_UTF) != 0; local
3231 BOOL utf = (options & PCRE2_UTF) != 0; local
3893 BOOL utf = (options & PCRE2_UTF) != 0; local
3899 BOOL utf = FALSE; local
8315 BOOL utf; \/* Set TRUE for UTF mode *\/ local
    [all...]
pcre2_jit_compile.c 454 BOOL utf; member in struct:compiler_common
767 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
789 if (common->utf) return NULL;
5487 BOOL utf = common->utf; local
    [all...]
pcre2test.c 299 /* We need to be able to check input text for UTF-8 validity, whatever code
301 8-bit code units. So we include the UTF validity checking function for 8-bit
623 { "utf", MOD_PATP, MOD_OPT, PCRE2_UTF, PO(options) },
3805 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; local
4459 BOOL utf; local
5144 BOOL utf = (FLD(compiled_code, overall_options) & PCRE2_UTF) != 0; local
5541 BOOL utf; local
6585 PCHARSV(CASTFLD(void *, match_data, mark), 0, -1, utf, outfile); local
6702 PCHARSV(CASTFLD(void *, match_data, mark), 0, -1, utf, outfile); local
    [all...]
  /external/oj-libjdwp/src/share/npt/
npt.h 38 #include "utf.h"
55 struct UtfInst *utf; member in struct:__anon30863
57 /* UTF interfaces, see utf.c */
61 (struct UtfInst *utf, char *options);
63 (struct UtfInst *utf, jbyte *utf8, int len,
66 (struct UtfInst *utf, char *str, int len,
69 (struct UtfInst *utf, jbyte *utf8, int len,
72 (struct UtfInst *utf, jchar *utf16, int len,
75 (struct UtfInst *utf, jchar *utf16, int len
    [all...]
  /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 1205 const char *utf = CALL(GetStringUTFChars, result, NULL); local
1207 if (strcmp(utf, "muffins") == 0) {
1210 msg = failure("unexpected string: %s", utf);
1213 CALL(ReleaseStringUTFChars, result, utf);
    [all...]
  /external/pcre/pcrecpp/include/
pcrecpp.h 144 // UTF-8 AND THE MATCHING INTERFACE:
148 // and string to be treated as UTF-8 text, still a byte stream but
150 // is likelier to be UTF-8 than the pattern, but the match returned
454 bool utf() const { function in class:pcrecpp::RE_Options
486 static inline RE_Options UTF() {
  /art/runtime/
jni_internal_test.cc 1673 const char* utf = env_->GetStringUTFChars(s, nullptr); local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ConstPool.java 592 Utf8Info utf = (Utf8Info)getItem(index); local
593 return utf.string;
    [all...]
  /external/libxml2/
encoding.c 5 * rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies
6 * rfc2781 UTF-16, an encoding of ISO 10646, P. Hoffman, F. Yergeau
7 * [ISO-10646] UTF-8 and UTF-16 in Annexes
11 * Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is
20 * Original code for IsoLatin1 and UTF-16 by "Martin J. Duerst" <duerst@w3.org>
133 conv->utf8 = ucnv_open("UTF-8", &status);
168 * Take a block of ASCII chars in and try to convert it to an UTF-8
211 * @in: a pointer to an array of UTF-8 char
2660 const xmlChar *utf = (const xmlChar *) in->content; local
    [all...]
xmlschemastypes.c 5020 const xmlChar *utf; local
    [all...]
  /external/javasqlite/src/main/native/
sqlite_jni.c 64 int haveutf; /* true for SQLite UTF-8 support */
132 /* ISO to/from UTF-8 translation */
363 const char *utf = (*env)->GetStringUTFChars(env, src, 0); local
365 dest->result = dest->tofree = malloc(strlen(utf) + 1);
377 strcpy(dest->result, utf);
378 (*env)->ReleaseStringUTFChars(env, src, utf);
1018 trans2iso(env, strcmp(sqlite_libencoding(), "UTF-8") == 0, 0,
1102 h->haveutf = strcmp(sqlite_libencoding(), "UTF-8") == 0;
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 
  /prebuilts/jdk/jdk9/darwin-x86/lib/
jrt-fs.jar 

Completed in 562 milliseconds

1 2