Searched refs:tab_count (Results 1 - 8 of 8) sorted by relevance

/xsrc/external/mit/libXaw/dist/include/X11/Xaw/
H A DTextSink.h329 * tab_count - number of tabs in the list
337 int tab_count,
H A DTextSinkP.h209 int tab_count; /* number of items in tabs */ member in struct:__anon2f14482a0308
/xsrc/external/mit/libXaw/dist/src/
H A DMultiSink.c250 if (++i >= sink->text_sink.tab_count) {
824 SetTabs((Widget)w, w->text_sink.tab_count, w->text_sink.char_tabs);
904 * tab_count - number of tabs in the list
911 SetTabs(Widget w, int tab_count, short* tabs) argument
947 if (tab_count > sink->text_sink.tab_count) {
950 (Cardinal)((unsigned long)tab_count * sizeof(Position)));
953 (Cardinal)((unsigned long)tab_count * sizeof(short)));
956 for (i = 0 ; i < tab_count ; i++) {
961 sink->text_sink.tab_count
[all...]
H A DTextSink.c304 sink->text_sink.tab_count = 0; /* Initialize the tab stops. */
573 * tab_count - the number of tabs in the list
580 SetTabs(Widget w _X_UNUSED, int tab_count _X_UNUSED, short *tabs _X_UNUSED)
854 * tab_count - the number of tabs in the list
860 XawTextSinkSetTabs(Widget w, int tab_count, int *tabs) argument
862 if (tab_count > 0) {
864 short *char_tabs = (short*)XtMalloc((Cardinal)((unsigned)tab_count * sizeof(short)));
868 for (i = tab_count, tab = char_tabs; i; i--) {
873 --tab_count;
877 if (tab_count >
[all...]
H A DTextAction.c1727 int tab_count = sink->text_sink.tab_count; local in function:Tabify
1738 if (tab_count)
1745 if (tab_count) {
1747 TAB_SIZE = tab_index < tab_count - 1 ? char_tabs[tab_index + 1] - char_tabs[tab_index] : *char_tabs;
1748 if (++tab_index >= tab_count) {
1749 tab_column += char_tabs[tab_count - 1];
1757 if ((tab_count && column == tab_column + char_tabs[tab_index]) ||
1758 (!tab_count && column % TAB_SIZE == 0)) {
1779 if (tab_count) {
1870 int tab_count = sink->text_sink.tab_count; local in function:Untabify
[all...]
H A DAsciiSink.c254 if (++i >= sink->text_sink.tab_count) {
1879 * tab_count - number of tabs in the list
1886 SetTabs(Widget w, int tab_count, short *tabs) argument
1908 if (tab_count > sink->text_sink.tab_count) {
1910 XtRealloc((char*)sink->text_sink.tabs, (Cardinal)((size_t)tab_count * sizeof(Position)));
1912 XtRealloc((char*)sink->text_sink.char_tabs, (Cardinal)((size_t)tab_count * sizeof(short)));
1915 for (i = 0 ; i < tab_count ; i++) {
1920 sink->text_sink.tab_count = tab_count;
[all...]
H A DText.c2461 int tab_count = sink->text_sink.tab_count; local in function:ResolveColumnNumber
2476 if (tab_count) {
2477 for (; tab_index < tab_count; ++tab_index)
2482 if (tab_index >= tab_count) {
2483 tab_base += char_tabs[tab_count - 1];
/xsrc/external/mit/MesaLib/dist/src/freedreno/registers/
H A Dgen_header.py95 tab_count = (68 - (len(name) & ~7)) // 8
96 if tab_count <= 0:
97 tab_count = 1
98 print(name + ('\t' * tab_count) + value)

Completed in 24 milliseconds