Searched defs:fcc (Results 1 - 8 of 8) sorted by relevance

/external/v8/test/mjsunit/
H A Dstring-fromcharcode.js56 var fcc = String.fromCharCode; variable
57 var fcc2 = fcc;
75 assertEquals(" ", fcc(0x20));
76 assertEquals(" ", fcc(0x20 + 0x10000));
77 assertEquals(" ", fcc(0x20 - 0x10000));
78 assertEquals(" ", fcc(0x20 + 0.5));
80 assertEquals("\u1234", fcc(0x1234));
81 assertEquals("\u1234", fcc(0x1234 + 0x10000));
82 assertEquals("\u1234", fcc(0x1234 - 0x10000));
83 assertEquals("\u1234", fcc(
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DNorm2AllModes.java198 public ComposeNormalizer2(Normalizer2Impl ni, boolean fcc) { argument
200 onlyContiguous=fcc;
290 fcc=new ComposeNormalizer2(ni, true);
297 public final ComposeNormalizer2 fcc; field in class:Norm2AllModes
/external/icu/icu4c/source/common/
H A Dnorm2allmodes.h218 ComposeNormalizer2(const Normalizer2Impl &ni, UBool fcc) : argument
219 Normalizer2WithImpl(ni), onlyContiguous(fcc) {}
318 : impl(i), comp(*i, FALSE), decomp(*i), fcd(*i), fcc(*i, TRUE) {}
335 ComposeNormalizer2 fcc; member in struct:Norm2AllModes
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java194 public ComposeNormalizer2(Normalizer2Impl ni, boolean fcc) { argument
196 onlyContiguous=fcc;
286 fcc=new ComposeNormalizer2(ni, true);
293 public final ComposeNormalizer2 fcc; field in class:Norm2AllModes
/external/pcre/dist/
H A Dpcre_dfa_exec.c412 const pcre_uint8 *ctypes, *lcc, *fcc; local
448 fcc = md->tables + fcc_offset;
2132 othercase = fcc[c];
2300 otherd = TABLE_GET(d, fcc, d);
2339 otherd = TABLE_GET(d, fcc, d);
2386 otherd = TABLE_GET(d, fcc, d);
2431 otherd = TABLE_GET(d, fcc, d);
2468 otherd = TABLE_GET(d, fcc, d);
2512 otherd = TABLE_GET(d, fcc, d);
H A Dpcre_compile.c2903 fcc points to case-flipping table
2916 const pcre_uint8 *fcc, pcre_uint32 *list)
3007 list[3] = fcc[chr];
3011 list[3] = (chr < 256) ? fcc[chr] : chr;
3013 list[3] = fcc[chr];
3244 code = get_chr_property_list(code, utf, cd->fcc, list);
3683 get_chr_property_list(code, utf, cd->fcc, list) : NULL;
3739 end = get_chr_property_list(code, utf, cd->fcc, list);
4255 SETBIT(classbits, cd->fcc[c]);
9059 cd->fcc
2915 get_chr_property_list(const pcre_uchar *code, BOOL utf, const pcre_uint8 *fcc, pcre_uint32 *list) argument
[all...]
H A Dpcre_jit_compile.c357 const pcre_uint8 *fcc; member in struct:compiler_common
2386 return common->fcc[c] != c;
2392 return MAX_255(c) ? common->fcc[c] != c : FALSE;
2408 return TABLE_GET(c, common->fcc, c);
2424 oc = common->fcc[c];
2437 oc = TABLE_GET(c, common->fcc, c);
2441 oc = TABLE_GET(c, common->fcc, c);
3504 othercase[0] = TABLE_GET(chr, common->fcc, chr);
3839 oc = TABLE_GET(first_char, common->fcc, first_char);
4070 oc = TABLE_GET(req_char, common->fcc, req_cha
[all...]
H A Dpcre_internal.h2427 const pcre_uint8 *fcc; /* Points to case-flipping table */ member in struct:compile_data
2529 const pcre_uint8 *fcc; /* Points to case-flipping table */ member in struct:match_data

Completed in 350 milliseconds