Searched refs:fAppList (Results 1 - 7 of 7) sorted by relevance

/haiku/src/servers/registrar/
H A DRecentApps.cpp38 /*! \var std::list<std::string> RecentApps::fAppList
94 for (i = fAppList.begin(); i != fAppList.end(); i++) {
96 fAppList.erase(i);
103 fAppList.push_front(appSig);
108 int32 remove = fAppList.size() - kMaxRecentApps;
110 fAppList.pop_back();
171 for (item = fAppList.begin();
172 status == B_OK && counter < maxCount && item != fAppList.end();
192 fAppList
[all...]
H A DRecentApps.h66 std::list<std::string> fAppList; member in class:RecentApps
H A DTRoster.cpp2019 fRecentApps.fAppList.push_back(app);
/haiku/src/apps/packageinstaller/
H A DUninstallView.cpp104 fAppList->SetTarget(this);
180 int32 i, count = fAppList->CountItems();
183 iter = static_cast<InfoItem *>(fAppList->ItemAt(i));
185 if (i == fAppList->CurrentSelection())
187 fAppList->RemoveItem(i);
216 int32 index = fAppList->CurrentSelection();
222 InfoItem* item = dynamic_cast<InfoItem*>(fAppList->ItemAt(index));
247 int32 index = fAppList->CurrentSelection();
253 BListItem* item = fAppList->RemoveItem(index);
293 fAppList
[all...]
H A DUninstallView.h45 BListView* fAppList; member in class:UninstallView
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.cpp87 fAppList = new BList();
127 ServerApp *app = (ServerApp *)sAppServer->fAppList->ItemAt(i++);
276 fAppList->AddItem(app);
297 int32 i = 0, appnum = fAppList->CountItems();
308 srvapp = (ServerApp *)fAppList->ItemAt(i);
311 srvapp = (ServerApp *)fAppList->RemoveItem(i);
344 for (int32 i = 0; i < fAppList->CountItems(); i++) {
345 ServerApp *app = (ServerApp *)fAppList->ItemAt(i);
373 for(int32 i=0; i<fAppList->CountItems();i++)
375 foundapp=(ServerApp*)fAppList
[all...]
H A DAppServer.h66 BList *fAppList; member in class:AppServer

Completed in 50 milliseconds