HomeSort by relevance Sort by last modified time
    Searched refs:ch (Results 1 - 25 of 2086) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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/lldb/test/python_api/frame/
main.c 17 int a(int val, char ch)
20 char my_ch = ch;
21 printf("a(val=%d, ch='%c')\n", val, ch);
23 return b(val+1, ch+1);
25 return c(val+1, ch+1);
30 int b(int val, char ch)
33 char my_ch = ch;
34 printf("b(val=%d, ch='%c')\n", val, ch);
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
TestCommon.h 19 inline bool isASCIIAlpha(char ch) { return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z'; }
21 inline bool isNotASCIIAlpha(char ch) { return !isASCIIAlpha(ch); }
  /external/libpng/contrib/arm-neon/
linux.c 45 int ch = fgetc(f); local
47 if (ch == EOF)
60 if (ch <= 32) /* skip control characters and space */
69 if ((ch & ~0x20) == ch_feature[counter])
83 if (ch != 10 && ch != 13)
91 if (ch == 32 || ch == 9)
94 if (ch == 58) /* i.e. ':' */
108 if (ch == 32 || ch == 9
    [all...]
  /bionic/libc/bionic/
strchr.cpp 33 char* strchr(const char* p, int ch) {
34 return __strchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
strrchr.cpp 33 char* strrchr(const char* p, int ch) {
34 return __strrchr_chk(p, ch, __BIONIC_FORTIFY_UNKNOWN_SIZE);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.h 54 // 4) vector (e.f. T type[256] .. return type[ch] ...
57 #define isPdfWhiteSpace(ch) (((ch)==kNUL_PdfWhiteSpace)|| \
58 ((ch)==kHT_PdfWhiteSpace)|| \
59 ((ch)==kLF_PdfWhiteSpace)|| \
60 ((ch)==kFF_PdfWhiteSpace)|| \
61 ((ch)==kCR_PdfWhiteSpace)|| \
62 ((ch)==kSP_PdfWhiteSpace))
64 #define isPdfEOL(ch) (((ch)==kLF_PdfWhiteSpace)||((ch)==kCR_PdfWhiteSpace)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64-err2.asm 3 mov r8b, ch
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.h 54 // 4) vector (e.f. T type[256] .. return type[ch] ...
57 #define isPdfWhiteSpace(ch) (((ch)==kNUL_PdfWhiteSpace)|| \
58 ((ch)==kHT_PdfWhiteSpace)|| \
59 ((ch)==kLF_PdfWhiteSpace)|| \
60 ((ch)==kFF_PdfWhiteSpace)|| \
61 ((ch)==kCR_PdfWhiteSpace)|| \
62 ((ch)==kSP_PdfWhiteSpace))
64 #define isPdfEOL(ch) (((ch)==kLF_PdfWhiteSpace)||((ch)==kCR_PdfWhiteSpace)
    [all...]
  /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/icu/icu4c/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/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 25 int ch; local
36 ch = (int)((num >> BITS_PER_CHAR * i) & ((1 << BITS_PER_CHAR) - 1));
37 if (ch != 0)
38 *p++ = char_set[ch-1];
  /external/freetype/src/autofit/
afblue.hin 28 #define GET_UTF8_CHAR( ch, p ) \
29 ch = (unsigned char)*p++; \
30 if ( ch >= 0x80 ) \
35 if ( ch < 0xE0 ) \
38 ch &= 0x1F; \
40 else if ( ch < 0xF0 ) \
43 ch &= 0x0F; \
48 ch &= 0x07; \
52 ch = ( ch << 6 ) | ( *p++ & 0x3F );
    [all...]
  /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...]

Completed in 633 milliseconds

1 2 3 4 5 6 7 8 91011>>