Lines Matching refs:tab_count
191 sink->text_sink.tab_count = 0; /* Initialize the tab stops. */
433 * tab_count - the number of tabs in the list.
440 SetTabs(w, tab_count, tabs)
442 int tab_count;
732 * tab_count - the number of tabs in the list.
739 XawTextSinkSetTabs(Widget w, int tab_count, int *tabs)
741 XawTextSinkSetTabs(w, tab_count, tabs)
743 int tab_count, *tabs;
746 if (tab_count > 0) {
748 short *char_tabs = (short*)XtMalloc( (unsigned)tab_count*sizeof(short) );
752 for (i = tab_count, tab = char_tabs; i; i--) *tab++ = (short)*tabs++;
754 (*class->text_sink_class.SetTabs)(w, tab_count, char_tabs);