Searched refs:toIndex (Results 1 - 25 of 39) sorted by path

12

/haiku/headers/os/support/
H A DStringList.h41 bool Move(int32 fromIndex, 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...]
H A DHeaderView.h124 int32 fromIndex, int32 toIndex);
140 virtual bool MoveHeader(int32 fromIndex, int32 toIndex);
149 int32 toIndex);
205 int32 fromIndex, int32 toIndex);
/haiku/src/apps/mediaplayer/playlist/
H A DListViews.cpp667 DragSortableListView::CopyItems(const BList& indices, int32 toIndex) argument
685 if (AddItem(item, toIndex)) {
687 Select(toIndex, true);
689 toIndex++;
H A DListViews.h92 virtual void MoveItems(const BList& indices, int32 toIndex);
93 virtual void CopyItems(const BList& indices, int32 toIndex);
/haiku/src/apps/soundrecorder/
H A DDrawingTidbits.cpp57 uint32 toIndex = screen.IndexForColor(to); local
63 bits[index] = toIndex;
/haiku/src/kits/interface/layouter/
H A DComplexLayouter.h57 void _PropagateChanges(SumItem* sums, int32 toIndex,
/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...]
H A DTextGapBuffer.cpp308 TextGapBuffer::_MoveGapTo(int32 toIndex)
310 if (toIndex == fGapIndex)
312 if (toIndex > fItemCount) {
313 debugger("MoveGapTo: invalid toIndex supplied");
320 if (toIndex > fGapIndex) {
323 count = toIndex - fGapIndex;
325 srcIndex = toIndex;
326 dstIndex = toIndex + fGapCount;
327 count = fGapIndex- toIndex;
333 fGapIndex = toIndex;
[all...]
H A DTextGapBuffer.h50 void _MoveGapTo(int32 toIndex);
/haiku/src/apps/icon-o-matic/generic/command/
H A DMoveCommand.h42 int32 toIndex);
65 int32 toIndex)
70 fToIndex(toIndex),
77 // adjust toIndex compensating for items that
62 MoveCommand(Container<Type>* container, Type** items, int32 count, int32 toIndex) argument
/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/icon-o-matic/gui/
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 DPathListView.h57 virtual void MoveItems(BList& items, int32 toIndex);
58 virtual void CopyItems(BList& items, int32 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 DShapeListView.h58 virtual void MoveItems(BList& items, int32 toIndex);
59 virtual void CopyItems(BList& items, int32 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);
H A DStyleListView.h54 virtual void MoveItems(BList& items, int32 toIndex);
55 virtual void CopyItems(BList& items, int32 toIndex);
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 DTransformerListView.h52 virtual void MoveItems(BList& items, int32 toIndex);
53 virtual void CopyItems(BList& items, int32 toIndex);
/haiku/src/apps/icon-o-matic/shape/commands/
H A DMovePathsCommand.cpp24 VectorPath** paths, int32 count, int32 toIndex)
25 : MoveCommand<VectorPath>(container, paths, count, toIndex)
23 MovePathsCommand(Container<VectorPath>* container, VectorPath** paths, int32 count, int32 toIndex) argument
H A DMovePathsCommand.h31 int32 toIndex);
H A DMoveShapesCommand.cpp24 Shape** shapes, int32 count, int32 toIndex)
25 : MoveCommand<Shape>(container, shapes, count, toIndex)
23 MoveShapesCommand(Container<Shape>* container, Shape** shapes, int32 count, int32 toIndex) argument
H A DMoveShapesCommand.h30 int32 toIndex);
H A DMoveTransformersCommand.cpp24 Transformer** transformers, int32 count, int32 toIndex)
25 : MoveCommand<Transformer>(container, transformers, count, toIndex)
23 MoveTransformersCommand(Container<Transformer>* container, Transformer** transformers, int32 count, int32 toIndex) argument

Completed in 199 milliseconds

12