/external/aac/libAACenc/src/ |
adj_thr.cpp | 360 INT ch, sfb, sfbGrp; local 363 for (ch=0; ch<nChannels; ch++) { 364 for(sfbGrp = 0;sfbGrp < psyOutChannel[ch]->sfbCnt;sfbGrp+= psyOutChannel[ch]->sfbPerGroup) { 365 for (sfb=0; sfb<psyOutChannel[ch]->maxSfbPerGroup; sfb++) { 366 thrExpLdData = psyOutChannel[ch]->sfbThresholdLdData[sfbGrp+sfb]>>2 ; 367 thrExp[ch][sfbGrp+sfb] = CalcInvLdData(thrExpLdData); 383 INT ch, sfb, sfbGrp, nSfb local 438 INT ch, sfb, sfbGrp; local 594 INT ch; local 634 int ch, noShortWindowInFrame = TRUE; local 744 INT ch; local 781 int ch; local 814 INT ch, sfb,sfbGrp; local 853 INT ch, sfb, sfbGrp; local 955 INT ch, sfbGrp, sfb; local 1150 INT ch, sfb, sfbGrp; local 1327 INT ch; local 1433 INT ch, sfb, sfbGrp; local 1610 int ch, sfb, sfbGrp; local 2603 int ch,sfb,sfbGrp; local [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/ |
Charsets.java | 87 char ch = chars[i]; local 88 result[resultIndex++] = (byte) (ch >> 8); 89 result[resultIndex++] = (byte) ch; 98 * char ch = (char) (data[start++] & 0xff); 99 * value[i] = (ch <= 0x7f) ? ch : REPLACEMENT_CHAR; 109 char ch = (char) (bytes[start++] & 0xff); local 110 chars[i] = (ch <= 0x7f) ? ch : REPLACEMENT_CHAR;
|
/libcore/luni/src/main/java/java/text/ |
Format.java | 182 char ch = string.charAt(index++); local 183 if (ch == '\'') { 189 } else if (ch == stop && !quote) { 194 buffer.append(ch); 206 char ch = string.charAt(index++); local 207 if (ch == '\'') { 211 if (ch == stop) { 218 if (ch == start) { 222 buffer.append(ch);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/ |
textpad.py | 66 def _insert_printable_char(self, ch): 75 self.win.addch(ch) 84 def do_command(self, ch): 87 self.lastcmd = ch 88 if curses.ascii.isprint(ch): 90 self._insert_printable_char(ch) 91 elif ch == curses.ascii.SOH: # ^a 93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE): 102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE): 104 elif ch == curses.ascii.EOT: # ^ [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
textpad.py | 66 def _insert_printable_char(self, ch): 75 self.win.addch(ch) 84 def do_command(self, ch): 87 self.lastcmd = ch 88 if curses.ascii.isprint(ch): 90 self._insert_printable_char(ch) 91 elif ch == curses.ascii.SOH: # ^a 93 elif ch in (curses.ascii.STX,curses.KEY_LEFT, curses.ascii.BS,curses.KEY_BACKSPACE): 102 if ch in (curses.ascii.BS, curses.KEY_BACKSPACE): 104 elif ch == curses.ascii.EOT: # ^ [all...] |
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherOutputStreamTest.java | 39 CipherOutputStream ch = new CipherOutputStream((OutputStream) null) {}; local 41 new CipherOutputStream(ch, Cipher
|
/external/apache-http/src/org/apache/http/impl/conn/ |
Wire.java | 56 int ch; local 57 while ((ch = instream.read()) != -1) { 58 if (ch == 13) { 60 } else if (ch == 10) { 66 } else if ((ch < 32) || (ch > 127)) { 68 buffer.append(Integer.toHexString(ch)); 71 buffer.append((char) ch);
|
/external/bison/tests/ |
bison.in | 45 y.tab.[ch]
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableColElement.idl | 23 [Reflect=char] attribute DOMString ch;
|
/external/chromium_org/third_party/icu/source/common/ |
util_props.cpp | 148 UChar32 ch = str.char32At(p); local 150 if (u_isIDStart(ch)) { 151 buf.append(ch); 157 if (u_isIDPart(ch)) { 158 buf.append(ch); 163 p += UTF_CHAR_LENGTH(ch); 193 UChar32 ch = text.char32At(p); local 194 int32_t d = u_digit(ch, radix);
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
dbgutil.cpp | 117 char ch[256]; local 120 u_UCharsToChars(u, ch, len); 121 ch[len] = 0; /* include terminating \0 */ 122 return atoi(ch); 129 char ch[256]; local 132 u_UCharsToChars(u, ch, len); 133 ch[len] = 0; /* include terminating \0 */ 134 return atof(ch);
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
chvalid.h | 211 xmlIsBaseChar(unsigned int ch); 213 xmlIsBlank(unsigned int ch); 215 xmlIsChar(unsigned int ch); 217 xmlIsCombining(unsigned int ch); 219 xmlIsDigit(unsigned int ch); 221 xmlIsExtender(unsigned int ch); 223 xmlIsIdeographic(unsigned int ch); 225 xmlIsPubidChar(unsigned int ch);
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
a_mbstr.c | 382 int ch; local 384 ch = (int) value; 389 if((ch >= 'a') && (ch <= 'z')) return 1; 390 if((ch >= 'A') && (ch <= 'Z')) return 1; 391 if((ch >= '0') && (ch <= '9')) return 1; 392 if ((ch == ' ') || strchr("'()+,-./:=?", ch)) return 1 [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/ |
basemmap.c | 11 volatile char ch; variable 22 ch = *cur;
|
/external/ganymed-ssh2/examples/ |
SimpleVerifier.java | 5 import ch.ethz.ssh2.KnownHosts; 6 import ch.ethz.ssh2.ServerHostKeyVerifier;
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
PacketKexDhGexRequest.java | 5 package ch.ethz.ssh2.packets; 7 import ch.ethz.ssh2.DHGexParameters;
|
/external/icu4c/common/ |
util_props.cpp | 148 UChar32 ch = str.char32At(p); local 150 if (u_isIDStart(ch)) { 151 buf.append(ch); 157 if (u_isIDPart(ch)) { 158 buf.append(ch); 163 p += U16_LENGTH(ch); 193 UChar32 ch = text.char32At(p); local 194 int32_t d = u_digit(ch, radix);
|
/external/icu4c/tools/toolutil/ |
dbgutil.cpp | 117 char ch[256]; local 120 u_UCharsToChars(u, ch, len); 121 ch[len] = 0; /* include terminating \0 */ 122 return atoi(ch); 129 char ch[256]; local 132 u_UCharsToChars(u, ch, len); 133 ch[len] = 0; /* include terminating \0 */ 134 return atof(ch);
|
/external/libxml2/include/libxml/ |
chvalid.h | 211 xmlIsBaseChar(unsigned int ch); 213 xmlIsBlank(unsigned int ch); 215 xmlIsChar(unsigned int ch); 217 xmlIsCombining(unsigned int ch); 219 xmlIsDigit(unsigned int ch); 221 xmlIsExtender(unsigned int ch); 223 xmlIsIdeographic(unsigned int ch); 225 xmlIsPubidChar(unsigned int ch);
|
/external/openssl/crypto/asn1/ |
a_mbstr.c | 382 int ch; local 384 ch = (int) value; 389 if((ch >= 'a') && (ch <= 'z')) return 1; 390 if((ch >= 'A') && (ch <= 'Z')) return 1; 391 if((ch >= '0') && (ch <= '9')) return 1; 392 if ((ch == ' ') || strchr("'()+,-./:=?", ch)) return 1 [all...] |
/libcore/luni/src/main/java/java/util/regex/ |
Splitter.java | 45 char ch = re.charAt(0); local 46 if (len == 1 && METACHARACTERS.indexOf(ch) == -1) { 48 } else if (len == 2 && ch == '\\') { 51 ch = re.charAt(1); 52 if (METACHARACTERS.indexOf(ch) == -1) { 71 while (separatorCount + 1 != limit && (end = input.indexOf(ch, begin)) != -1) { 85 } while (input.charAt(begin - 1) == ch); 95 end = input.indexOf(ch, begin);
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherOutputStreamTest.java | 39 CipherOutputStream ch = new CipherOutputStream((OutputStream) null) {}; local 41 new CipherOutputStream(ch, Cipher
|
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 227 final int ch = readByte(); local 228 if (ch != end) { 229 mBufferReadUntil.append((char) ch); 259 final int ch = peek(); local 260 if (ch == '+') { // Continuation request 274 if (ch == '*') { 366 final int ch = peek(); local 369 if (ch == '(' || ch == ')' || ch == '{' || ch == ' ' | [all...] |
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/ |
AuthenticationManager.java | 5 package ch.ethz.ssh2.auth; 12 import ch.ethz.ssh2.InteractiveCallback; 13 import ch.ethz.ssh2.crypto.PEMDecoder; 14 import ch.ethz.ssh2.packets.PacketServiceAccept; 15 import ch.ethz.ssh2.packets.PacketServiceRequest; 16 import ch.ethz.ssh2.packets.PacketUserauthBanner; 17 import ch.ethz.ssh2.packets.PacketUserauthFailure; 18 import ch.ethz.ssh2.packets.PacketUserauthInfoRequest; 19 import ch.ethz.ssh2.packets.PacketUserauthInfoResponse; 20 import ch.ethz.ssh2.packets.PacketUserauthRequestInteractive [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
adj_thr.c | 74 Word16 ch, sfb, sfbGrp; local 76 for (ch=0; ch<nChannels; ch++) { 77 PSY_OUT_CHANNEL *psyOutChan = &psyOutChannel[ch]; 79 pthrExp = &(thrExp[ch][sfbGrp]); 99 Word16 ch, sfb, sfbOffs, shift; local 105 for (ch=0; ch<nChannels; ch++) 170 Word16 ch, sfb, sfbGrp, shift; local 335 Word16 ch, sfb, sfbGrp; local 375 Word16 ch, sfb, sfbGrp; local 422 Word16 ch, sfb, sfbGrp,shift; local 534 Word16 ch, sfb, sfbSubWin; local 586 Word16 ch, sfb; local 1144 Word16 ch; local [all...] |