HomeSort by: relevance | last modified time | path
    Searched defs:CharWidth (Results 1 - 3 of 3) sorted by relevancy

  /xsrc/external/mit/libXaw/dist/src/
MultiSink.c 120 static int CharWidth(MultiSinkObject, XFontSet, int, wchar_t);
228 CharWidth(MultiSinkObject sink, XFontSet fontset, int x, wchar_t c)
385 width = (unsigned)CharWidth(sink, fontset, x, _Xaw_atowc(XawTAB));
430 rect->width = (unsigned short)CharWidth(sink, sink->multi_sink.fontset, 0, _Xaw_atowc(XawSP));
485 (unsigned)CharWidth(sink, fontset, 0, wspace[0]),
530 (unsigned)(CharWidth(sink, fontset, 0, *nchar) - 1),
570 rWidth += CharWidth(sink, fontset, fromx + rWidth, c);
612 rWidth += CharWidth(sink, fontset, fromx + rWidth, c);
AsciiSink.c 100 static int CharWidth(AsciiSinkObject, XFontStruct*, int, unsigned int);
232 CharWidth(AsciiSinkObject sink, XFontStruct *font, int x, unsigned int c)
270 width = CharWidth(sink, font, x, '\\');
271 width += CharWidth(sink, font, x, ((c >> 6) & 7) + '0');
272 width += CharWidth(sink, font, x, ((c >> 3) & 7) + '0');
276 width = CharWidth(sink, font, x, '^');
309 width += CharWidth((AsciiSinkObject)ctx->text.sink, font,
379 paint->x = x - (paint->width = CharWidth(sink, font, 0, c));
415 paint->width = -CharWidth(sink, font, 0, c);
587 x += CharWidth(sink, font, 0, ' ')
    [all...]
  /xsrc/external/mit/xterm/dist/
xterm.h 1084 #define CharWidth(screen, n) (((n) < 256) \
1090 #define CharWidth(screen, n) (IsLatin1(n) ? 1 : 0)

Completed in 7 milliseconds