Searched refs:sticky (Results 1 - 10 of 10) sorted by relevance

/haiku/src/system/libroot/os/arch/sparc/
H A Dfpu_mul.c65 * sticky |= A & 1, A >>= 1;
92 * part of the loop---setting sticky, shifting A, and not adding---will
104 int sticky; local
146 sticky = a3 = a2 = a1 = a0 = 0;
154 #define SHR1 /* A >>= 1, with sticky */ \
155 sticky |= a3 & 1, a3 = (a3 >> 1) | (a2 << 31), \
158 #define SHR32 /* A >>= 32, with sticky */ \
159 sticky |= a3, a3 = a2, a2 = a1, a1 = a0, a0 = 0
214 x->fp_sticky = sticky;
/haiku/src/kits/interface/
H A DToolTip.cpp26 bool sticky; local
27 if (archive->FindBool("sticky", &sticky) == B_OK)
28 fIsSticky = sticky;
45 status = archive->AddBool("sticky", fIsSticky);
H A DMenuBar.cpp39 bool sticky; member in struct:menubar_data
474 BMenuBar::StartMenuBar(int32 menuIndex, bool sticky, bool showMenu, argument
504 data.sticky = sticky;
530 menuBar->_SetStickyMode(data.sticky);
602 // Needed to make BMenuField child menus "sticky"
H A DMenu.cpp1394 BMenu::Track(bool sticky, BRect* clickToOpenRect) argument
1396 if (sticky && LockLooper()) {
1408 _SetStickyMode(sticky);
3142 BMenu::_SetStickyMode(bool sticky) argument
3144 if (fStickyMode == sticky)
3147 fStickyMode = sticky;
3151 fSuper->_SetStickyMode(sticky);
3155 if (sticky && menuBar != NULL && menuBar->LockLooper()) {
3156 // If we are switching to sticky mode,
3401 // Quit if user clicks the mouse button in sticky mod
[all...]
H A DColumnListView.cpp2906 BRect sticky(screenPosition, screenPosition);
2907 sticky.InsetBy(-5, -5);
2908 fColumnPop->Go(ConvertToScreen(position), true, false, sticky, true); local
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_if_media.c205 int error = 0, sticky; local
325 sticky = error;
337 error = sticky;
/haiku/headers/os/interface/
H A DMenuBar.h84 bool sticky = true, bool showMenu = false,
/haiku/src/bin/package/
H A Dcommand_list.cpp204 static const char* _PermissionString(char* buffer, uint32 mode, bool sticky) argument
210 buffer[2] = sticky ? 's' : 'x';
/haiku/src/apps/deskbar/
H A DBarWindow.cpp77 void StartMenuBar(int32 menuIndex, bool sticky = true, bool showMenu = false,
78 BRect* special_rect = NULL) { BMenuBar::StartMenuBar(menuIndex, sticky, showMenu,
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h1876 sticky:1, member in struct:icb_entry_tag::flags_accessor::__anon10

Completed in 125 milliseconds