/external/qemu/distrib/sdl-1.2.12/src/stdlib/ |
SDL_iconv.c | 215 Uint32 ch = 0; local 309 ch = (Uint32)(p[0] & 0x7F); 317 ch = (Uint32)p[0]; 332 ch = UNKNOWN_UNICODE; 337 ch = (Uint32)(p[0] & 0x01); 345 ch = UNKNOWN_UNICODE; 350 ch = (Uint32)(p[0] & 0x03); 358 ch = UNKNOWN_UNICODE; 363 ch = (Uint32)(p[0] & 0x07); 371 ch = UNKNOWN_UNICODE [all...] |
/external/webkit/JavaScriptCore/wtf/unicode/ |
UTF8.cpp | 131 UChar32 ch; local 136 ch = static_cast<unsigned short>(*source++); 138 if (ch >= 0xD800 && ch <= 0xDBFF) { 144 ch = ((ch - 0xD800) << 10) + (ch2 - 0xDC00) + 0x0010000; 158 if (ch >= 0xDC00 && ch <= 0xDFFF) { 165 if (ch < (UChar32)0x80) { 167 } else if (ch < (UChar32)0x800) 242 UChar32 ch = 0; local [all...] |
/external/apache-http/src/org/apache/http/message/ |
BasicTokenIterator.java | 242 final char ch = this.currentHeader.charAt(from); local 243 if (isTokenSeparator(ch) || isWhitespace(ch)) { 295 final char ch = this.currentHeader.charAt(from); local 296 if (isTokenSeparator(ch)) { 298 } else if (isWhitespace(ch)) { 300 } else if (isTokenChar(ch)) { 348 * @param ch the character to check 353 protected boolean isTokenSeparator(char ch) { 354 return (ch == ',') [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/ |
SDL_riscosevents.c | 436 int ch; local 442 ch = keysym->sym; /* This should handle most unshifted keys */ 444 if (intkey < 9 || ch == SDLK_UNKNOWN) 446 ch = 0; 450 ch = ch & 31; 462 if (ch >= SDLK_a && ch <= SDLK_z) 481 if (ch >= SDLK_a && ch <= SDLK_z) ch = toupper(ch) [all...] |
/external/dropbear/libtommath/ |
bn_mp_fread.c | 21 int err, ch, neg, y; local 27 ch = fgetc(stream); 28 if (ch == '-') { 30 ch = fgetc(stream); 38 if (mp_s_rmap[y] == ch) { 54 ch = fgetc(stream);
|
/external/bluetooth/bluez/sbc/ |
sbc.c | 6 * Copyright (C) 2004-2005 Henryk Ploetz <henryk@ploetzli.ch> 168 int ch, sb; local 170 for (ch = 0; ch < frame->channels; ch++) { 174 bitneed[ch][sb] = frame->scale_factor[ch][sb]; 175 if (bitneed[ch][sb] > max_bitneed) 176 max_bitneed = bitneed[ch][sb]; 180 if (frame->scale_factor[ch][sb] == 0 248 int ch, sb; local 373 int ch, sb, blk, bit; \/* channel, subband, block and bit standard local 527 int i, ch; local 638 int ch, blk; local 663 int ch, blk; local 760 int ch, sb, blk; \/* channel, subband, block and bit counters *\/ local 996 int i, ch, framelen, samples; local [all...] |
/external/sqlite/android/ |
PhoneticStringUtilsTest.cpp | 131 for (const char *ch = string; *ch != '\0'; ++ch) { \ 132 printf("0x%X ", *ch); \ 135 for (const char *ch = expected; *ch != '\0'; ++ch) { \ 136 printf("0x%X ", *ch); \ 167 for (const char *ch = dst; *ch != '\0'; ++ch) { [all...] |
/dalvik/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; 164 char ch = buffer[offset + i]; local 165 if (ch == '\r') { 168 } else if (ch == '\n') {
|
/external/jpeg/ |
rdswitch.c | 25 register int ch; local 27 ch = getc(file); 28 if (ch == '#') { 30 ch = getc(file); 31 } while (ch != '\n' && ch != EOF); 33 return ch; 42 register int ch; local 47 ch = text_getc(file); 48 if (ch == EOF) 134 register int ch; local 274 char ch; local [all...] |
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/icu4c/layout/ |
IndicReordering.h | 102 CharClass getCharClass(LEUnicode ch) const; 106 inline le_bool isVowelModifier(LEUnicode ch) const; 107 inline le_bool isStressMark(LEUnicode ch) const; 108 inline le_bool isConsonant(LEUnicode ch) const; 109 inline le_bool isReph(LEUnicode ch) const; 110 inline le_bool isVirama(LEUnicode ch) const; 111 inline le_bool isAlLakuna(LEUnicode ch) const; 112 inline le_bool isNukta(LEUnicode ch) const; 113 inline le_bool isVattu(LEUnicode ch) const; 114 inline le_bool isMatra(LEUnicode ch) const [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...] |
/dalvik/libcore/xml/src/test/java/org/kxml2/io/ |
KXmlSerializerTest.java | 50 for (int ch = 0; ch <= 0xffff; ++ch) { 51 final String s = Character.toString((char) ch); 52 if (isValidXmlCodePoint(ch)) { 68 for (int ch = 0; ch <= 0xffff; ++ch) { 69 final String s = Character.toString((char) ch); 70 if (isValidXmlCodePoint(ch)) { [all...] |
/external/opencore/codecs_v2/audio/sbc/enc/src/ |
sbcenc_allocation.cpp | 81 Int ch, sb, tmp1, tmp2, tmp3, tmp4; local 86 for (ch = 0; ch < sbc->channels; ch++) 88 ptr1 = &bitneed[ch][0]; 89 ptr2 = &sbc->scale_factor[ch][0]; 110 if (sbc->scale_factor[ch][sb] == 0) 112 bitneed[ch][sb] = -5; 118 loudness = sbc->scale_factor[ch][sb] - sbc_offset4[sf][sb]; 122 loudness = sbc->scale_factor[ch][sb] - sbc_offset8[sf][sb] 221 Int ch, sb, tmp1, tmp2, tmp3, tmp4, tmp; local [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameEntryConverter.java | 102 char ch = str.charAt(i); local 109 if ('a' <= ch && ch <= 'z') 114 if ('A' <= ch && ch <= 'Z') 119 if ('0' <= ch && ch <= '9') 124 switch (ch)
|
/external/quake/quake/src/QW/client/ |
snd_mix.c | 258 void SND_PaintChannelFrom8 (channel_t *ch, sfxcache_t *sc, int endtime);
259 void SND_PaintChannelFrom16 (channel_t *ch, sfxcache_t *sc, int endtime);
265 channel_t *ch;
local 280 ch = channels;
281 for (i=0; i<total_channels ; i++, ch++)
283 if (!ch->sfx)
285 if (!ch->leftvol && !ch->rightvol)
287 sc = S_LoadSound (ch->sfx);
295 if (ch->end < end) [all...] |
/external/webkit/WebCore/platform/text/ |
TextBoundaries.h | 33 inline bool requiresContextForWordBoundary(UChar32 ch) 35 return WTF::Unicode::hasLineBreakingPropertyComplexContext(ch);
|
/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/icu4c/test/intltest/ |
testutil.cpp | 16 UnicodeString TestUtility::hex(UChar ch) { 18 buf.append(HEX[0xF&(ch>>12)]); 19 buf.append(HEX[0xF&(ch>>8)]); 20 buf.append(HEX[0xF&(ch>>4)]); 21 buf.append(HEX[0xF&ch]);
|
/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/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;
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapResponseParser.java | 89 int ch = mIn.peek(); local 90 if (ch == '*') { 93 } else if (ch == '+') { 179 int ch = mIn.peek(); local 180 if (ch == '(') { 182 } else if (ch == ')') { 185 } else if (ch == '[') { 187 } else if (ch == ']') { 190 } else if (ch == '"') { 192 } else if (ch == '{') 256 int ch; local 316 int ch; local [all...] |
/external/icu4c/common/ |
ucnv_u32.c | 52 uint32_t ch, i; local 59 ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/ 66 ch = 0; 70 ch = (ch << 8) | (uint8_t)(*mySource); 76 args->converter->toUnicodeStatus = ch + 1; 82 if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) { 84 if (ch <= MAXIMUM_UCS2) 132 uint32_t ch, i; local 217 UChar32 ch, ch2; local 319 UChar32 ch, ch2; local 514 uint32_t ch, i; local 600 uint32_t ch, i; local 695 UChar32 ch, ch2; local 805 UChar32 ch, ch2; local [all...] |