HomeSort by relevance Sort by last modified time
    Searched defs:ch (Results 226 - 250 of 611) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-string-util.c 274 dbus_unichar_t ch; local
525 ch = 0;
529 _dbus_string_get_unichar (&str, 0, &ch, &i);
531 _dbus_assert (ch == 0xfffc);
  /external/e2fsprogs/ext2ed/
general_com.c 583 unsigned char ch; local
589 ch = *cp++;
590 if (ch == 0) {
597 if (ch > 128) {
599 ch -= 128;
601 if ((ch < 32) || (ch == 0x7f)) {
603 ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
605 wprintw(show_pad, "%c", ch);
init.c 109 char current_line [500],current_word [50],*ch; local
121 ch=parse_word (current_line,current_word);
123 ch=parse_word (ch,current_word);
140 ch=parse_word (current_line,variable_type);
141 ch=parse_word (ch,variable_name);
144 ch=parse_word (ch,variable_name);
main.c 269 int ch; local
272 while (!done && (ch = command_read_key())) {
273 switch (ch) {
286 if (ch > 256)
288 if (ch == '\n') break;
289 *chptr++ = ch;
290 wprintw(command_win, "%c", ch);
421 char ch,*source_ptr,*target_ptr; local
430 ch=*source_ptr++;
431 } while (! (ch>' ' && ch<='z') && ch!=0)
    [all...]
  /external/e2fsprogs/misc/
blkid.c 74 unsigned char ch; local
80 ch = *cp++;
81 if (ch > 128) {
83 ch -= 128;
85 if ((ch < 32) || (ch == 0x7f)) {
87 ch ^= 0x40; /* ^@, ^A, ^B; ^? for DEL */
89 fputc(ch, stdout);
  /external/grub/stage2/
fsys_fat.c 294 char *rest, ch, dir_buf[FAT_DIRENTRY_LENGTH]; local
343 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
348 if (print_possibilities && ch != '/')
370 *rest = ch;
476 *(dirname = rest) = ch;
fsys_jfs.c 275 char *ptr, *rest, ch; local
332 for (rest = dirname; (ch = *rest) && !isspace (ch) && ch != '/'; rest++);
360 if (print_possibilities && ch != '/'
370 *(dirname = rest) = ch;
379 *rest = ch;
  /external/harfbuzz/src/
harfbuzz-hangul.c 141 const HB_UChar16 *ch = item->string + item->item.pos; local
151 int LIndex = ch[0] - Hangul_LBase;
152 int VIndex = ch[1] - Hangul_VBase;
157 int LIndex = ch[0] - Hangul_LBase;
158 int VIndex = ch[1] - Hangul_VBase;
159 int TIndex = ch[2] - Hangul_TBase;
170 ch = &composed;
175 ch, len,
184 /*IDEBUG(" %d: %4x", i, ch[i].unicode()); */
  /external/harfbuzz/tests/shaping/
main.cpp 53 HB_UChar32 ch; local
57 ch = HB_SurrogateToUcs4(string[i], string[i + 1]);
60 ch = string[i];
62 return ch;
  /external/icu4c/common/
ucnv_u32.c 52 uint32_t ch, i; local
59 ch = args->converter->toUnicodeStatus - 1;/*Stores the previously calculated ch from a previous call*/
66 ch = 0;
70 ch = (ch << 8) | (uint8_t)(*mySource);
76 args->converter->toUnicodeStatus = ch + 1;
82 if (ch <= MAXIMUM_UTF && !U_IS_SURROGATE(ch)) {
84 if (ch <= MAXIMUM_UCS2)
132 uint32_t ch, i; local
217 UChar32 ch, ch2; local
319 UChar32 ch, ch2; local
514 uint32_t ch, i; local
600 uint32_t ch, i; local
695 UChar32 ch, ch2; local
805 UChar32 ch, ch2; local
    [all...]
ucnv_u8.c 97 uint32_t ch, ch2 = 0; local
107 ch = cnv->toUnicodeStatus;/*Stores the previously calculated ch from a previous call*/
115 ch = *(mySource++);
116 if (ch < 0x80) /* Simple case */
118 *(myTarget++) = (UChar) ch;
123 toUBytes[0] = (char)ch;
124 inBytes = bytesFromUTF8[ch]; /* lookup current sequence length */
137 ch = (ch << 6) + ch2
227 uint32_t ch, ch2 = 0; local
354 UChar32 ch; local
469 UChar32 ch; local
605 UChar32 ch; local
    [all...]
usc_impl.c 157 getPairIndex(UChar32 ch)
166 if (ch >= pairedChars[pairedCharExtra]) {
173 if (ch >= pairedChars[pairIndex + probe]) {
178 if (pairedChars[pairIndex] != ch) {
272 UChar32 ch = high; local
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
293 sc = uscript_getScript(ch, &error);
294 pairIndex = getPairIndex(ch);
339 if (ch >= 0x10000) {
  /external/icu4c/i18n/
anytrans.cpp 123 UChar32 ch; local
138 ch = text.char32At(start - 1); // look back
139 s = uscript_getScript(ch, &ec);
150 ch = text.char32At(limit); // look ahead
151 s = uscript_getScript(ch, &ec);
plurfmt.cpp 150 UChar ch=pattern.charAt(i); local
152 if ( !inRange(ch, type) ) {
158 token += ch;
172 token += ch;
199 token += ch;
224 token += ch;
236 token+=ch;
337 PluralFormat::inRange(UChar ch, fmtToken& type) {
338 if ((ch>=CAP_A) && (ch<=CAP_Z))
    [all...]
selfmt.cpp 119 UChar ch = pattern.charAt(i); local
120 CharacterClass type = classifyCharacter(ch);
125 phrase += ch;
143 keyword += ch;
161 keyword += ch;
195 phrase += ch;
225 phrase += ch;
229 phrase += ch;
308 SelectFormat::classifyCharacter(UChar ch) const{
309 if ((ch >= CAP_A) && (ch <= CAP_Z))
    [all...]
unesctrn.cpp 227 UChar32 ch = text.char32At(s); local
228 int32_t digit = u_digit(ch, radix);
232 s += UTF_CHAR_LENGTH(ch);
  /external/icu4c/io/
ustdio.c 585 ufile_getch(UFILE *f, UChar *ch)
589 *ch = U_EOF;
592 *ch = *(f->str.fPos)++;
601 *ch = *(f->str.fPos)++;
611 UChar ch; local
612 ufile_getch(f, &ch);
613 return ch;
654 UChar32 ch; local
655 ufile_getch32(f, &ch);
656 return ch;
    [all...]
  /external/icu4c/layout/
ThaiShaping.cpp 31 le_uint8 ThaiShaping::getCharClass(LEUnicode ch)
35 if (ch >= 0x0E00 && ch <= 0x0E5B) {
36 charClass = classTable[ch - 0x0E00];
228 le_uint8 ThaiShaping::getNextState(LEUnicode ch, le_uint8 prevState, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
233 charClass = getCharClass(ch);
236 return doTransition(transition, ch, inputIndex, glyphSet, errorChar, output, glyphStorage, outputIndex);
239 le_bool ThaiShaping::isLegalHere(LEUnicode ch, le_uint8 prevState)
241 le_uint8 charClass = getCharClass(ch);
276 LEUnicode ch = input[inputIndex + offset] local
    [all...]
  /external/icu4c/test/intltest/
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits)
73 while((offset = src.indexOf(ch, offset + 1)) >= 0) {
83 while((end = src.indexOf(ch, start)) >= 0) {
116 char ch[256]; local
119 u_UCharsToChars(u, ch, len);
120 ch[len] = 0; /* include terminating \0 */
121 it_errln(UnicodeString("Parse Failed: Field ") + UnicodeString(ch) + UnicodeString(", err ") + UnicodeString(u_errorName(status)));
129 char ch[256]; local
132 u_UCharsToChars(u, ch, len);
133 ch[len] = 0; /* include terminating \0 *
    [all...]
itercoll.cpp 97 (UnicodeString)"&a,A < b,B < c,C, d,D < z,Z < ch,cH,Ch,CH", status);
131 c3 = new RuleBasedCollator((UnicodeString)"&a < b < c/aba < d < z < ch", status);
297 UnicodeString rule("&a < ab < c/aba < d < z < ch");
299 UChar ch = 0; local
300 UnicodeString str(ch);
304 while (ch < 0xFFFF && U_SUCCESS(status)) {
307 ch ++
    [all...]
normconf.cpp 463 UChar32 ch; local
465 for (ch = normalizer.first(); ch != Normalizer::DONE;
466 ch = normalizer.next()) {
467 result.append(ch);
470 for (ch = normalizer.last(); ch != Normalizer::DONE;
471 ch = normalizer.previous()) {
472 result.insert(0, ch);
  /external/jdiff/src/jdiff/
Diff.java 77 char ch = tok.charAt(0); local
78 if (Character.isLetter(ch) || ch == '/') {
    [all...]
  /external/jhead/
jpgfile.c 49 int ch; local
59 ch = Data[a];
61 if (ch == '\r' && Data[a+1] == '\n') continue; // Remove cr followed by lf.
63 if (ch >= 32 || ch == '\n' || ch == '\t'){
64 Comment[nch++] = (char)ch;
  /external/jpeg/
rdjpgcom.c 224 int ch; local
235 ch = read_1_byte();
241 if (ch == '\r') {
243 } else if (ch == '\n') {
246 } else if (ch == '\\') {
248 } else if (isprint(ch)) {
249 putc(ch, stdout);
251 printf("\\%03o", ch);
253 lastch = ch;
  /external/libpng/contrib/gregbook/
rpng-win.c 282 int ch; local
299 ch = _getch();
300 while (ch != 'q' && ch != 'Q' && ch != 0x1B);
336 int ch; local
340 ch = _getch();
341 while (ch != 'q' && ch != 'Q' && ch != 0x1B)
    [all...]

Completed in 1765 milliseconds

1 2 3 4 5 6 7 8 91011>>