/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
Utils.java | 454 * @param ch a character 457 private static boolean isNameStartChar(char ch) 459 return ch > 0xFF || xmlNameStartChars[ch]; 471 * @param ch a character 474 private static boolean isNameChar(char ch) 476 return ch > 0xFF || xmlNameChars[ch]; 488 for (char ch = 0; ch < xmlNameChars.length; ch++ [all...] |
/libcore/luni/src/main/java/java/io/ |
LineNumberReader.java | 117 int ch = super.read(); local 118 if (ch == '\n' && lastWasCR) { 119 ch = super.read(); 122 switch (ch) { 124 ch = '\n'; 130 return ch; 155 char ch = buffer[offset + i]; local 156 if (ch == '\r') { 159 } else if (ch == '\n') {
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
compile.c | 196 bad_command(ch) 197 char ch; 201 sprintf(unknown_cmd, msg, ch); 231 int ch = EOF; 236 ch = *prog.cur++; 241 ch = getc(prog.file); 243 if (ch == '\n') 245 return ch; 248 /* unget `ch' so the next call to inchar will return it. */ 249 static void savchar P_((int ch)); 227 int ch = EOF; local 269 int ch; local 356 int ch; local 456 int ch; local 538 int ch; local 593 int ch; local 692 int ch; local 881 int ch; local 1040 int ch; local [all...] |
/external/sqlite/android/ |
PhoneNumberUtils.cpp | 75 * Returns interger corresponding to the input if input "ch" is 79 static int tryGetISODigit (char ch) 81 if ('0' <= ch && ch <= '9') { 82 return ch - '0'; 89 * True if ch is ISO-LATIN characters 0-9, *, # , + 92 static bool isDialable(char ch) 94 return ('0' <= ch && ch <= '9') || ch == '*' || ch == '#' || ch == '+' 118 char ch = str[i]; local 154 char ch = str[i]; local [all...] |
/bionic/libc/netbsd/nameser/ |
ns_ttl.c | 89 int ch; local 91 for (p = odst; (ch = *p) != '\0'; p++) 92 if (isascii(ch) && isupper(ch)) 93 *p = tolower(ch); 103 int ch, digits, dirty; local 109 while ((ch = *src++) != '\0') { 110 if (!isascii(ch) || !isprint(ch)) 112 if (isdigit(ch)) { [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
unicodeobject.h | 334 #define Py_UNICODE_ISSPACE(ch) iswspace(ch) 336 #define Py_UNICODE_ISLOWER(ch) iswlower(ch) 337 #define Py_UNICODE_ISUPPER(ch) iswupper(ch) 338 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) 339 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) 1350 Py_UNICODE ch \/* Unicode character *\/ variable 1354 Py_UNICODE ch \/* Unicode character *\/ variable 1358 Py_UNICODE ch \/* Unicode character *\/ variable 1362 const Py_UNICODE ch \/* Unicode character *\/ variable 1366 const Py_UNICODE ch \/* Unicode character *\/ variable 1370 Py_UNICODE ch \/* Unicode character *\/ variable 1374 Py_UNICODE ch \/* Unicode character *\/ variable 1378 Py_UNICODE ch \/* Unicode character *\/ variable 1382 Py_UNICODE ch \/* Unicode character *\/ variable 1386 Py_UNICODE ch \/* Unicode character *\/ variable 1390 Py_UNICODE ch \/* Unicode character *\/ variable 1394 Py_UNICODE ch \/* Unicode character *\/ variable 1398 Py_UNICODE ch \/* Unicode character *\/ variable 1402 Py_UNICODE ch \/* Unicode character *\/ variable 1406 Py_UNICODE ch \/* Unicode character *\/ variable [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
unicodeobject.h | 334 #define Py_UNICODE_ISSPACE(ch) iswspace(ch) 336 #define Py_UNICODE_ISLOWER(ch) iswlower(ch) 337 #define Py_UNICODE_ISUPPER(ch) iswupper(ch) 338 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) 339 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) 1350 Py_UNICODE ch \/* Unicode character *\/ variable 1354 Py_UNICODE ch \/* Unicode character *\/ variable 1358 Py_UNICODE ch \/* Unicode character *\/ variable 1362 const Py_UNICODE ch \/* Unicode character *\/ variable 1366 const Py_UNICODE ch \/* Unicode character *\/ variable 1370 Py_UNICODE ch \/* Unicode character *\/ variable 1374 Py_UNICODE ch \/* Unicode character *\/ variable 1378 Py_UNICODE ch \/* Unicode character *\/ variable 1382 Py_UNICODE ch \/* Unicode character *\/ variable 1386 Py_UNICODE ch \/* Unicode character *\/ variable 1390 Py_UNICODE ch \/* Unicode character *\/ variable 1394 Py_UNICODE ch \/* Unicode character *\/ variable 1398 Py_UNICODE ch \/* Unicode character *\/ variable 1402 Py_UNICODE ch \/* Unicode character *\/ variable 1406 Py_UNICODE ch \/* Unicode character *\/ variable [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
testutil.h | 22 static UnicodeString &appendHex(UnicodeString &buf, UChar32 ch); 24 static UnicodeString hex(UChar32 ch);
|
/external/chromium_org/tools/gyp/test/external-cross-compile/src/ |
tochar.py | 10 for ch in src.read(): 11 dst.write('%d,\n' % ord(ch))
|
/external/harfbuzz/contrib/ |
harfbuzz-unicode-tables.c | 10 HB_GetLineBreakClass(HB_UChar32 ch) { 42 HB_GetUnicodeCharCombiningClass(HB_UChar32 ch) { 43 return code_point_to_combining_class(ch); 74 HB_GetUnicodeCharProperties(HB_UChar32 ch, 77 *category = code_point_to_category(ch); 78 *combiningClass = code_point_to_combining_class(ch); 82 HB_GetUnicodeCharCategory(HB_UChar32 ch) { 83 return code_point_to_category(ch);
|
/external/icu4c/test/intltest/ |
testutil.h | 22 static UnicodeString &appendHex(UnicodeString &buf, UChar32 ch); 24 static UnicodeString hex(UChar32 ch);
|
/external/libvorbis/test/ |
test.c | 41 int ch; local 45 for(ch=1;ch<=8;ch++){ 47 printf("\nTesting %d channel%s\n\n",ch,ch==1?"":"s"); 51 snprintf (filename, sizeof (filename), "vorbis_%dch_q%.1f_%u.ogg", ch,q*10,sample_rates [k]); 59 write_vorbis_data_or_die (filename, sample_rates [k], q, data_out, ARRAY_LEN (data_out),ch);
|
write_read.h | 21 const float * data, int count, int ch) ;
|
/art/runtime/ |
utf.cc | 54 uint16_t ch = *utf16_in++; local 55 if (ch > 0 && ch <= 0x7f) { 56 *utf8_out++ = ch; 58 if (ch > 0x07ff) { 59 *utf8_out++ = (ch >> 12) | 0xe0; 60 *utf8_out++ = ((ch >> 6) & 0x3f) | 0x80; 61 *utf8_out++ = (ch & 0x3f) | 0x80; 62 } else /*(ch > 0x7f || ch == 0)*/ 142 uint16_t ch = *chars++; local [all...] |
/libcore/luni/src/main/java/java/nio/charset/ |
ModifiedUtf8.java | 77 char ch = s.charAt(i); local 78 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. 80 } else if (ch <= 2047) { 99 char ch = s.charAt(i); local 100 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes. 101 dst[offset++] = (byte) ch; 102 } else if (ch <= 2047) { 103 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6))) [all...] |
/external/apache-http/src/org/apache/http/protocol/ |
HTTP.java | 92 public static boolean isWhitespace(char ch) { 93 return ch == SP || ch == HT || ch == CR || ch == LF;
|
/external/jpeg/ |
rdcolmap.c | 125 register int ch; local 127 ch = getc(infile); 128 if (ch == '#') { 130 ch = getc(infile); 131 } while (ch != '\n' && ch != EOF); 133 return ch; 144 register int ch; local 149 ch = pbm_getc(infile); 150 if (ch == EOF [all...] |
/external/qemu/distrib/jpeg-6b/ |
rdcolmap.c | 125 register int ch; local 127 ch = getc(infile); 128 if (ch == '#') { 130 ch = getc(infile); 131 } while (ch != '\n' && ch != EOF); 133 return ch; 144 register int ch; local 149 ch = pbm_getc(infile); 150 if (ch == EOF [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
Strings.java | 45 char ch; local 54 ch = W2; 59 ch = (char)(((bytes[i] & 0x0f) << 12) 65 ch = (char)(((bytes[i] & 0x1f) << 6) | (bytes[i + 1] & 0x3f)); 70 ch = (char)(((bytes[i] & 0x1f) << 6) | (bytes[i + 1] & 0x3f)); 75 ch = (char)(bytes[i] & 0xff); 79 cs[length++] = ch; 114 char ch = c[i]; local 116 if (ch < 0x0080) 118 sOut.write(ch); 173 char ch = chars[i]; local 202 char ch = chars[i]; local 236 char ch = string.charAt(i); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stringencode.cc | 52 char ch = source[srcpos++]; local 53 if ((ch == escape) || ::strchr(illegal, ch)) { 58 buffer[bufpos++] = ch; 74 char ch = source[srcpos++]; local 75 if ((ch == escape) && (srcpos < srclen)) { 76 ch = source[srcpos++]; 78 buffer[bufpos++] = ch; 93 char ch = source[srcpos++]; local 94 if ((ch != escape) && !::strchr(illegal, ch)) 118 char ch = source[srcpos++]; local 169 unsigned char ch = source[srcpos++]; local 196 unsigned char ch = source[srcpos++]; local 283 unsigned char ch = source[srcpos]; local 341 unsigned char ch = source[srcpos++]; local 374 unsigned char ch = source[srcpos++]; local [all...] |
/external/icu4c/samples/case/ |
ucase.c | 23 UChar32 ch; local 38 ch = u_toupper(char_k); /* ch = 'K' */ 39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch); 40 ch = u_tolower(ch); /* ch = 'k' */ 41 u_fprintf(out, "tolower() = %C\n", ch); 42 ch = u_totitle(char_k); /* ch = 'K' * [all...] |
/external/chromium_org/chrome/browser/ui/app_list/search/ |
term_break_iterator.cc | 56 TermBreakIterator::State TermBreakIterator::GetNewState(char16 ch) { 57 if (IsAsciiDigit(ch) || ch == '.' || ch == ',') 60 const bool is_upper = !!u_isUUppercase(ch); 61 const bool is_lower = !!u_isULowercase(ch); 64 NOTREACHED() << "Invalid state for ch=" << ch;
|
/external/icu4c/samples/datefmt/ |
util.cpp | 37 UChar ch = source[i]; local 38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) { 40 appendHex(ch, 4, target); 42 target += ch;
|
/external/icu4c/samples/msgfmt/ |
util.cpp | 37 UChar ch = source[i]; local 38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) { 40 appendHex(ch, 4, target); 42 target += ch;
|
/external/icu4c/samples/translit/ |
util.cpp | 37 UChar ch = source[i]; local 38 if (ch < 0x09 || (ch > 0x0A && ch < 0x20) || ch > 0x7E) { 40 appendHex(ch, 4, target); 42 target += ch;
|