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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Utils.java 38 char ch= str.charAt(i); local
39 if (!(ch== 0x20
40 || ch>= 0x27 && ch<= 0x29 // '()
41 || ch>= 0x2B && ch<= 0x3A // +,-./0-9:
42 || ch== '='
43 || ch== '?'
44 || ch>= 'A' && ch<= 'Z
    [all...]
  /frameworks/base/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...]
  /external/qemu/distrib/sdl-1.2.12/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);
aica.c 17 #define CHNREGADDR(ch,x) SNDREGADDR(0x80*(ch)+(x))
22 #define CHNREG32(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
23 #define CHNREG8(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
139 ch is the channel to play on (0 - 63)
151 void aica_play(int ch,int mode,unsigned long smpptr,int loopst,int loopend,int freq,int vol,int pan,int loopflag) {
158 aica_stop(ch);
175 CHNREG32(ch, 8) = loopst & 0xffff
    [all...]
  /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;
  /bootable/bootloader/legacy/include/msm7k/
dmov.h 36 #define DMOV_SD0(off, ch) (MSM_DMOV_BASE + 0x0000 + (off) + ((ch) << 2))
37 #define DMOV_SD1(off, ch) (MSM_DMOV_BASE + 0x0400 + (off) + ((ch) << 2))
38 #define DMOV_SD2(off, ch) (MSM_DMOV_BASE + 0x0800 + (off) + ((ch) << 2))
39 #define DMOV_SD3(off, ch) (MSM_DMOV_BASE + 0x0C00 + (off) + ((ch) << 2))
47 #define DMOV_CMD_PTR(ch) DMOV_SD3(0x000, ch)
    [all...]
  /bionic/libc/string/
index.c 34 index(const char *p, int ch)
37 if (*p == ch)
strchr.c 34 strchr(const char *p, int ch)
37 if (*p == ch)
memccpy.c 36 char ch = ~(char)c; /* ensure ch != c */ local
39 if (ch == c || p >= p_end) break;
40 *q++ = ch = *p++;
43 if (p >= p_end && ch != c)
strrchr.c 34 strrchr(const char *p, int ch)
39 if (*p == ch)
  /external/chromium/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];
  /libcore/luni/src/main/java/java/net/
URIEncoderDecoder.java 50 char ch = s.charAt(i); local
51 if (ch == '%') {
68 if (!((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')
69 || (ch >= '0' && ch <= '9') || legal.indexOf(ch) > -1 || (ch > 12
81 char ch = s.charAt(i); local
113 char ch = s.charAt(i); local
149 char ch = s.charAt(i); local
    [all...]
URLEncoder.java 55 char ch = s.charAt(i); local
56 if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')
57 || (ch >= '0' && ch <= '9') || ".-*_".indexOf(ch) > -1) {
58 buf.append(ch);
59 } else if (ch == ' ')
101 char ch = s.charAt(i); local
    [all...]
  /external/chromium/third_party/icu/source/common/
ustrtrns.c 42 UChar32 ch; local
70 while((ch=*src) != 0 &&
71 ((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))) {
74 *pDest++ = (UChar)ch;
80 if(ch != 0) {
90 ch = *src++;
93 if((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))
155 UChar32 ch; local
402 UChar32 ch; local
743 UChar32 ch; local
982 uint32_t ch=0,ch2=0; local
    [all...]
  /external/icu4c/common/
ustrtrns.c 42 UChar32 ch; local
71 while((ch=*src) != 0 &&
72 ((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))) {
75 *pDest++ = (UChar)ch;
81 if(ch != 0) {
91 ch = *src++;
94 if((uint32_t)ch < 0xd800 || (0xe000 <= ch && ch <= 0xffff))
156 UChar32 ch; local
403 UChar32 ch; local
739 UChar32 ch; local
979 uint32_t ch=0,ch2=0; local
1259 UChar32 ch; local
1510 uint32_t ch=0,ch2=0; local
    [all...]
  /external/sqlite/android/
PhoneNumberUtils.cpp 75 * Returns interger corresponding to the input if input "ch" is
79 static int tryGetISODigit (char ch)
81 if ('0' <= ch && ch <= '9') {
82 return ch - '0';
89 * True if ch is ISO-LATIN characters 0-9, *, # , +
92 static bool isDialable(char ch)
94 return ('0' <= ch && ch <= '9') || ch == '*' || ch == '#' || ch == '+'
118 char ch = str[i]; local
154 char ch = str[i]; local
    [all...]
  /external/chromium/googleurl/src/
url_file.h 43 inline bool IsWindowsDriveSeparator(char16 ch) {
44 return ch == ':' || ch == '|';
46 inline bool IsWindowsDriveLetter(char16 ch) {
47 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
  /external/chromium/third_party/icu/source/test/intltest/
nptrans.h 52 inline UBool isProhibited(UChar32 ch);
121 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
124 inline UBool isLDHChar(UChar32 ch);
133 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){
135 if(ch>0x007A){
139 if( (ch==0x002D) ||
140 (0x0030 <= ch && ch <= 0x0039) ||
141 (0x0041 <= ch && ch <= 0x005A) |
    [all...]
  /external/icu4c/test/intltest/
nptrans.h 52 inline UBool isProhibited(UChar32 ch);
121 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
124 inline UBool isLDHChar(UChar32 ch);
133 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){
135 if(ch>0x007A){
139 if( (ch==0x002D) ||
140 (0x0030 <= ch && ch <= 0x0039) ||
141 (0x0041 <= ch && ch <= 0x005A) |
    [all...]
  /external/webkit/WebCore/rendering/
break_lines.cpp 38 static inline bool isBreakableSpace(UChar ch, bool treatNoBreakSpaceAsBreak)
40 switch (ch) {
67 static inline bool shouldBreakAfter(UChar ch, UChar nextCh)
69 switch (ch) {
92 static inline bool needsLineBreakIterator(UChar ch)
94 return ch > 0x7F && ch != noBreakSpace;
115 UChar ch = str[i]; local
117 if (isBreakableSpace(ch, treatNoBreakSpaceAsBreak) || shouldBreakAfter(lastCh, ch))
    [all...]
  /external/e2fsprogs/e2fsck/
argv_parse.c 48 char **argv, **new_argv, *buf, ch; local
58 for (cp = in_buf; (ch = *cp); cp++) {
60 if (isspace((int) ch))
78 if (ch == '"')
81 *outcp++ = ch;
85 if (isspace((int) ch)) {
94 if (ch == '"') {
98 if (ch == '\\') {
99 ch = *++cp;
100 switch (ch) {
    [all...]

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>