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

/haiku-fatelf/src/add-ons/decorators/BeDecorator/
H A DBeDecorator.cpp336 float tabSize = (fLook != kLeftTitledWindowLook local
338 if (tabSize < fMinTabSize)
339 tabSize = fMinTabSize;
340 if (tabSize > fMaxTabSize)
341 tabSize = fMaxTabSize;
345 fTabRect.right = fTabRect.left + tabSize;
347 fTabRect.bottom = fTabRect.top + tabSize;
960 float tabSize; local
963 tabSize = fRightBorder.right - fLeftBorder.left;
965 tabSize
[all...]
/haiku-fatelf/src/servers/app/decorator/
H A DDefaultDecorator.cpp447 float tabSize; local
448 tabOffset = _SingleTabOffsetAndSize(tabSize);
505 float tabSize = (tab->look != kLeftTitledWindowLook local
507 if (tabSize < tab->minTabSize)
508 tabSize = tab->minTabSize;
509 if (tabSize > tab->maxTabSize)
510 tabSize = tab->maxTabSize;
514 tabRect.right = tabRect.left + tabSize;
516 tabRect.bottom = tabRect.top + tabSize;
1253 float tabSize; local
1637 float tabSize = fTopTab->look == kLeftTitledWindowLook ? local
1898 _SingleTabOffsetAndSize(float& tabSize) argument
[all...]
H A DDefaultDecorator.h184 inline float _SingleTabOffsetAndSize(float& tabSize);
/haiku-fatelf/src/apps/stylededit/
H A DStyledEditView.cpp225 int32 tabSize = (int32)ceilf(TabWidth() / StringWidth("s")); local
230 while (column % tabSize)
/haiku-fatelf/src/servers/app/
H A DDesktop.cpp2249 float tabSize = 0.0; local
2257 tabSize = tabFrame.bottom - tabFrame.top;
2267 sender.Attach<float>(tabSize);
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dxmlregexp.c6130 int tabSize; member in struct:_xmlExpCtxt
7476 if (ctxt->tabSize == 0)
7477 ctxt->tabSize = 40;
7479 tab = (const xmlChar **) xmlMalloc(ctxt->tabSize *
7488 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);
7491 temp = (const xmlChar **) xmlRealloc((xmlChar **) tab, ctxt->tabSize * 2 *
7498 ctxt->tabSize *= 2;
7499 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);

Completed in 73 milliseconds