Lines Matching refs:index

180 		"... of PlaylistTrack { index } of ...", 0
544 int32 index;
549 if (msg->GetCurrentSpecifier(&index, &specifier, &what, &property) != B_OK)
553 int32 match = propertyInfo.FindMatch(msg, index, &specifier, what, property);
648 int32 i = msg->GetInt32("index", fPlaylist->CountItems());
701 if (specifier.FindInt32("index", &i) != B_OK || i >= count) {
724 if (match == 14 && (specifier.FindInt32("index", &i) != B_OK
731 if (msg->GetCurrentSpecifier(&index, &specifier, &what, &property) != B_OK)
744 switch (itemPropertyInfo.FindMatch(msg, index, &specifier, what, property)) {
826 // fakePlaylistMessage.AddInt32("index",
844 int32 index;
846 && msg->FindInt32("index", &index) == B_OK) {
847 _AddPlaylistItem(item, index);
853 int32 index;
854 if (msg->FindInt32("index", &index) == B_OK)
855 _RemovePlaylistItem(index);
862 int32 index;
867 if (msg->FindInt32("index", &index) < B_OK
868 || index != fPlaylist->CurrentItemIndex())
870 PlaylistItemRef item(fPlaylist->ItemAt(index));
874 _MarkPlaylistItem(index);
935 int32 index;
936 if (msg->FindInt32("index", &index) == B_OK) {
939 item->SetMarked(i == index);
947 int32 index;
948 if (msg->FindInt32("index", &index) == B_OK) {
951 item->SetMarked(i == index);
954 _UpdateAudioChannelCount(index);
960 int32 index;
961 if (msg->FindInt32("index", &index) == B_OK) {
967 - M_SELECT_SUB_TITLE_TRACK == index);
1179 int32 index;
1180 if (msg->FindInt32("index", &index) == B_OK)
1181 fPlaylist->SetCurrentItemIndex(index);
1312 if (playlistArchive->FindInt32("index", &currentIndex) != B_OK)
1522 // store playlist, current index and position if this is audio
1534 || playlistArchive.AddInt32("index",
1544 MainWin::ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier,
1548 if (propertyInfo.FindMatch(message, index, specifier, what, property)
1552 return BWindow::ResolveSpecifier(message, index, specifier, what, property);
2483 removeMessage.AddInt32("playlist index",
2912 MainWin::_AddPlaylistItem(PlaylistItem* item, int32 index)
2915 message->AddInt32("index", index);
2917 fPlaylistMenu->AddItem(menuItem, index);
2922 MainWin::_RemovePlaylistItem(int32 index)
2924 delete fPlaylistMenu->RemoveItem(index);
2929 MainWin::_MarkPlaylistItem(int32 index)
2931 if (BMenuItem* item = fPlaylistMenu->ItemAt(index)) {