Lines Matching refs:index

64 // Specifying an index/entry_ref that no longer exists will be handled well.
113 "delete Entry {path|index} # deletes specified entries in a PoseView",
123 "get Entry [next|previous|index] # returns specified entries",
132 "execute Entry {path|index} # opens specified entries",
169 "create selection of ... to {entry|index} "
179 "delete selection {path|index} of ... "
220 int32 index = 0;
223 status_t result = message->GetCurrentSpecifier(&index, &specifier,
226 if (result != B_OK || index == -1)
280 for (int32 index = 0; specifier->FindRef("refs", index, &ref)
281 == B_OK; index++)
284 // move all poses specified by index to Trash
286 for (int32 index = 0; specifier->FindInt32("index", index,
287 &specifyingIndex) == B_OK; index++) {
335 for (int32 index = 0; specifier->FindRef("data", index, &ref)
336 == B_OK; index++) {
352 for (int32 index = 0; specifier->FindInt32("data", index,
353 &specifyingIndex) == B_OK; index++) {
388 for (int32 index = 0; specifier->FindRef("refs", index, &ref)
389 == B_OK; index++) {
403 // move all poses specified by index to Trash
405 for (int32 index = 0; specifier->FindInt32("index", index,
406 &specifyingIndex) == B_OK; index++) {
430 for (int32 index = 0; specifier->FindRef("refs", index, &ref)
431 == B_OK; index++) {
435 // move all poses specified by index to Trash
437 for (int32 index = 0; specifier->FindInt32("index", index,
438 &specifyingIndex) == B_OK; index++) {
513 for (int32 index = 0; index < count; index++) {
514 reply->AddRef("result", fSelectionList->ItemAt(index)->
524 // return entry and index of selected pose before or after
547 reply->AddInt32("index", IndexOfPose(pose));
562 for (int32 index = 0; index < count; index++) {
564 PoseAtIndex(index)->TargetModel()->EntryRef());
573 // return entry at index
574 int32 index;
575 if (specifier->FindInt32("index", &index) != B_OK)
578 if (!PoseAtIndex(index)) {
584 PoseAtIndex(index)->TargetModel()->EntryRef());
593 // return entry and index of pose before or after
609 reply->AddInt32("index", IndexOfPose(pose));
659 for (int32 index = 0; message->FindRef("data", index, &ref)
660 == B_OK; index++) {
693 BPoseView::ResolveSpecifier(BMessage* message, int32 index,
699 int32 result = propertyInfo.FindMatch(message, index, specifier, form,
703 return _inherited::ResolveSpecifier(message, index, specifier,
713 int32* index) const
717 BPose* pose = FindPose(ref, index);
720 return PoseAtIndex(--*index);
722 return PoseAtIndex(++*index);