Lines Matching refs:tab_count
186 sink->text_sink.tab_count = 0; /* Initialize the tab stops. */
225 (*class->text_sink_class.SetTabs)(new, w->text_sink.tab_count,
433 * tab_count - the number of tabs in the list.
439 SetTabs(w, tab_count, tabs)
441 int tab_count;
464 if (tab_count > sink->text_sink.tab_count) {
466 (Cardinal) (tab_count * sizeof(Position)));
469 (Cardinal) (tab_count * sizeof(short)));
472 for ( i = 0 ; i < tab_count ; i++ ) {
477 sink->text_sink.tab_count = tab_count;
695 * tab_count - the number of tabs in the list.
701 XawTextSinkSetTabs(w, tab_count, tabs)
703 int tab_count, *tabs;
705 if (tab_count > 0) {
707 short *char_tabs = (short*)XtMalloc( (unsigned)tab_count*sizeof(short) );
711 for (i = tab_count, tab = char_tabs; i; i--) *tab++ = (short)*tabs++;
713 (*class->text_sink_class.SetTabs)(w, tab_count, char_tabs);