/external/tremolo/Tremolo/ |
res012.c | 104 ogg_int32_t **in,int *nonzero,int ch){ 122 for(i=0;i<ch;i++) 125 ch=used; 129 char **partword=(char **)alloca(ch*sizeof(*partword)); 130 for(j=0;j<ch;j++) 144 for(j=1;j<ch;j++) 148 for(j=0;j<ch;j++){ 165 for(j=0;j<ch;j++){ 186 int max=(pcmend*ch)>>1; 196 int beginoff=info->begin/ch; [all...] |
/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
SmartDialNameMatcher.java | 108 char ch = number.charAt(i); local 109 if (map.isValidDialpadNumericChar(ch)) { 110 s.append(ch); 206 char ch = phoneNumber.charAt(i); local 207 if (mMap.isValidDialpadNumericChar(ch)) { 208 if (ch != query.charAt(queryAt)) { 296 char ch = displayName.charAt(nameStart); local 298 ch = mMap.normalizeCharacter(ch); 299 if (mMap.isValidDialpadCharacter(ch)) { [all...] |
/external/ant-glob/src/org/apache/tools/ant/types/selectors/ |
SelectorUtils.java | 368 char ch; local 384 ch = patArr[i]; 385 if (ch != '?') { 386 if (different(caseSensitive, ch, strArr[i])) { 400 ch = patArr[patIdxStart]; 401 if (ch == '*' || strIdxStart > strIdxEnd) { 404 if (ch != '?') { 405 if (different(caseSensitive, ch, strArr[strIdxStart])) { 420 ch = patArr[patIdxEnd]; 421 if (ch == '*' || strIdxStart > strIdxEnd) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToStream.java | 940 protected boolean escapingNotNeeded(char ch) 943 if (ch < 127) 947 if (ch >= CharInfo.S_SPACE || (CharInfo.S_LINEFEED == ch || 1525 char ch = chars[i]; local 2109 char ch = stringChars[i]; local 3166 char ch[] = sb.toString().toCharArray(); local [all...] |
EncodingInfo.java | 30 * isInEncoding(char ch); 99 * @param ch the char in question. 104 public boolean isInEncoding(char ch) { 113 return m_encoding.isInEncoding(ch); 172 public boolean isInEncoding(char ch); 373 // needing to call inEncoding(char ch, String encoding) 378 // inEncoding(char ch, String encoding) 418 * @param ch the char in question, that is not a high char of 425 private static boolean inEncoding(char ch, String encoding) { 429 cArray[0] = ch; [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/ |
HtmlParser.java | 324 char ch = html.charAt(pos); local 325 if (ch == '<' && pos + 1 < end) { 327 ch = html.charAt(pos + 1); 328 if (ch == '/' || Character.isLetter(ch) || ch == '!' || ch == '?') { 405 char ch = html.charAt(pos); local 408 if ((ch == '>') || (ch == '/') || Character.isWhitespace(ch)) 481 char ch = html.charAt(pos); local 521 char ch = html.charAt(pos); local 702 char ch = html.charAt(pos); local [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlParser.java | 324 char ch = html.charAt(pos); local 325 if (ch == '<' && pos + 1 < end) { 327 ch = html.charAt(pos + 1); 328 if (ch == '/' || Character.isLetter(ch) || ch == '!' || ch == '?') { 405 char ch = html.charAt(pos); local 408 if ((ch == '>') || (ch == '/') || Character.isWhitespace(ch)) 481 char ch = html.charAt(pos); local 521 char ch = html.charAt(pos); local 702 char ch = html.charAt(pos); local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bio/ |
b_print.c | 178 char ch; local 192 ch = *format++; 195 if (ch == '\0' || (buffer == NULL && currlen >= *maxlen)) 200 if (ch == '%') 203 doapr_outch(sbuffer,buffer, &currlen, maxlen, ch); 204 ch = *format++; 207 switch (ch) { 210 ch = *format++; 214 ch = *format++; 218 ch = *format++ [all...] |
/external/openssl/crypto/bio/ |
b_print.c | 178 char ch; local 192 ch = *format++; 195 if (ch == '\0' || (buffer == NULL && currlen >= *maxlen)) 200 if (ch == '%') 203 doapr_outch(sbuffer,buffer, &currlen, maxlen, ch); 204 ch = *format++; 207 switch (ch) { 210 ch = *format++; 214 ch = *format++; 218 ch = *format++ [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
UnicodeRange.cpp | 430 unsigned int findCharUnicodeRange(UChar32 ch) 432 if (ch >= 0xFFFF) 438 range = gUnicodeSubrangeTable[0][ch >> 12]; 445 range = gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x0f00) >> 8]; 449 return gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x00f0) >> 4]; 452 return gUnicodeTertiaryRangeTable[(ch - 0x0700) >> 7];
|
/external/chromium_org/third_party/icu/source/io/ |
ustream.cpp | 94 char ch; local 101 ch = stream.get(); 109 sLimit = &ch + (int)continueReading; 111 s = &ch; 133 buffer[idx++] = ch; 158 buffer[idx++] = ch;
|
/external/icu4c/io/ |
ustream.cpp | 90 char ch; local 97 ch = stream.get(); 105 sLimit = &ch + (int)continueReading; 107 s = &ch; 129 buffer[idx++] = ch; 154 buffer[idx++] = ch;
|
/external/oprofile/libutil++/ |
string_manip.cpp | 23 string erase_to_last_of(string const & str, char ch) 26 string::size_type pos = result.find_last_of(ch); 60 char ch = str[pos]; local 61 if (ch == '\\') { 68 } else if (ch == sep) { 73 next += ch;
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/ |
echo_client.py | 221 ch = self._skip_spaces() 223 value = self._read_value(ch) 225 ch = _receive_bytes(self._socket, 1) 226 if ch != '\n': # 0x0A 229 'header %r' % (ch, value, name)) 245 ch = _receive_bytes(self._socket, 1) 246 if ch == '\r': # 0x0D 248 elif ch == '\n': # 0x0A 251 elif ch == ':': # 0x3A 253 elif ch >= 'A' and ch <= 'Z': # Range 0x31 to 0x5 [all...] |
/external/openssh/openbsd-compat/ |
bsd-snprintf.c | 192 char ch; local 209 ch = *format++; 212 if (ch == '\0') 217 if (ch == '%') 220 DOPR_OUTCH(buffer, currlen, maxlen, ch); 221 ch = *format++; 224 switch (ch) { 227 ch = *format++; 231 ch = *format++; 235 ch = *format++ [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
HTMLScanner.java | 330 int ch = r.read(); local 333 if (ch >= 0x80 && ch <= 0x9F) ch = theWinMap[ch-0x80]; 335 if (ch == '\r') { 336 ch = r.read(); // expect LF next 337 if (ch != '\n') { 338 unread(r, ch); // nope 339 ch = '\n' [all...] |
/external/aac/libAACdec/src/ |
aacdecoder.cpp | 772 int ch; local 777 for (ch=0; ch<(6); ch++) { 778 if (self->pAacDecoderStaticChannelInfo[ch] != NULL) { 779 if (self->pAacDecoderStaticChannelInfo[ch]->pOverlapBuffer != NULL) { 780 FreeOverlapBuffer (&self->pAacDecoderStaticChannelInfo[ch]->pOverlapBuffer); 782 if (self->pAacDecoderStaticChannelInfo[ch] != NULL) { 783 FreeAacDecoderStaticChannelInfo (&self->pAacDecoderStaticChannelInfo[ch]); 786 if (self->pAacDecoderChannelInfo[ch] != NULL) 818 INT ascChannels, ch, ascChanged = 0; local 1118 int ch; local 1157 int ch; local 1222 int ch; local [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/ |
BitmapFontLoader.java | 120 BitmapCharacter ch = null; local 125 ch = new BitmapCharacter(); 126 charSet.addCharacter(index, ch); 128 ch.setX(Integer.parseInt(tokens[i + 1])); 130 ch.setY(Integer.parseInt(tokens[i + 1])); 132 ch.setWidth(Integer.parseInt(tokens[i + 1])); 134 ch.setHeight(Integer.parseInt(tokens[i + 1])); 136 ch.setXOffset(Integer.parseInt(tokens[i + 1])); 138 ch.setYOffset(Integer.parseInt(tokens[i + 1])); 140 ch.setXAdvance(Integer.parseInt(tokens[i + 1])) 161 BitmapCharacter ch = charSet.getCharacter(index); local [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardParserImpl_V30.java | 227 final char ch = paramValue.charAt(i); local 228 if (ch == '"') { 249 } else if (ch == ',' && !insideDquote) { 263 builder.append(ch); 358 char ch = text.charAt(i); local 359 if (ch == '\\' && i < length - 1) { 367 builder.append(ch); 374 protected String maybeUnescapeCharacter(final char ch) { 375 return unescapeCharacter(ch); 378 public static String unescapeCharacter(final char ch) { [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PhotoFallbackEffect.java | 110 float ch = s.height() * scale; local 115 mTarget.set(cx - ch / 2, cy - ch / 2, cx + ch / 2, cy + ch / 2); 123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2); 128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2) [all...] |
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/ |
RealmChoiceCallbackTest.java | 117 String [] ch = rCCB.getChoices(); local 118 assertEquals("Incorrect choices length", ch.length, choices.length); 119 for (int j = 0; j < ch.length; j++) { 120 assertEquals("Incorrect choice number: " + j, ch[j], choices[j]); 157 String[] ch = rCCB.getChoices(); local 158 assertEquals("Incorrect choices length", ch.length, choices.length); 159 for (int j = 0; j < ch.length; j++) { 160 assertEquals("Incorrect choice number: " + j, ch[j], choices[j]);
|
/external/chromium_org/content/test/plugin/ |
plugin_test.cc | 58 const char ch = sIn.at(idx); local 59 if (isalnum(ch)) { 60 sOut.append(1, ch); 61 } else if (isspace(ch) && ((ch != '\n') && (ch != '\r'))) { 65 sOut.append(1, toHex(ch>>4)); 66 sOut.append(1, toHex(ch%16));
|
/external/chromium_org/media/base/ |
audio_bus_unittest.cc | 47 for (int ch = 0; ch < result->channels(); ++ch) { 49 SCOPED_TRACE(base::StringPrintf("ch=%d, i=%d", ch, i)); 51 ASSERT_FLOAT_EQ(expected->channel(ch)[i], result->channel(ch)[i]); 53 ASSERT_NEAR(expected->channel(ch)[i], result->channel(ch)[i], 268 for (int ch = 0; ch < kTestVectorChannels; ++ch) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLTableSectionElement.idl | 23 [Reflect=char] attribute DOMString ch;
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2_tokenizer1.c | 79 unsigned char ch = argv[1][i]; local 81 if( ch>=0x80 ){ 85 t->delim[ch] = 1; 193 unsigned char ch = p[iStartOffset+i]; local 194 c->pToken[i] = (ch>='A' && ch<='Z') ? (ch - 'A' + 'a') : ch;
|