Searched refs:toIndex (Results 26 - 39 of 39) sorted by relevance

12

/haiku/src/kits/interface/textview_support/
H A DStyleBuffer.cpp407 int32 toIndex = fStyleRunDesc.OffsetToRun(toOffset) - 1; local
409 int32 count = toIndex - fromIndex;
412 toIndex = fromIndex;
417 if (toIndex == fromIndex && toIndex < fStyleRunDesc.ItemCount() - 1) {
418 STEStyleRunDesc* runDesc = fStyleRunDesc[toIndex + 1];
573 int32 toIndex = OffsetToRun(toOffset - 1); local
575 if (fromIndex == toIndex) {
592 int32 styleIndex = fStyleRunDesc[toIndex]->index;
595 for (int32 i = fromIndex; i < toIndex;
[all...]
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.h92 virtual void MoveItems(const BList& indices, int32 toIndex);
93 virtual void CopyItems(const BList& indices, int32 toIndex);
H A DPlaylistListView.cpp483 PlaylistListView::MoveItems(const BList& indices, int32 toIndex) argument
486 indices, toIndex));
491 PlaylistListView::CopyItems(const BList& indices, int32 toIndex) argument
494 indices, toIndex));
H A DListViews.cpp667 DragSortableListView::CopyItems(const BList& indices, int32 toIndex) argument
685 if (AddItem(item, toIndex)) {
687 Select(toIndex, true);
689 toIndex++;
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.h90 virtual void MoveItems(BList& items, int32 toIndex);
91 virtual void CopyItems(BList& items, int32 toIndex);
/haiku/src/apps/debuganalyzer/gui/
H A DHeaderView.cpp390 int32 toIndex)
462 HeaderModel::MoveHeader(int32 fromIndex, int32 toIndex) argument
466 || toIndex < 0 || toIndex >= headerCount) {
470 if (fromIndex == toIndex)
474 fHeaders.AddItem(header, toIndex);
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, int32 toIndex) argument
389 HeaderMoved(HeaderModel* model, int32 fromIndex, int32 toIndex) argument
[all...]
/haiku/headers/os/support/
H A DStringList.h41 bool Move(int32 fromIndex, int32 toIndex);
/haiku/src/apps/icon-o-matic/gui/
H A DTransformerListView.cpp299 TransformerListView::MoveItems(BList& items, int32 toIndex) argument
317 fShape->Transformers(), transformers, count, toIndex);
328 TransformerListView::CopyItems(BList& items, int32 toIndex) argument
330 MoveItems(items, toIndex);
H A DShapeListView.cpp456 ShapeListView::MoveItems(BList& items, int32 toIndex) argument
473 fShapeContainer, shapes, count, toIndex);
484 ShapeListView::CopyItems(BList& items, int32 toIndex) argument
499 shapes, count, toIndex);
H A DPathListView.cpp570 PathListView::MoveItems(BList& items, int32 toIndex) argument
587 paths, count, toIndex);
598 PathListView::CopyItems(BList& items, int32 toIndex) argument
613 paths, count, true, toIndex);
H A DStyleListView.cpp492 StyleListView::MoveItems(BList& items, int32 toIndex) argument
509 fStyleContainer, styles, count, toIndex);
520 StyleListView::CopyItems(BList& items, int32 toIndex) argument
535 = new (nothrow) AddCommand<Style>(fStyleContainer, styles, count, true, toIndex);
/haiku/src/kits/support/
H A DStringList.cpp223 BStringList::Move(int32 fromIndex, int32 toIndex) argument
225 return fStrings.MoveItem(fromIndex, toIndex);
/haiku/src/kits/interface/layouter/
H A DComplexLayouter.cpp791 Beyond \a toIndex or at \a to toIndex after (and including)
796 ComplexLayouter::_PropagateChanges(SumItem* sums, int32 toIndex, argument
802 bool ignoreMaxConstraints = (i > toIndex);
/haiku/src/system/kernel/vm/
H A DVMAnonymousCache.cpp525 off_t toIndex = toOffset >> PAGE_SHIFT; local
527 pageIndex < toIndex && fAllocatedSwapSize > 0; pageIndex++) {

Completed in 140 milliseconds

12