Searched refs:ch (Results 26 - 50 of 1393) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/test/intltest/
H A Dnptrans.h52 inline UBool isProhibited(UChar32 ch);
114 UBool isLabelSeparator(UChar32 ch, UErrorCode& status);
116 inline UBool isLDHChar(UChar32 ch);
126 inline UBool NamePrepTransform::isLDHChar(UChar32 ch){ argument
128 if(ch>0x007A){
132 if( (ch==0x002D) ||
133 (0x0030 <= ch && ch <= 0x0039) ||
134 (0x0041 <= ch && ch <
[all...]
H A Dtestutil.cpp16 UnicodeString &TestUtility::appendHex(UnicodeString &buf, UChar32 ch) { argument
17 if (ch >= 0x10000) {
18 if (ch >= 0x100000) {
19 buf.append(HEX[0xF&(ch>>20)]);
21 buf.append(HEX[0xF&(ch>>16)]);
23 buf.append(HEX[0xF&(ch>>12)]);
24 buf.append(HEX[0xF&(ch>>8)]);
25 buf.append(HEX[0xF&(ch>>4)]);
26 buf.append(HEX[0xF&ch]);
30 UnicodeString TestUtility::hex(UChar32 ch) { argument
[all...]
/external/e2fsprogs/e2fsck/
H A Dargv_parse.c48 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...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtestutil.cpp16 UnicodeString &TestUtility::appendHex(UnicodeString &buf, UChar32 ch) { argument
17 if (ch >= 0x10000) {
18 if (ch >= 0x100000) {
19 buf.append(HEX[0xF&(ch>>20)]);
21 buf.append(HEX[0xF&(ch>>16)]);
23 buf.append(HEX[0xF&(ch>>12)]);
24 buf.append(HEX[0xF&(ch>>8)]);
25 buf.append(HEX[0xF&(ch>>4)]);
26 buf.append(HEX[0xF&ch]);
30 UnicodeString TestUtility::hex(UChar32 ch) { argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLCharacterRecognizer.java24 * Class used to verify whether the specified <var>ch</var>
32 * Returns whether the specified <var>ch</var> conforms to the XML 1.0 definition
35 * @param ch Character to check as XML whitespace.
36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false.
38 public static boolean isWhiteSpace(char ch) argument
40 return (ch == 0x20) || (ch == 0x09) || (ch == 0xD) || (ch == 0xA);
46 * @param ch Characte
52 isWhiteSpace(char ch[], int start, int length) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DMutf8.java69 char ch = s.charAt(i);
70 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
72 } else if (ch <= 2047) {
91 char ch = s.charAt(i);
92 if (ch != 0 && ch <= 127) { // U+0000 uses two bytes.
93 dst[offset++] = (byte) ch;
94 } else if (ch <= 2047) {
95 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >>
[all...]
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc118 unsigned char ch = static_cast<unsigned char>(filename_ending[index]); local
122 if ((ch == dir_separator) && !segment.empty()) {
128 if ((ch == '_') || (ch == '.') || (ch == '=') || (ch == '+') ||
129 (ch == '-') || (('0' <= ch) && (ch <= '9')) ||
130 (('A' <= ch)
183 char ch = encoded_filename[i]; local
261 char ch = path[index]; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_iconv.c215 Uint32 ch = 0; local
309 ch = (Uint32)(p[0] & 0x7F);
317 ch = (Uint32)p[0];
332 ch = UNKNOWN_UNICODE;
337 ch = (Uint32)(p[0] & 0x01);
345 ch = UNKNOWN_UNICODE;
350 ch = (Uint32)(p[0] & 0x03);
358 ch = UNKNOWN_UNICODE;
363 ch = (Uint32)(p[0] & 0x07);
371 ch
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java247 final char ch = this.currentHeader.charAt(from);
248 if (isTokenSeparator(ch) || isWhitespace(ch)) {
300 final char ch = this.currentHeader.charAt(from);
301 if (isTokenSeparator(ch)) {
303 } else if (isWhitespace(ch)) {
305 } else if (isTokenChar(ch)) {
353 * @param ch the character to check
358 protected boolean isTokenSeparator(char ch) { argument
359 return (ch
374 isWhitespace(char ch) argument
394 isTokenChar(char ch) argument
428 isHttpSeparator(char ch) argument
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Drdswitch.c28 register int ch; local
30 ch = getc(file);
31 if (ch == '#') {
33 ch = getc(file);
34 } while (ch != '\n' && ch != EOF);
36 return ch;
45 register int ch; local
50 ch = text_getc(file);
51 if (ch
146 register int ch; local
324 char ch; local
364 char ch; local
[all...]
/external/freetype/src/autofit/
H A Dafblue.h31 #define GET_UTF8_CHAR( ch, p ) \
32 ch = (unsigned char)*p++; \
33 if ( ch >= 0x80 ) \
38 if ( ch < 0xE0 ) \
41 ch &= 0x1F; \
43 else if ( ch < 0xF0 ) \
46 ch &= 0x0F; \
51 ch &= 0x07; \
55 ch = ( ch <<
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosevents.c436 int ch; local
442 ch = keysym->sym; /* This should handle most unshifted keys */
444 if (intkey < 9 || ch == SDLK_UNKNOWN)
446 ch = 0;
450 ch = ch & 31;
462 if (ch >= SDLK_a && ch <= SDLK_z)
481 if (ch >= SDLK_a && ch <
[all...]
/external/icu/icu4c/source/layout/
H A DIndicReordering.h105 CharClass getCharClass(LEUnicode ch) const;
109 inline le_bool isVowelModifier(LEUnicode ch) const;
110 inline le_bool isStressMark(LEUnicode ch) const;
111 inline le_bool isConsonant(LEUnicode ch) const;
112 inline le_bool isReph(LEUnicode ch) const;
113 inline le_bool isVirama(LEUnicode ch) const;
114 inline le_bool isAlLakuna(LEUnicode ch) const;
115 inline le_bool isNukta(LEUnicode ch) const;
116 inline le_bool isVattu(LEUnicode ch) const;
117 inline le_bool isMatra(LEUnicode ch) cons
[all...]
/external/chromium_org/media/base/
H A Daudio_hash.cc25 for (uint32 ch = 0; ch < static_cast<uint32>(audio_bus->channels()); ++ch) {
26 const float* channel = audio_bus->channel(ch);
30 (kSampleIndex * (ch + 1)) % arraysize(audio_hash_);
34 if (ch == 0) {
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dtest_hd.c35 int ch; local
49 while ((ch = fgetc(bfile)) != EOF)
50 printf("%02x \n", ch);
/external/pdfium/core/include/fxcrt/
H A Dfx_ext.h36 inline FX_BOOL FXSYS_islower(FX_INT32 ch) argument
38 return ch >= 'a' && ch <= 'z';
40 inline FX_BOOL FXSYS_isupper(FX_INT32 ch) argument
42 return ch >= 'A' && ch <= 'Z';
44 inline FX_INT32 FXSYS_tolower(FX_INT32 ch) argument
46 return ch < 'A' || ch > 'Z' ? ch
48 FXSYS_toupper(FX_INT32 ch) argument
[all...]
/external/jpeg/
H A Drdswitch.c25 register int ch; local
27 ch = getc(file);
28 if (ch == '#') {
30 ch = getc(file);
31 } while (ch != '\n' && ch != EOF);
33 return ch;
42 register int ch; local
47 ch = text_getc(file);
48 if (ch
134 register int ch; local
274 char ch; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Drdswitch.c25 register int ch; local
27 ch = getc(file);
28 if (ch == '#') {
30 ch = getc(file);
31 } while (ch != '\n' && ch != EOF);
33 return ch;
42 register int ch; local
47 ch = text_getc(file);
48 if (ch
134 register int ch; local
274 char ch; local
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DISO8601Converter.java95 input.ch(0) == 'T' ||
96 (input.length() >= 2 && input.ch(1) == ':' ||
97 (input.length() >= 3 && input.ch(2) == ':'));
101 if (input.ch(0) == '-')
109 if (input.hasNext() && input.ch() != '-')
114 if (input.ch(0) == '-')
128 if (input.hasNext() && input.ch() != '-')
142 if (input.hasNext() && input.ch() != 'T')
159 if (input.ch() == 'T')
172 if (input.ch() !
426 public char ch(int index) method in class:ParseState
437 public char ch() method in class:ParseState
[all...]
H A DUtils.java454 * @param ch a character
457 private static boolean isNameStartChar(char ch) argument
459 return ch > 0xFF || xmlNameStartChars[ch];
471 * @param ch a character
474 private static boolean isNameChar(char ch) argument
476 return ch > 0xFF || xmlNameChars[ch];
488 for (char ch = 0; ch < xmlNameChar
[all...]
/external/sqlite/android/
H A DPhoneNumberUtils.cpp75 * Returns interger corresponding to the input if input "ch" is
79 static int tryGetISODigit (char ch) argument
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) argument
94 return ('0' <= ch && ch <= '9') || ch
98 isSeparator(char ch) argument
118 char ch = str[i]; local
154 char ch = str[i]; local
237 checkPrefixIsIgnorable(const char* ch, int i) argument
[all...]
/external/libvorbis/test/
H A Dtest.c41 int ch; local
45 for(ch=1;ch<=8;ch++){
47 printf("\nTesting %d channel%s\n\n",ch,ch==1?"":"s");
51 snprintf (filename, sizeof (filename), "vorbis_%dch_q%.1f_%u.ogg", ch,q*10,sample_rates [k]);
59 write_vorbis_data_or_die (filename, sample_rates [k], q, data_out, ARRAY_LEN (data_out),ch);
H A Dwrite_read.h21 const float * data, int count, int ch) ;
/external/tagsoup/templates/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java97 for (int ch = -2; ch <= maxChar; ++ch) {
109 else if (statetable[i+1] == ch) {
115 statetableIndex[theState][ch + 2] = (short) hit;
176 int ch = r.read();
179 if (ch >= 0x80 && ch <= 0x9F) ch = theWinMap[ch
448 save(int ch, ScanHandler h) argument
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHTTP.java97 public static boolean isWhitespace(char ch) { argument
98 return ch == SP || ch == HT || ch == CR || ch == LF;

Completed in 1502 milliseconds

1234567891011>>