HomeSort by relevance Sort by last modified time
    Searched refs:uch (Results 26 - 48 of 48) sorted by null

12

  /external/icu/icu4c/source/samples/ucnv/
convsamp.cpp 89 const UChar *uch = kNone,
94 if( (len == -1) && (uch) ) {
95 len = u_strlen(uch);
106 printf("\\u%04X ", (int)uch[i]);
112 prettyPrintUChar(uch[i]);
118 const char *uch = "",
123 if( (len == -1) && (uch) ) {
124 len = strlen(uch);
135 printf("\\x%02X ", 0x00FF & (int)uch[i]);
141 if(isgraph(0x00FF & (int)uch[i]))
    [all...]
  /external/llvm/lib/Support/
regcomp.c 412 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
424 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ))
453 if (isdigit((uch)PEEK())) {
474 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
624 if (MORE() && isdigit((uch)PEEK())) {
653 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
819 while (MORE() && isalpha((uch)PEEK()))
903 ch = (uch)ch;
906 return ((uch)tolower(ch));
908 return ((uch)toupper(ch))
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 368 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
380 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ))
409 if (isdigit((uch)PEEK())) {
430 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
580 if (MORE() && isdigit((uch)PEEK())) {
609 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
859 ch = (uch)ch;
862 return ((uch)tolower(ch));
864 return ((uch)toupper(ch));
881 ch = (uch)ch
    [all...]
  /external/freetype/src/gzip/
zutil.h 34 typedef unsigned char uch; typedef
35 typedef uch FAR uchf;
zutil.c 101 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  /external/clang/test/SemaCXX/
conversion.cpp 70 unsigned char uch = NULL; // expected-warning {{implicit conversion of NULL constant to 'unsigned char'}} local
  /external/opencv3/3rdparty/zlib/
trees.c 71 local const uch bl_order[BL_CODES]
98 uch _dist_code[DIST_CODE_LEN];
104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
177 put_byte(s, (uch)((w) & 0xff)); \
178 put_byte(s, (uch)((ush)(w) >> 8)); \
262 _length_code[length++] = (uch)code;
270 _length_code[length-1] = (uch)code;
277 _dist_code[dist++] = (uch)code;
285 _dist_code[256 + dist++] = (uch)code;
349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n")
    [all...]
zutil.h 41 typedef unsigned char uch; typedef
42 typedef uch FAR uchf;
zutil.c 238 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  /external/pdfium/third_party/zlib_v128/
trees.c 71 local const uch bl_order[BL_CODES]
98 uch _dist_code[DIST_CODE_LEN];
104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
177 put_byte(s, (uch)((w) & 0xff)); \
178 put_byte(s, (uch)((ush)(w) >> 8)); \
262 _length_code[length++] = (uch)code;
270 _length_code[length-1] = (uch)code;
277 _dist_code[dist++] = (uch)code;
285 _dist_code[256 + dist++] = (uch)code;
349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n")
    [all...]
zutil.h 43 typedef unsigned char uch; typedef
44 typedef uch FAR uchf;
zutil.c 240 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  /external/zlib/src/
trees.c 71 local const uch bl_order[BL_CODES]
98 uch _dist_code[DIST_CODE_LEN];
104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
177 put_byte(s, (uch)((w) & 0xff)); \
178 put_byte(s, (uch)((ush)(w) >> 8)); \
262 _length_code[length++] = (uch)code;
270 _length_code[length-1] = (uch)code;
277 _dist_code[dist++] = (uch)code;
285 _dist_code[256 + dist++] = (uch)code;
349 fprintf(header, "const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {\n")
    [all...]
zutil.h 41 typedef unsigned char uch; typedef
42 typedef uch FAR uchf;
zutil.c 238 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
  /external/icu/icu4c/source/common/
filteredbrk.cpp 263 UChar32 uch; local
267 if((uch=utext_previous32(fText.getAlias()))==(UChar32)0x0020) { // TODO: skip a class of chars here??
269 //if(debug2) u_printf("skipping prev: |%C| \n", (UChar)uch);
271 //if(debug2) u_printf("not skipping prev: |%C| \n", (UChar)uch);
272 uch = utext_next32(fText.getAlias());
273 //if(debug2) u_printf(" -> : |%C| \n", (UChar)uch);
278 while((uch=utext_previous32(fText.getAlias()))!=U_SENTINEL && // more to consume backwards and..
279 USTRINGTRIE_HAS_NEXT(r=fData->fBackwardsTrie->nextForCodePoint(uch))) {// more in the trie
284 //if(debug2) u_printf("rev< /%C/ cont?%d @%d\n", (UChar)uch, r, utext_getNativeIndex(fText.getAlias()));
288 //if(debug2) u_printf("rev<?/%C/?end of seq.. r=%d, bestPosn=%d, bestValue=%d\n", (UChar)uch, r, bestPosn, bestValue)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/
app.c 430 #define UNGET(uch) (*--from = (uch))
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regcomp.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
cloctst.c     [all...]
  /external/icu/icu4c/source/i18n/
tzfmt.cpp     [all...]
  /external/icu/icu4c/source/test/intltest/
numfmtst.cpp 7331 const UChar* uch = ufmt_getUChars(u, &len, &valueStatus); local
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 767 milliseconds

12