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

/haiku/src/system/kernel/util/
H A DBitmap.cpp92 Bitmap::GetLowestClear(size_t fromIndex) const
96 for (size_t i = fromIndex; i < fSize; i++) {
105 Bitmap::GetLowestContiguousClear(size_t count, size_t fromIndex) const
111 return fromIndex;
114 ssize_t index = GetLowestClear(fromIndex);
129 fromIndex = index + curCount;
/haiku/headers/private/kernel/util/
H A DBitmap.h40 ssize_t GetLowestClear(size_t fromIndex = 0) const;
41 ssize_t GetLowestContiguousClear(size_t count, size_t fromIndex = 0) const;
/haiku/src/kits/interface/textview_support/
H A DStyleBuffer.cpp406 int32 fromIndex = fStyleRunDesc.OffsetToRun(fromOffset); local
409 int32 count = toIndex - fromIndex;
411 RemoveStyles(fromIndex + 1, count);
412 toIndex = fromIndex;
415 fStyleRunDesc.BumpOffset(fromOffset - toOffset, fromIndex + 1);
417 if (toIndex == fromIndex && toIndex < fStyleRunDesc.ItemCount() - 1) {
422 if (fromIndex < fStyleRunDesc.ItemCount() - 1) {
423 STEStyleRunDesc* runDesc = fStyleRunDesc[fromIndex];
425 RemoveStyles(fromIndex);
426 fromIndex
572 int32 fromIndex = OffsetToRun(fromOffset); local
[all...]
H A DTextGapBuffer.h33 bool FindChar(char inChar, int32 fromIndex,
H A DTextGapBuffer.cpp193 TextGapBuffer::FindChar(char inChar, int32 fromIndex, int32* ioDelta)
197 char realChar = RealCharAt(fromIndex + i);
/haiku/src/apps/soundrecorder/
H A DDrawingTidbits.cpp56 uint32 fromIndex = screen.IndexForColor(from); local
62 if (bits[index] == fromIndex)
/haiku/src/apps/debuganalyzer/gui/
H A DHeaderView.h124 int32 fromIndex, int32 toIndex);
140 virtual bool MoveHeader(int32 fromIndex, int32 toIndex);
148 void NotifyHeaderMoved(int32 fromIndex,
205 int32 fromIndex, int32 toIndex);
H A DHeaderView.cpp389 HeaderModelListener::HeaderMoved(HeaderModel* model, int32 fromIndex, argument
462 HeaderModel::MoveHeader(int32 fromIndex, int32 toIndex) argument
465 if (fromIndex < 0 || fromIndex >= headerCount
470 if (fromIndex == toIndex)
473 Header* header = fHeaders.RemoveItemAt(fromIndex);
477 NotifyHeaderMoved(fromIndex, toIndex);
518 HeaderModel::NotifyHeaderMoved(int32 fromIndex, int32 toIndex) argument
522 listener->HeaderMoved(this, fromIndex, toIndex);
969 HeaderView::HeaderMoved(HeaderModel* model, int32 fromIndex, int3 argument
[all...]
/haiku/headers/os/interface/
H A DCardLayout.h48 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
H A DAbstractLayout.h54 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
H A DGroupLayout.h52 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
H A DLayout.h78 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
H A DGridLayout.h75 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
/haiku/headers/os/support/
H A DStringList.h41 bool Move(int32 fromIndex, int32 toIndex);
/haiku/src/kits/interface/
H A DAbstractLayout.cpp468 BAbstractLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument
470 BLayout::ItemRemoved(item, fromIndex);
H A DSplitLayout.h105 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
H A DGroupLayout.cpp256 BGroupLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument
H A DCardLayout.cpp282 BCardLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument
H A DLayout.cpp527 BLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument
H A DGridLayout.cpp596 BGridLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument
/haiku/src/kits/support/
H A DStringList.cpp223 BStringList::Move(int32 fromIndex, int32 toIndex) argument
225 return fStrings.MoveItem(fromIndex, toIndex);
/haiku/src/apps/debuganalyzer/gui/table/
H A DTable.h175 void _UpdateRowIndices(int32 fromIndex);
H A DTable.cpp704 Table::_UpdateRowIndices(int32 fromIndex) argument
706 for (int32 i = fromIndex; BRow* row = fRows.ItemAt(i); i++) {
/haiku/headers/libs/alm/
H A DALMLayout.h165 virtual void ItemRemoved(BLayoutItem* item, int32 fromIndex);
/haiku/src/libs/alm/
H A DALMLayout.cpp1298 BALMLayout::ItemRemoved(BLayoutItem* item, int32 fromIndex) argument

Completed in 133 milliseconds