Searched refs:tab (Results 1 - 25 of 121) sorted by relevance

12345

/haiku-fatelf/src/preferences/notifications/
H A DPrefletView.cpp41 BTab* tab = new BTab(); local
42 AddTab(general, tab);
43 tab->SetLabel(B_TRANSLATE("General"));
45 tab = new BTab();
46 AddTab(display, tab);
47 tab->SetLabel(B_TRANSLATE("Display"));
49 tab = new BTab();
50 AddTab(apps, tab);
51 tab->SetLabel(B_TRANSLATE("Notifications"));
/haiku-fatelf/src/bin/gdb/bfd/
H A Delf-strtab.c127 _bfd_elf_strtab_free (struct elf_strtab_hash *tab) argument
129 bfd_hash_table_free (&tab->table);
130 free (tab->array);
131 free (tab);
138 _bfd_elf_strtab_add (struct elf_strtab_hash *tab, argument
149 BFD_ASSERT (tab->sec_size == 0);
151 bfd_hash_lookup (&tab->table, str, TRUE, copy);
162 if (tab->size == tab->alloced)
165 tab
178 _bfd_elf_strtab_addref(struct elf_strtab_hash *tab, bfd_size_type idx) argument
188 _bfd_elf_strtab_delref(struct elf_strtab_hash *tab, bfd_size_type idx) argument
199 _bfd_elf_strtab_clear_all_refs(struct elf_strtab_hash *tab) argument
208 _bfd_elf_strtab_size(struct elf_strtab_hash *tab) argument
214 _bfd_elf_strtab_offset(struct elf_strtab_hash *tab, bfd_size_type idx) argument
229 _bfd_elf_strtab_emit(register bfd *abfd, struct elf_strtab_hash *tab) argument
298 _bfd_elf_strtab_finalize(struct elf_strtab_hash *tab) argument
[all...]
H A Dhash.c660 _bfd_stringtab_add (tab, str, hash, copy)
661 struct bfd_strtab_hash *tab;
670 entry = strtab_hash_lookup (tab, str, TRUE, copy);
677 bfd_hash_allocate (&tab->table,
687 n = (char *) bfd_hash_allocate (&tab->table, strlen (str) + 1);
698 entry->index = tab->size;
699 tab->size += strlen (str) + 1;
700 if (tab->xcoff)
703 tab->size += 2;
705 if (tab
[all...]
/haiku-fatelf/src/servers/app/decorator/
H A DDecorator.cpp86 Decorator::Tab* tab = _AllocateNewTab(); local
87 if (tab == NULL)
89 tab->title = title;
90 tab->look = look;
91 tab->flags = flags;
95 if (fTabList.AddItem(tab, index) == true)
97 } else if (fTabList.AddItem(tab) == true)
101 delete tab;
106 fTopTab = tab;
108 fTabList.RemoveItem(tab);
122 Decorator::Tab* tab = fTabList.RemoveItemAt(index); local
152 Decorator::Tab* tab = fTabList.ItemAt(i); local
162 SetTopTab(int32 tab) argument
190 SetFlags(int32 tab, uint32 flags, BRegion* updateRegion) argument
223 SetLook(int32 tab, DesktopSettings& settings, window_look look, BRegion* updateRect) argument
300 SetClose(int32 tab, bool pressed) argument
320 SetMinimize(int32 tab, bool pressed) argument
340 SetZoom(int32 tab, bool pressed) argument
357 SetTitle(int32 tab, const char* string, BRegion* updateRegion) argument
394 SetTabLocation(int32 tab, float location, bool isShifting, BRegion* updateRegion) argument
417 SetFocus(int32 tab, bool active) argument
496 Decorator::Tab* tab = fTabList.ItemAt(i); local
586 SetRegionHighlight(Region region, uint8 highlight, BRegion* dirty, int32 tab) argument
657 Decorator::Tab* tab = fTabList.ItemAt(tabIndex); local
671 DrawClose(int32 tab) argument
682 DrawMinimize(int32 tab) argument
693 DrawTitle(int32 tab) argument
704 DrawZoom(int32 tab) argument
757 Decorator::Tab* tab = fTabList.ItemAt(i); local
777 _DrawTab(Decorator::Tab* tab, BRect rect) argument
790 _DrawClose(Decorator::Tab* tab, bool direct, BRect rect) argument
805 _DrawTitle(Decorator::Tab* tab, BRect rect) argument
818 _DrawZoom(Decorator::Tab* tab, bool direct, BRect rect) argument
831 _DrawMinimize(Decorator::Tab* tab, bool direct, BRect rect) argument
837 _SetTabLocation(Decorator::Tab* tab, float location, bool isShifting, BRegion* ) argument
846 _SetFocus(Decorator::Tab* tab) argument
858 _SetLook(Decorator::Tab* tab, DesktopSettings& settings, window_look look, BRegion* updateRect) argument
866 _SetFlags(Decorator::Tab* tab, uint32 flags, BRegion* updateRegion) argument
876 Decorator::Tab* tab = fTabList.ItemAt(i); local
[all...]
H A DDecorator.h96 void SetTopTab(int32 tab);
104 void SetLook(int32 tab, DesktopSettings& settings,
106 void SetFlags(int32 tab, uint32 flags,
109 window_look Look(int32 tab) const;
110 uint32 Flags(int32 tab) const;
114 BRect TabRect(int32 tab) const;
115 BRect TabRect(Decorator::Tab* tab) const;
117 void SetClose(int32 tab, bool pressed);
118 void SetMinimize(int32 tab, bool pressed);
119 void SetZoom(int32 tab, boo
[all...]
H A DDefaultDecorator.cpp133 DefaultDecorator::TabLocation(int32 tab) const
135 DefaultDecorator::Tab* decoratorTab = _TabAt(tab);
148 if (settings->AddRect("tab frame", fTitleBarRect) != B_OK)
154 // TODO only add the location of the tab of the window who requested the
157 DefaultDecorator::Tab* tab = _TabAt(i); local
158 if (settings->AddFloat("tab location", (float)tab->tabOffset) != B_OK)
174 // We need to draw a few things: the tab, the resize knob, the borders,
214 DefaultDecorator::RegionAt(BPoint where, int32& tab) const
216 // Let the base class version identify hits of the buttons and the tab
261 DefaultDecorator::Tab* tab = _TabAt(tabIndex); local
433 Decorator::Tab* tab = fTabList.ItemAt(i); local
454 DefaultDecorator::Tab* tab = _TabAt(i); local
539 Decorator::Tab* tab = fTabList.ItemAt(i); local
568 Decorator::Tab* tab = fTabList.ItemAt(i); local
588 Decorator::Tab* tab = fTabList.ItemAt(i); local
609 DefaultDecorator::Tab* tab = _TabAt(i); local
618 Decorator::Tab* tab = new(std::nothrow) DefaultDecorator::Tab; local
876 _DrawTab(Decorator::Tab* tab, BRect invalid) argument
955 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
972 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
1035 _SetTitle(Decorator::Tab* tab, const char* string, BRegion* updateRegion) argument
1075 _SetLook(Decorator::Tab* tab, DesktopSettings& settings, window_look look, BRegion* updateRegion) argument
1097 _SetFlags(Decorator::Tab* tab, uint32 flags, BRegion* updateRegion) argument
1118 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
1134 Decorator::Tab* tab = fTabList.ItemAt(i); local
1249 DefaultDecorator::Tab* tab = _TabAt(0); local
1319 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
1467 DrawButtons(Decorator::Tab* tab, const BRect& invalid) argument
1490 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
1657 DefaultDecorator::Tab* tab = static_cast<DefaultDecorator::Tab*>(_tab); local
1738 DefaultDecorator::Tab* tab = _TabAt(i); local
1748 _GetBitmapForButton(Decorator::Tab* tab, Component item, bool down, int32 width, int32 height) argument
1853 _GetComponentColors(Component component, ComponentColors _colors, Decorator::Tab* tab) argument
1906 DefaultDecorator::Tab* tab = _TabAt(0); local
[all...]
H A DDefaultDecorator.h50 virtual float TabLocation(int32 tab) const;
60 virtual Region RegionAt(BPoint where, int32& tab) const;
64 int32 tab = -1);
113 virtual void _DrawTab(Decorator::Tab* tab, BRect r);
115 virtual void _DrawClose(Decorator::Tab* tab, bool direct,
117 virtual void _DrawTitle(Decorator::Tab* tab, BRect r);
118 virtual void _DrawZoom(Decorator::Tab* tab, bool direct,
121 virtual void _SetTitle(Decorator::Tab* tab,
124 virtual void _SetFocus(Decorator::Tab* tab);
128 virtual void _SetLook(Decorator::Tab* tab,
[all...]
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_exit/
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...]
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]);
/haiku-fatelf/src/bin/bash/support/
H A Dmissing43 bison create \`y.tab.[ch]', if possible, from existing .[ch]
47 yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
112 rm -f y.tab.c y.tab.h
119 cp "$SRCFILE" y.tab.c
123 cp "$SRCFILE" y.tab.h
128 if [ ! -f y.tab.h ]; then
129 echo >y.tab.h
131 if [ ! -f y.tab.c ]; then
132 echo 'main() { return 0; }' >y.tab
[all...]
/haiku-fatelf/src/apps/webpositive/tabview/
H A DTabContainerView.cpp102 // Draw empty area before first tab.
120 // Draw empty area after last tab.
140 // Middle click outside tabs should always open a new tab.
159 // any tab. So even if fLastMouseEventTab has been reset to NULL
160 // because this tab was removed during mouse down, we wouldn't
165 // Always check the tab under the mouse again, since we don't update
191 TabView* tab; local
193 tab = fController->CreateTabView();
195 tab = new TabView();
196 tab
202 AddTab(TabView* tab, int32 index) argument
252 TabView* tab = item->Parent(); local
265 TabView* tab = item->Parent(); local
304 TabView* tab = NULL; local
315 SelectTab(TabView* tab) argument
454 TabView* tab = _TabAt(where); local
[all...]
H A DTabContainerView.h67 void AddTab(TabView* tab, int32 index = -1);
71 int32 IndexOf(TabView* tab) const;
74 void SelectTab(TabView* tab);
/haiku-fatelf/src/bin/gdb/
H A Dmissing81 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if [ ! -f y.tab.h ]; then
233 echo >y.tab.h
235 if [ ! -f y.tab.c ]; then
236 echo 'main() { return 0; }' >y.tab
[all...]
/haiku-fatelf/src/libs/ncurses/include/
H A Dcapdefaults.c81 if (VALID_STRING(tab) && (capval = EXTRACT_DELAY(tab)))
/haiku-fatelf/src/bin/diffutils/config/
H A Dmissing71 bison create \`y.tab.[ch]', if possible, from existing .[ch]
77 yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
192 rm -f y.tab.c y.tab.h
199 cp "$SRCFILE" y.tab.c
203 cp "$SRCFILE" y.tab.h
208 if [ ! -f y.tab.h ]; then
209 echo >y.tab.h
211 if [ ! -f y.tab.c ]; then
212 echo 'main() { return 0; }' >y.tab
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dmissing71 bison create \`y.tab.[ch]', if possible, from existing .[ch]
77 yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
192 rm -f y.tab.c y.tab.h
199 cp "$SRCFILE" y.tab.c
203 cp "$SRCFILE" y.tab.h
208 if [ ! -f y.tab.h ]; then
209 echo >y.tab.h
211 if [ ! -f y.tab.c ]; then
212 echo 'main() { return 0; }' >y.tab
[all...]
H A DMakefile.am163 $(YACC) $(AM_YFLAGS) $(YFLAGS) $< && sed -f $(srcdir)/bisonfix.sed < y.tab.c > $*.c && $(RM) y.tab.c
164 if test -f y.tab.h; then \
165 if cmp -s y.tab.h $*.h; then rm -f y.tab.h; else mv y.tab.h $*.h; fi; \
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Dmissing84 bison create \`y.tab.[ch]', if possible, from existing .[ch]
90 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
219 rm -f y.tab.c y.tab.h
226 cp "$SRCFILE" y.tab.c
230 cp "$SRCFILE" y.tab.h
235 if test ! -f y.tab.h; then
236 echo >y.tab.h
238 if test ! -f y.tab.c; then
239 echo 'main() { return 0; }' >y.tab
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/scripts/
H A Dmissing82 bison create \`y.tab.[ch]', if possible, from existing .[ch]
88 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
227 rm -f y.tab.c y.tab.h
234 cp "$SRCFILE" y.tab.c
238 cp "$SRCFILE" y.tab.h
243 if test ! -f y.tab.h; then
244 echo >y.tab.h
246 if test ! -f y.tab.c; then
247 echo 'main() { return 0; }' >y.tab
[all...]
/haiku-fatelf/src/servers/app/stackandtile/
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);
/haiku-fatelf/src/libs/alm/
H A DALMLayout.cpp72 bool AttempAdd(T* tab) argument
74 if (fLayout->_HasTabInLayout(tab))
76 if (!fLayout->_AddedTab(tab))
78 fTab = tab;
82 if (!tabList->AddItem(tab, index))
234 // the Left tab is always at x-position 0, and the Top tab is always at
328 * Adds a new x-tab to the specification.
330 * @return the new x-tab
335 BReference<XTab> tab(ne
458 IndexOf(XTab* tab, bool ordered) argument
470 IndexOf(YTab* tab, bool ordered) argument
1203 XTab* tab; local
1216 YTab* tab; local
1451 _RemoveSelfFromTab(XTab* tab) argument
1452 _RemoveSelfFromTab(YTab* tab) argument
1454 _HasTabInLayout(XTab* tab) argument
1455 _HasTabInLayout(YTab* tab) argument
1457 _AddedTab(XTab* tab) argument
1458 _AddedTab(YTab* tab) argument
[all...]
/haiku-fatelf/src/apps/devices/
H A DResourceUsageWindow.cpp253 BTab *tab = new BTab(); local
254 tabView->AddTab(IRQScrollView, tab);
255 tab->SetLabel(B_TRANSLATE("IRQ"));
256 tab = new BTab();
257 tabView->AddTab(DMAScrollView, tab);
258 tab->SetLabel(B_TRANSLATE("DMA"));
259 tab = new BTab();
260 tabView->AddTab(IORangeScrollView, tab);
261 tab->SetLabel(B_TRANSLATE("IO Range"));
262 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/apps/terminal/
H A DSmartTabView.cpp11 /*! The SmartTabView class is a BTabView descendant that hides the tab bar
12 as long as there is only a single tab.
13 Furthermore, it provides a tab context menu, as well as allowing you to
42 // Resize the container view to fill the complete tab view for single-tab
43 // mode. Later, when more than one tab is added, we shrink the container
129 SmartTabView::AddTab(BView* target, BTab* tab) argument
134 BTabView::AddTab(target, tab);
137 // Call select on the tab, since
178 // Hide the tab ba
222 BTab* tab = BTabView::RemoveTab(index); local
[all...]

Completed in 160 milliseconds

12345