Searched defs:ch (Results 1 - 25 of 457) sorted by relevance

1234567891011>>

/external/webkit/WebCore/platform/text/
H A DTextBoundaries.h33 inline bool requiresContextForWordBoundary(UChar32 ch) argument
35 return WTF::Unicode::hasLineBreakingPropertyComplexContext(ch);
H A DUnicodeRange.cpp430 unsigned int findCharUnicodeRange(UChar32 ch) argument
432 if (ch >= 0xFFFF)
438 range = gUnicodeSubrangeTable[0][ch >> 12];
445 range = gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x0f00) >> 8];
449 return gUnicodeSubrangeTable[range - cRangeTableBase][(ch & 0x00f0) >> 4];
452 return gUnicodeTertiaryRangeTable[(ch - 0x0700) >> 7];
/external/chromium/third_party/icu/source/test/intltest/
H A Dtestutil.cpp16 UnicodeString TestUtility::hex(UChar ch) { argument
18 buf.append(HEX[0xF&(ch>>12)]);
19 buf.append(HEX[0xF&(ch>>8)]);
20 buf.append(HEX[0xF&(ch>>4)]);
21 buf.append(HEX[0xF&ch]);
H A Dnptrans.h52 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){ argument
135 if(ch>0x007A){
139 if( (ch==0x002D) ||
140 (0x0030 <= ch && ch <= 0x0039) ||
141 (0x0041 <= ch && ch <
[all...]
/external/e2fsprogs/lib/et/
H A Det_name.c26 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/dropbear/libtommath/
H A Dbn_mp_fread.c21 int err, ch, neg, y; local
27 ch = fgetc(stream);
28 if (ch == '-') {
30 ch = fgetc(stream);
38 if (mp_s_rmap[y] == ch) {
54 ch = fgetc(stream);
H A Dbn_mp_read_radix.c22 char ch; local
51 ch = (char) ((radix < 36) ? toupper (*str) : *str);
53 if (ch == mp_s_rmap[y]) {
/external/icu4c/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...]
H A Dnptrans.h52 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){ argument
135 if(ch>0x007A){
139 if( (ch==0x002D) ||
140 (0x0030 <= ch && ch <= 0x0039) ||
141 (0x0041 <= ch && ch <
[all...]
/external/bluetooth/bluez/input/
H A Ddevice.h38 uint8_t ch; /* RFCOMM channel number */ member in struct:fake_input
/external/bluetooth/glib/glib/
H A Dgunidecomp.h1931 gunichar ch; member in struct:__anon592
H A Dgunichartables.h12896 guint16 ch; member in struct:__anon587
/external/chromium/googleurl/src/
H A Durl_parse_internal.h40 inline bool IsURLSlash(char16 ch) { argument
41 return ch == '/' || ch == '\\';
46 inline bool ShouldTrimFromURL(char16 ch) { argument
47 return ch <= ' ';
H A Durl_file.h43 inline bool IsWindowsDriveSeparator(char16 ch) { argument
44 return ch == ':' || ch == '|';
46 inline bool IsWindowsDriveLetter(char16 ch) { argument
47 return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z');
/external/chromium/net/base/
H A Ddns_util.cc19 char ch; local
24 ch = *buf++;
26 if (ch == '.') {
39 label[labellen++] = ch;
/external/dropbear/
H A Dnetbsd_getpass.c64 int ch; local
101 for (p = buf; (ch = getc(fp)) != EOF && ch != '\n';)
103 *p++ = ch;
/external/icu4c/samples/case/
H A Ducase.c23 UChar32 ch; local
38 ch = u_toupper(char_k); /* ch = 'K' */
39 u_fprintf(out, "toupper(%C) = %C\n", char_k, ch);
40 ch = u_tolower(ch); /* ch = 'k' */
41 u_fprintf(out, "tolower() = %C\n", ch);
42 ch = u_totitle(char_k); /* ch
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/nanox/
H A DSDL_nxevents.c114 GR_KEY ch = keystroke -> ch ; local
121 if (ch & MWKEY_NONASCII_MASK) {
122 keysym -> sym = NX_NONASCII_keymap [ch & 0xFF] ;
124 keysym -> sym = ch & 0x7F ;
158 keysym -> unicode = ch ;
/external/quake/quake/src/QW/client/
H A Dsnd_mixa.s36 #define ch 4+16 define
52 movl ch(%esp),%ebx
55 // if (ch->leftvol > 255)
56 // ch->leftvol = 255;
57 // if (ch->rightvol > 255)
58 // ch->rightvol = 255;
70 // lscale = snd_scaletable[ch->leftvol >> 3];
71 // rscale = snd_scaletable[ch->rightvol >> 3];
72 // sfx = (signed char *)sc->data + ch->pos;
73 // ch
[all...]
/external/quake/quake/src/WinQuake/
H A Dsnd_mixa.s36 #define ch 4+16 define
52 movl ch(%esp),%ebx
55 // if (ch->leftvol > 255)
56 // ch->leftvol = 255;
57 // if (ch->rightvol > 255)
58 // ch->rightvol = 255;
70 // lscale = snd_scaletable[ch->leftvol >> 3];
71 // rscale = snd_scaletable[ch->rightvol >> 3];
72 // sfx = (signed char *)sc->data + ch->pos;
73 // ch
[all...]
/external/webkit/WebKit/android/nav/
H A DCachedInput.cpp45 const UChar* ch = string.characters(); local
46 while (ch && *ch && index < sizeof(scratch)) {
47 UChar c = *ch++;
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java79 * @param ch A character to convert to an integer digit
82 * @throws DecoderException Thrown if ch is an illegal hex character
84 protected static int toDigit(char ch, int index) throws DecoderException { argument
85 int digit = Character.digit(ch, 16);
87 throw new DecoderException("Illegal hexadecimal charcter " + ch + " at index " + index);
/external/bluetooth/bluez/cups/
H A Dsdp.c110 uint8_t ch = sdp_get_proto_port(protos, RFCOMM_UUID); local
111 if (ch > 0) {
112 *channel = ch;
/external/fsck_msdos/
H A Dmain.c74 int ch; local
77 while ((ch = getopt(argc, argv, "CfFnpy")) != -1) {
78 switch (ch) {
/external/icu4c/samples/citer/
H A Dciter.cpp25 void printUChar(UChar32 ch) argument
27 if(ch < 127) {
28 u_fprintf(out, "%C", (UChar) ch);
29 } else if (ch == CharacterIterator::DONE) {
32 u_fprintf(out, "[%X]", ch);

Completed in 1268 milliseconds

1234567891011>>