Searched refs:char_tabs (Results 1 - 6 of 6) sorted by relevance

/xsrc/external/mit/libXaw/dist/include/X11/Xaw/
H A DTextSinkP.h208 short *char_tabs; /* The tabs stops as character values */ member in struct:__anon2f14482a0308
/xsrc/external/mit/libXaw/dist/src/
H A DTextAction.c1726 short *char_tabs = sink->text_sink.char_tabs; local in function:Tabify
1739 TAB_SIZE = *char_tabs;
1746 if (column > tab_column + char_tabs[tab_index]) {
1747 TAB_SIZE = tab_index < tab_count - 1 ? char_tabs[tab_index + 1] - char_tabs[tab_index] : *char_tabs;
1749 tab_column += char_tabs[tab_count - 1];
1757 if ((tab_count && column == tab_column + char_tabs[tab_index]) ||
1780 if (column > tab_column + char_tabs[tab_inde
1869 short *char_tabs = sink->text_sink.char_tabs; local in function:Untabify
[all...]
H A DMultiSink.c824 SetTabs((Widget)w, w->text_sink.tab_count, w->text_sink.char_tabs);
951 sink->text_sink.char_tabs = (short *)
952 XtRealloc((char *)sink->text_sink.char_tabs,
958 sink->text_sink.char_tabs[i] = tabs[i];
H A DTextSink.c306 sink->text_sink.char_tabs = NULL;
328 XtFree((char *)sink->text_sink.char_tabs);
864 short *char_tabs = (short*)XtMalloc((Cardinal)((unsigned)tab_count * sizeof(short))); local in function:XawTextSinkSetTabs
868 for (i = tab_count, tab = char_tabs; i; i--) {
878 (*cclass->text_sink_class.SetTabs)(w, tab_count, char_tabs);
879 XtFree((char *)char_tabs);
H A DAsciiSink.c1911 sink->text_sink.char_tabs = (short *)
1912 XtRealloc((char*)sink->text_sink.char_tabs, (Cardinal)((size_t)tab_count * sizeof(short)));
1917 sink->text_sink.char_tabs[i] = tabs[i];
H A DText.c2460 short *char_tabs = sink->text_sink.char_tabs; local in function:ResolveColumnNumber
2478 if (tab_base + char_tabs[tab_index] > column_number) {
2479 tab_column = char_tabs[tab_index];
2483 tab_base += char_tabs[tab_count - 1];

Completed in 15 milliseconds