Searched refs:itInsertionPt (Results 1 - 6 of 6) sorted by relevance

/haiku/src/apps/haikudepot/packagemanagement/
H A DInstallPackageProcess.cpp296 std::vector<DownloadProgress>::iterator itInsertionPt local
301 if (itInsertionPt != fDownloadProgresses.end()) {
302 if ((*itInsertionPt).PackageName() == simplePackageName) {
303 itInsertionPt = fDownloadProgresses.erase(itInsertionPt);
307 fDownloadProgresses.insert(itInsertionPt, downloadProgress);
/haiku/src/apps/haikudepot/packagemodel/
H A DDepotInfo.cpp119 std::vector<PackageInfoRef>::iterator itInsertionPt local
125 fPackages.insert(itInsertionPt, package);
H A DPackageInfo.cpp320 std::vector<CategoryRef>::const_iterator itInsertionPt local
327 if (itInsertionPt == fCategories.end()) {
/haiku/src/apps/haikudepot/model/
H A DModel.cpp969 std::vector<RatingStabilityRef>::iterator itInsertionPt = local
973 if (itInsertionPt != fRatingStabilities.end()
974 && (*itInsertionPt)->Code() == value->Code()) {
975 itInsertionPt = fRatingStabilities.erase(itInsertionPt);
979 fRatingStabilities.insert(itInsertionPt, value);
1034 std::vector<CategoryRef>::iterator itInsertionPt = local
1037 if (itInsertionPt != fCategories.end()
1038 && (*itInsertionPt)->Code() == category->Code()) {
1039 itInsertionPt
[all...]
H A DLanguageModel.cpp69 std::vector<LanguageRef>::iterator itInsertionPt local
73 fSupportedLanguages.insert(itInsertionPt, value);
/haiku/src/apps/haikudepot/ui/
H A DFeaturedPackagesView.cpp292 std::vector<PackageInfoRef>::iterator itInsertionPt local
296 if (itInsertionPt == fPackages.end()
297 || package->Name() != (*itInsertionPt)->Name()) {
300 fPackages.begin(), itInsertionPt);
303 fPackages.insert(itInsertionPt, package);

Completed in 42 milliseconds