Symbol: fCurrentIndex
src/apps/deskbar/Switcher.cpp
1014
TTeamGroup* teamGroup = (TTeamGroup*)fGroupList.ItemAt(fCurrentIndex);
src/apps/deskbar/Switcher.cpp
1015
if (fCurrentIndex == fGroupList.CountItems() - 1) {
src/apps/deskbar/Switcher.cpp
1050
TTeamGroup* teamGroup = (TTeamGroup*)fGroupList.ItemAt(fCurrentIndex);
src/apps/deskbar/Switcher.cpp
1195
return fCurrentIndex;
src/apps/deskbar/Switcher.cpp
414
fCurrentIndex(0),
src/apps/deskbar/Switcher.cpp
495
if (i <= fCurrentIndex) {
src/apps/deskbar/Switcher.cpp
496
fCurrentIndex--;
src/apps/deskbar/Switcher.cpp
666
fCurrentIndex = FindTeam(appInfo.team, &index) != NULL ? index : 0;
src/apps/deskbar/Switcher.cpp
669
fQuickSwitchIndex = fCurrentIndex;
src/apps/deskbar/Switcher.cpp
734
SwitchToApp(fCurrentIndex, fCurrentIndex, forward);
src/apps/deskbar/Switcher.cpp
786
int32 current = fCurrentIndex;
src/apps/deskbar/Switcher.cpp
790
fCurrentIndex = current;
src/apps/deskbar/Switcher.cpp
804
int32 max = CountWindows(fCurrentIndex);
src/apps/deskbar/Switcher.cpp
833
int32 startIndex = fCurrentIndex;
src/apps/deskbar/Switcher.cpp
837
SwitchToApp(startIndex, fCurrentIndex, forward);
src/apps/deskbar/Switcher.cpp
855
fCurrentIndex++;
src/apps/deskbar/Switcher.cpp
856
if (fCurrentIndex >= max)
src/apps/deskbar/Switcher.cpp
857
fCurrentIndex = 0;
src/apps/deskbar/Switcher.cpp
859
fCurrentIndex--;
src/apps/deskbar/Switcher.cpp
860
if (fCurrentIndex < 0)
src/apps/deskbar/Switcher.cpp
861
fCurrentIndex = max - 1;
src/apps/deskbar/Switcher.cpp
873
fCurrentIndex = current;
src/apps/deskbar/Switcher.cpp
874
fCurrentSlot = fWindow->SlotOf(fCurrentIndex);
src/apps/deskbar/Switcher.cpp
877
fWindow->Update(previous, fCurrentIndex, previousSlot, fCurrentSlot,
src/apps/deskbar/Switcher.cpp
888
client_window_info* windowInfo = WindowInfo(fCurrentIndex, fCurrentWindow);
src/apps/deskbar/Switcher.cpp
890
windowInfo = WindowInfo(fCurrentIndex, 0);
src/apps/deskbar/Switcher.cpp
896
TTeamGroup* teamGroup = (TTeamGroup*)fGroupList.ItemAt(fCurrentIndex);
src/apps/deskbar/Switcher.h
108
int32 fCurrentIndex;
src/apps/mediaplayer/playlist/Playlist.cpp
268
if (index <= fCurrentIndex)
src/apps/mediaplayer/playlist/Playlist.cpp
269
SetCurrentItemIndex(fCurrentIndex + 1, false);
src/apps/mediaplayer/playlist/Playlist.cpp
298
if (index <= fCurrentIndex)
src/apps/mediaplayer/playlist/Playlist.cpp
299
SetCurrentItemIndex(fCurrentIndex + count);
src/apps/mediaplayer/playlist/Playlist.cpp
319
if (index < fCurrentIndex)
src/apps/mediaplayer/playlist/Playlist.cpp
320
SetCurrentItemIndex(fCurrentIndex - 1, false);
src/apps/mediaplayer/playlist/Playlist.cpp
321
else if (index == fCurrentIndex) {
src/apps/mediaplayer/playlist/Playlist.cpp
322
if (fCurrentIndex == CountItems())
src/apps/mediaplayer/playlist/Playlist.cpp
323
fCurrentIndex--;
src/apps/mediaplayer/playlist/Playlist.cpp
324
SetCurrentItemIndex(fCurrentIndex, true);
src/apps/mediaplayer/playlist/Playlist.cpp
369
if (index == fCurrentIndex && !notify)
src/apps/mediaplayer/playlist/Playlist.cpp
372
fCurrentIndex = index;
src/apps/mediaplayer/playlist/Playlist.cpp
373
_NotifyCurrentItemChanged(fCurrentIndex, notify);
src/apps/mediaplayer/playlist/Playlist.cpp
381
return fCurrentIndex;
src/apps/mediaplayer/playlist/Playlist.cpp
389
*canSkipPrevious = fCurrentIndex > 0;
src/apps/mediaplayer/playlist/Playlist.cpp
391
*canSkipNext = fCurrentIndex < CountItems() - 1;
src/apps/mediaplayer/playlist/Playlist.h
148
int32 fCurrentIndex;
src/kits/tracker/AttributeStream.cpp
450
fCurrentIndex = -1;
src/kits/tracker/AttributeStream.cpp
579
if (fCurrentIndex + 1 >= fAttributes.CountItems())
src/kits/tracker/AttributeStream.cpp
582
return &fAttributes.ItemAt(++fCurrentIndex)->fAttr;
src/kits/tracker/AttributeStream.cpp
589
ASSERT(fCurrentIndex < fAttributes.CountItems());
src/kits/tracker/AttributeStream.cpp
591
return fAttributes.ItemAt(fCurrentIndex)->fData;
src/kits/tracker/AttributeStream.cpp
598
ASSERT(fCurrentIndex < fAttributes.CountItems());
src/kits/tracker/AttributeStream.cpp
599
memcpy(buffer, fAttributes.ItemAt(fCurrentIndex)->fData,
src/kits/tracker/AttributeStream.cpp
600
(size_t)fAttributes.ItemAt(fCurrentIndex)->fAttr.Size());
src/kits/tracker/AttributeStream.cpp
613
fCurrentIndex(-1),
src/kits/tracker/AttributeStream.cpp
633
fCurrentIndex = -1;
src/kits/tracker/AttributeStream.cpp
640
if (fCurrentIndex + 1 >= fCount)
src/kits/tracker/AttributeStream.cpp
643
++fCurrentIndex;
src/kits/tracker/AttributeStream.cpp
645
fCurrentAttr.SetTo(fAttributes[fCurrentIndex].fAttributeName,
src/kits/tracker/AttributeStream.cpp
646
fAttributes[fCurrentIndex].fAttributeType,
src/kits/tracker/AttributeStream.cpp
647
fAttributes[fCurrentIndex].fSize);
src/kits/tracker/AttributeStream.cpp
656
ASSERT(fCurrentIndex < fCount);
src/kits/tracker/AttributeStream.cpp
658
return fAttributes[fCurrentIndex].fBits;
src/kits/tracker/AttributeStream.cpp
665
ASSERT(fCurrentIndex < fCount);
src/kits/tracker/AttributeStream.cpp
666
memcpy(buffer, fAttributes[fCurrentIndex].fBits,
src/kits/tracker/AttributeStream.cpp
667
(size_t)fAttributes[fCurrentIndex].fSize);
src/kits/tracker/AttributeStream.h
237
int32 fCurrentIndex;
src/kits/tracker/AttributeStream.h
263
int32 fCurrentIndex;
src/kits/tracker/EntryIterator.cpp
467
if (fCurrentIndex >= fList.CountItems()) {
src/kits/tracker/EntryIterator.cpp
472
fStatus = fList.ItemAt(fCurrentIndex)->GetNextEntry(entry, traverse);
src/kits/tracker/EntryIterator.cpp
476
fCurrentIndex++;
src/kits/tracker/EntryIterator.cpp
486
if (fCurrentIndex >= fList.CountItems()) {
src/kits/tracker/EntryIterator.cpp
491
fStatus = fList.ItemAt(fCurrentIndex)->GetNextRef(ref);
src/kits/tracker/EntryIterator.cpp
495
fCurrentIndex++;
src/kits/tracker/EntryIterator.cpp
507
if (fCurrentIndex >= fList.CountItems()) {
src/kits/tracker/EntryIterator.cpp
512
result = fList.ItemAt(fCurrentIndex)->GetNextDirents(buffer, length,
src/kits/tracker/EntryIterator.cpp
519
fCurrentIndex++;
src/kits/tracker/EntryIterator.cpp
528
fCurrentIndex = 0;
src/kits/tracker/EntryIterator.cpp
544
result += fList.ItemAt(fCurrentIndex)->CountEntries();
src/kits/tracker/EntryIterator.h
193
int32 fCurrentIndex;
src/preferences/mail/FilterConfigView.cpp
287
_SaveConfig(fCurrentIndex);
src/preferences/mail/FilterConfigView.cpp
309
fCurrentIndex = index;
src/preferences/mail/FilterConfigView.cpp
377
_SaveConfig(fCurrentIndex);
src/preferences/mail/FilterConfigView.h
57
int32 fCurrentIndex;