Lines Matching defs:tab_count
304 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)
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 > 0)
878 (*cclass->text_sink_class.SetTabs)(w, tab_count, char_tabs);