Searched refs:tab (Results 1 - 25 of 121) sorted by last modified time

12345

/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DDocInfoWindow.cpp467 BTab* tab = new BTab(); local
468 tabView->AddTab(panel, tab);
469 tab->SetLabel(label);
/haiku-fatelf/src/apps/terminal/
H A DTermWindow.cpp233 // init the GUI and add a tab
292 fTabView = new SmartTabView(textFrame, "tab view", B_WIDTH_FROM_WIDEST);
296 // Make the scroll view one pixel wider than the tab view container view, so
352 "If you close the tab, the process will be killed.");
472 .AddItem(B_TRANSLATE("New tab"), kNewTab, 'T')
479 .AddItem(B_TRANSLATE("Close active tab"), kCloseView, 'W')
674 // Set our current working directory to that of the active tab, so
930 // tab title changed message from SetTitleDialog
1247 BTab* tab = new BTab; local
1248 fTabView->AddTab(scrollView, tab);
[all...]
/haiku-fatelf/src/tests/kits/net/preflet/
H A DNetworkSetupWindow.cpp306 BTab *tab = new BTab; local
307 fPanel->AddTab(addon_view, tab);
308 tab->SetLabel(fNetworkAddOnMap[fAddonCount]->Name());
310 // Number of tab addons total
/haiku-fatelf/src/servers/app/stackandtile/
H A DStackAndTile.cpp260 int32 tab;
261 switch (satWindow->GetDecorator()->RegionAt(where, tab)) {
H A DSATDecorator.cpp64 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
68 _colors, tab);
72 if (tab && tab->isHighlighted == false
76 _colors, tab);
H A DSATDecorator.h31 Decorator::Tab* tab = NULL);
H A DSATGroup.cpp679 Tab::AddCrossing(Tab* tab) argument
681 if (tab->Orientation() == fOrientation)
684 Tab* vTab = (fOrientation == kVertical) ? this : tab;
685 Tab* hTab = (fOrientation == kHorizontal) ? this : tab;
694 if (!tab->fCrossingList.AddItem(crossing)) {
719 Tab::FindCrossingIndex(Tab* tab) argument
723 if (fCrossingList.ItemAt(i)->HorizontalTab() == tab)
728 if (fCrossingList.ItemAt(i)->VerticalTab() == tab)
757 Tab::FindCrossing(Tab* tab) argument
759 return fCrossingList.ItemAt(FindCrossingIndex(tab));
999 BReference<Tab> tab = group->_AddHorizontalTab(); local
1006 BReference<Tab> tab = group->_AddVerticalTab(); local
1128 _RemoveHorizontalTab(Tab* tab) argument
1139 _RemoveVerticalTab(Tab* tab) argument
1210 Tab* tab = parent->LeftTopCrossing()->VerticalTab(); local
1236 Tab* tab = parent->LeftTopCrossing()->HorizontalTab(); local
1262 Tab* tab = parent->RightTopCrossing()->VerticalTab(); local
1289 Tab* tab = parent->LeftBottomCrossing()->HorizontalTab(); local
[all...]
H A DSATGroup.h114 BReference<Crossing> AddCrossing(Tab* tab);
116 int32 FindCrossingIndex(Tab* tab);
118 Crossing* FindCrossing(Tab* tab);
201 // Find crossing by tab position in group and if not exist create
263 /*! \return a sorted tab list. */
280 bool _RemoveHorizontalTab(Tab* tab);
281 bool _RemoveVerticalTab(Tab* tab);
H A DStacking.cpp246 Decorator::Tab* tab = parentWindow->Decorator()->TabAt( local
248 if (tab == NULL)
250 if (tab->tabRect.Contains(mousePosition)) {
H A DTiling.cpp136 Tab* tab = verticalTabs->ItemAt(i); local
137 const CrossingList* crossingList = tab->GetCrossingList();
498 SATTiling::_SearchHighlightWindow(Tab* tab, Tab* firstOrthTab, argument
504 if (!tab)
531 Crossing* crossing = tab->FindCrossing(orthTab);
H A DTiling.h56 bool _SearchHighlightWindow(Tab* tab, Tab* firstOrthTab,
/haiku-fatelf/src/apps/debugger/user_interface/gui/team_window/
H A DTeamWindow.cpp768 .Add(fTabView = new BTabView("tab view"), 0.4f)
792 // add threads tab
801 // add images tab
810 // add breakpoints tab
818 // add local variables tab
819 BView* tab = fVariablesView = VariablesView::Create(this); local
820 fLocalsTabView->AddTab(tab);
822 // add registers tab
823 tab = fRegistersView = RegistersView::Create(fTeam->GetArchitecture());
824 fLocalsTabView->AddTab(tab);
[all...]
/haiku-fatelf/src/tests/kits/net/preflet/InterfacesAddOn/
H A DInterfaceWindow.cpp39 // ensure tab container matches window size
116 BTab* tab = new BTab; local
117 fTabView->AddTab(fTabIPView[inet_id], tab);
118 tab->SetLabel(supportedFamilies[index].name);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_exit/
H A D2-2.c103 int tab[3]; variable
107 tab[global]=n; \
154 tab[j]=0;
188 if (tab[j] != j+1)
190 output("dump:\ntab[0]=%i\ntab[1]=%i\ntab[2]=%i\n", tab[0], tab[1], tab[2]);
H A D3-2.c104 int tab[4]; variable
109 tab[global]=n; \
129 ret = pthread_setspecific(tld[0], (void *)&tab[3]);
134 ret = pthread_setspecific(tld[1], (void *)&tab[3]);
138 ret = pthread_setspecific(tld[2], (void *)&tab[3]);
179 tab[j]=0;
214 if ((tab[j] != j+1) || (tab[3] != 9))
216 output("dump:\ntab[0]=%i\ntab[1]=%i\ntab[2]=%i\ntab[3]=%i\n", tab[0], tab[
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlregexp.c7102 const xmlChar **tab; local
7479 tab = (const xmlChar **) xmlMalloc(ctxt->tabSize *
7481 if (tab == NULL) {
7488 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);
7491 temp = (const xmlChar **) xmlRealloc((xmlChar **) tab, ctxt->tabSize * 2 *
7494 xmlFree((xmlChar **) tab);
7497 tab = temp;
7499 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);
7502 tmp = xmlExpStringDeriveInt(ctxt, exp, tab[i]);
7505 xmlFree((xmlChar **) tab);
[all...]
H A Dxmlschemas.c4515 xmlSchemaPSVIIDCNodePtr tab; local
4531 tab = bind->nodeTable[i];
4534 key = tab->keys[j];
4553 tab = bind->dupls->items[i];
4556 key = tab->keys[j];
/haiku-fatelf/src/system/libroot/posix/stdio/
H A Dvfscanf.c86 static u_char *__sccl(char *tab, u_char *fmt);
661 __sccl(tab, fmt)
662 register char *tab;
676 tab[n] = v;
689 tab[c] = v; /* take character c */
723 tab[++c] = v;
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dradixsort.c73 if (tab == NULL) { \
82 endch = tab[endch]; \
83 tr = tab; \
92 radixsort(u_char const **a, int n, u_char const *tab, u_int endch) argument
104 sradixsort(u_char const **a, int n, u_char const *tab, u_int endch) argument
/haiku-fatelf/src/libs/ncurses/misc/
H A Dterminfo.src450 # ansi-mtabs adds relative addressing and minimal tab support
656 # * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab *
676 # * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab *
807 # have the eat_newline_glitch. It doesn't support setting or removing tab
1154 # control-tab \[072q
1853 # tab settings are in non-volatile memory and don't need to be
2261 # Things that use <knxt> usually use tab anyways... and things that don't use
2262 # tab usually use <knxt> instead...
2263 # kprv is same as tab - Backtab is useless...
3292 # vt100 TBC (tab rese
[all...]
H A Dterminfo.tmp450 # ansi-mtabs adds relative addressing and minimal tab support
656 # * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab *
676 # * response to user requests, assumes kcbt=\E[Z, the ANSI/ECMA reverse-tab *
807 # have the eat_newline_glitch. It doesn't support setting or removing tab
1154 # control-tab \[072q
1853 # tab settings are in non-volatile memory and don't need to be
2261 # Things that use <knxt> usually use tab anyways... and things that don't use
2262 # tab usually use <knxt> instead...
2263 # kprv is same as tab - Backtab is useless...
3292 # vt100 TBC (tab rese
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Dlib_ttyflags.c93 * was on, remove the tab and backtab capabilities.
100 tab = back_tab = NULL;
103 tab = back_tab = NULL;
H A Dparse_entry.c577 {"bt", "kcbt"}, /* back tab -> KEY_BTAB */
592 {"st", "khts"}, /* set-tab key -> KEY_STAB */
729 if (WANTED(tab)) {
732 tab = _nc_save_str(buf);
734 tab = _nc_save_str(C_HT);
753 if (tab && _nc_capcmp(tab, C_HT))
754 _nc_warning("hardware tabs with a non-^I tab string %s",
755 _nc_visbuf(tab));
757 if (WANTED(tab))
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/tty/
H A Dlib_mvcur.c50 ** 4.4BSD curses can't use cuu/cud/cuf/cub/hpa/vpa/tab/cbt for local
65 ** in decreasing order of suspiciousness): it, tab, cbt, hpa, vpa, cuu, cud,
132 * int _ht_cost; // cost of (tab)
148 * The USE_HARD_TABS switch controls whether it is reliable to use tab/backtabs
150 * tab delays and whether or not tabs will be expanded in raw mode. If you
151 * have parm_right_cursor, tab motions don't win you a lot anyhow.
312 SP->_ht_cost = CostOf(tab, 0);
432 * Reset terminal's tab counter. There's a long-time bug that
433 * if you exit a "curses" program such as vi or more, tab
565 if (init_tabs > 0 && tab) {
[all...]
/haiku-fatelf/src/libs/ncurses/tack/
H A Dinit.c154 report_cap("\\t ^I (ht)", tab);

Completed in 440 milliseconds

12345