/packages/apps/Dialer/src/com/android/dialer/dialpad/ |
LatinSmartDialMap.java | 17 public boolean isValidDialpadAlphabeticChar(char ch) { 18 return (ch >= 'a' && ch <= 'z'); 22 public boolean isValidDialpadNumericChar(char ch) { 23 return (ch >= '0' && ch <= '9'); 27 public boolean isValidDialpadCharacter(char ch) { 28 return (isValidDialpadAlphabeticChar(ch) || isValidDialpadNumericChar(ch)); 49 public char normalizeCharacter(char ch) { [all...] |
SmartDialMap.java | 16 public boolean isValidDialpadCharacter(char ch); 21 public boolean isValidDialpadAlphabeticChar(char ch); 26 public boolean isValidDialpadNumericChar(char ch); 31 public byte getDialpadIndex(char ch); 36 public char getDialpadNumericCharacter(char ch); 42 public char normalizeCharacter(char ch);
|
/external/clang/test/SemaCXX/ |
prefetch-enum.cpp | 8 char ch; local 9 __builtin_prefetch(&ch, 0, A);
|
builtins-va_arg.cpp | 15 char ch; local 18 ch = *fmt++; 19 if (ch != '%') { 23 ch = *fmt++; 24 switch (ch) { 39 if (ch == '0') {
|
/libcore/benchmarks/src/benchmarks/regression/ |
CharacterBenchmark.java | 62 for (int ch = 0; ch < 65536; ++ch) { 63 dummy ^= ((char) ch == ' '); 68 for (int ch = 0; ch < 65536; ++ch) { 69 dummy ^= (ch == ' '); 79 for (int ch = 0; ch < 65536; ++ch) [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_get_side_info.cpp | 119 int32 ch, gr; local 140 for (ch = 0; ch < stereo; ch++) 143 si->ch[ch].scfsi[0] = (tmp << 28) >> 31; /* 1 */ 144 si->ch[ch].scfsi[1] = (tmp << 29) >> 31; /* 1 */ 145 si->ch[ch].scfsi[2] = (tmp << 30) >> 31; /* 1 * [all...] |
/bionic/libm/ |
digittoint.c | 32 __LIBC_HIDDEN__ int digittoint(char ch) { 33 int d = ch - '0'; 37 d = ch - 'a'; 41 d = ch - 'A';
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
ProxyData.java | 5 package ch.ethz.ssh2;
|
ConnectionMonitor.java | 5 package ch.ethz.ssh2;
|
/bionic/libc/bionic/ |
strchr.cpp | 32 extern "C" char* strchr(const char* p, int ch) { 33 return __strchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
|
/bionic/libc/string/ |
strrchr.c | 34 strrchr(const char *p, int ch) 36 return __strrchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
|
index.c | 34 index(const char *p, int ch) 37 if (*p == (char) ch)
|
/external/qemu/distrib/sdl-1.2.15/src/audio/dc/ |
aica.h | 33 void aica_play(int ch,int mode,unsigned long smpptr,int looptst,int loopend,int freq,int vol,int pan,int loopflag); 34 void aica_stop(int ch); 35 void aica_vol(int ch,int vol); 36 void aica_pan(int ch,int pan); 37 void aica_freq(int ch,int freq); 38 int aica_get_pos(int ch);
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
Base64Util.java | 75 final char ch = this.alphabet[i];
local 76 if (ch >= 128)
77 throw new IllegalArgumentException("invalid character in alphabet: " + ch);
78 inverseAlphabet[ch] = i;
86 * @param ch The character, as a ASCII encoded byte
90 int getSextet(final byte ch) {
91 if (ch >= 128)
93 return inverseAlphabet[ch];
99 * @param ch The character
100 * @return true if the alphabet contains <code>ch</code>, false otherwise [all...] |
ModifiedUTF7Charset.java | 44 boolean canEncodeDirectly(char ch) {
45 if (ch == shift())
47 return ch >= 0x20 && ch <= 0x7E;
|
/external/aac/libAACenc/src/ |
psy_main.cpp | 250 int i, ch, n, chInc = 0, resetChannels = 3; local 262 for (ch=0; ch<cm->elInfo[i].nChannelsInEl; ch++) { 264 hPsy->psyElement[i]->psyStatic[ch] = hPsy->pStaticChannels[chInc]; 266 FDKaacEnc_psyInitStates(hPsy, hPsy->psyElement[i]->psyStatic[ch], audioObjectType); 268 hPsy->psyElement[i]->psyStatic[ch]->isLFE = 0; 271 hPsy->psyElement[i]->psyStatic[ch] = hPsy->pStaticChannels[nMaxChannels-1]; 272 hPsy->psyElement[i]->psyStatic[ch]->isLFE = 1; 281 for (ch=0; ch<cm->elInfo[i].nChannelsInEl; ch++) 313 int i, ch; local 453 INT ch; \/* counts through channels *\/ local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
nomem64-err2.asm | 3 mov r8b, ch
|
/external/chromium_org/third_party/icu/source/test/perf/charperf/ |
charperf.h | 19 typedef void (*CharPerfFn)(UChar32 ch); 20 typedef void (*StdLibCharPerfFn)(wchar_t ch); 119 inline void isAlpha(UChar32 ch) 121 u_isalpha(ch); 124 inline void isUpper(UChar32 ch) 126 u_isupper(ch); 129 inline void isLower(UChar32 ch) 131 u_islower(ch); 134 inline void isDigit(UChar32 ch) 136 u_isdigit(ch); [all...] |
/external/icu4c/test/perf/charperf/ |
charperf.h | 19 typedef void (*CharPerfFn)(UChar32 ch); 20 typedef void (*StdLibCharPerfFn)(wchar_t ch); 119 inline void isAlpha(UChar32 ch) 121 u_isalpha(ch); 124 inline void isUpper(UChar32 ch) 126 u_isupper(ch); 129 inline void isLower(UChar32 ch) 131 u_islower(ch); 134 inline void isDigit(UChar32 ch) 136 u_isdigit(ch); [all...] |
/external/nist-sip/java/gov/nist/core/ |
StringTokenizer.java | 75 public static boolean isHexDigit(char ch) { 76 return (ch >= 'A' && ch <= 'F') || 77 (ch >= 'a' && ch <= 'f') || 78 isDigit(ch); 81 public static boolean isAlpha(char ch) { 82 if (ch <= 127) { 83 return ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')) [all...] |
/external/e2fsprogs/lib/et/ |
et_name.c | 26 int ch; local 37 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1)); 38 if (ch != 0) 39 *p++ = char_set[ch-1];
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
IChannelWorkerThread.java | 5 package ch.ethz.ssh2.channel;
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/ |
NegotiateException.java | 5 package ch.ethz.ssh2.transport;
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
TestCommon.h | 45 inline bool isASCIIAlpha(char ch) { return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z'; } 47 inline bool isNotASCIIAlpha(char ch) { return !isASCIIAlpha(ch); }
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
FixASCIIControlsReader.java | 109 * @param ch a char 112 private char processChar(char ch) 117 if (ch == '&') 121 return ch; 124 if (ch == '#') 132 return ch; 135 if (ch == 'x') 141 else if ('0' <= ch && ch <= '9') 143 control = Character.digit(ch, 10) [all...] |