HomeSort by: relevance | last modified time | path
    Searched refs:CharOf (Results 1 - 19 of 19) sorted by relevancy

  /xsrc/external/mit/xterm/dist/
xstrings.c 103 for (j = k = 0; isxdigit(CharOf(source[j])); ++j) {
105 result[k++] = (char) ((CharOf(x_hex2int(source[j - 1])) << 4)
106 | CharOf(x_hex2int(source[j])));
139 sprintf(result + k, "%02X", CharOf(source[j]));
304 while (IsSpace(CharOf(*s)))
312 while (*s != '\0' && !IsSpace(CharOf(*s)))
320 while (IsSpace(CharOf(*s)))
349 if (!IsSpace(CharOf(first[n]))) {
359 if (IsSpace(CharOf(first[n]))) {
482 while (IsSpace(CharOf(*s))
    [all...]
version.c 63 else if (isspace(CharOf(*vendor)))
testxmc.c 89 #define MARK_ON(a) (Bool) ((my_attrs & a) != 0 && (xw->flags & (whichone = CharOf(a))) == 0)
90 #define MARK_OFF(a) (Bool) ((my_attrs & a) != 0 && (xw->flags & (whichone = CharOf(a))) != 0)
99 unsigned my_attrs = CharOf(screen->xmc_attributes & XMC_FLAGS);
184 IAttr my_attrs = CharOf(screen->xmc_attributes & XMC_FLAGS);
input.c 299 result = IS_CTRL(CharOf(kd->strbuf[0]));
1160 unparseputc(xw, CharOf(*string++));
1269 ? CharOf(kd.strbuf[0])
1327 IChar ch = CharOf(kd.strbuf[0]);
1331 ch, CharOf(kd.strbuf[0]),
1332 ch, CharOf(kd.strbuf[0])));
1340 ch = CharOf(kd.strbuf[0]);
1345 ch, CharOf(kd.strbuf[0]), CharOf(kd.strbuf[1])));
1358 CharOf(kd.strbuf[0])
    [all...]
button.c 257 line[count++] = CharOf(0);
259 line[count++] = CharOf(' ' + value + 1);
264 line[count++] = CharOf(0);
266 line[count++] = CharOf(' ' + value + 1);
269 line[count++] = CharOf(0xC0 + (value >> 6));
270 line[count++] = CharOf(0x80 + (value & 0x3F));
1321 line[count] = CharOf(col > 0 ? 'C' : 'D');
1395 Line[3] = CharOf(' ' + col);
1396 Line[4] = CharOf(' ' + line);
1446 Line[2] = CharOf(col > 0 ? 'C' : 'D')
    [all...]
print.c 516 charToPrinter(xw, CharOf(*str++));
646 bfr[length++] = CharOf(chr);
670 bfr[0] = CharOf(chr);
main.c 1593 value = CharOf(*string);
1953 } else if (isalpha(CharOf(ch))) {
2015 && isdigit(CharOf(*leaf))
2298 if (isdigit(CharOf(*value))) {
2610 d_ltc.t_suspc = CharOf('\000'); /* t_suspc */
2611 d_ltc.t_dsuspc = CharOf('\000'); /* t_dsuspc */
2612 d_ltc.t_rprntc = CharOf('\377'); /* reserved... */
2613 d_ltc.t_flushc = CharOf('\377');
2614 d_ltc.t_werasc = CharOf('\377');
2615 d_ltc.t_lnextc = CharOf('\377')
    [all...]
graphics_sixel.c 542 if (cp == '\0' || isspace(CharOf(cp))) {
551 if (isdigit(CharOf(cp))) {
graphics_regis.c 128 #define isName(c) ((c) == '_' || isalnum(CharOf(c)))
2141 if (!copy_bitmap_from_xft_font(xw, font, CharOf(ch), pixels, *w, *h,
3161 if (!islower(CharOf(ch)) && !isupper(CharOf(ch)) && ch != '@') {
3183 int ch = CharOf(*value++);
3365 isdigit(CharOf(ch))) {
3459 if (!isdigit(CharOf(ch)) &&
5785 if (islower(CharOf(name)))
5786 name = (char) toupper(CharOf(name));
6930 if (islower(CharOf(name))
    [all...]
xtermcap.c 580 if (++length < 32 && isgraph(CharOf(*name))) {
misc.c 1067 for (p = (UString) (*params + 2); (c = CharOf(x_toupper(*p))) !=
3407 CharOf(*buf++),
3789 if (isdigit(CharOf(*source))) {
3889 while (isdigit(CharOf(*buf))) {
3892 while (isspace(CharOf(*buf))) {
4060 CharOf(*cp),
4387 while (isdigit(CharOf(*cp)))
4428 Char ch = CharOf(*cp++);
4519 ch = CharOf(*string++);
4549 ch = CharOf(*string++)
    [all...]
charsets.c 367 int eight = CharOf(*s);
ptyx.h 326 #define PartS2L(s,d) (isdigit(CharOf(*(s))) && (d) != (s) && (d) != NULL)
331 #define CharOf(n) ((Char)(n)) /* extract 8-bit character */
1712 #define LO_BYTE(ch) CharOf((ch) & 0xff)
1713 #define HI_BYTE(ch) CharOf((ch) >> 8)
charproc.c 2343 sp->defer_area[(sp->defer_used)++] = CharOf(c);
2580 buffer[n] = CharOf(*value++);
3259 if (sos_table[CharOf(c)] == CASE_IGNORE)
3304 ? CharOf(c)
4385 reply.a_pintro = CharOf(sp->private_function ? '?' : 0);
9111 c = CharOf(inters >> (8 * i));
9176 buf[len++] = CharOf(tmp[0]);
9177 buf[len++] = CharOf(tmp[1]);
9981 if (isdigit(CharOf(*next))) {
10139 if (!isalpha(CharOf(*s))
    [all...]
ptydata.c 445 VTbuffer->next[n] = CharOf(value[n]);
trace.c 229 sprintf(dst, "%c", CharOf(value));
Tekproc.c 771 if (!isprint(CharOf(c2 & 0x7f))
util.c 3206 buffer[dst] = CharOf(text[dst]);
fontutils.c 5531 while (isspace(CharOf(*source)))

Completed in 46 milliseconds