Searched refs:model (Results 126 - 150 of 195) sorted by path

12345678

/haiku/src/apps/haikudepot/ui/
H A DPackageListView.h27 PackageListView(Model* model);
H A DRatePackageWindow.cpp173 Model& model)
178 fModel(model),
172 RatePackageWindow(BWindow* parent, BRect frame, Model& model) argument
H A DRatePackageWindow.h30 Model& model);
H A DScreenshotWindow.cpp40 ScreenshotWindow::ScreenshotWindow(BWindow* parent, BRect frame, Model* model) argument
48 fModel(model)
H A DScreenshotWindow.h33 ScreenshotWindow(BWindow* parent, BRect frame, Model* model);
H A DSettingsWindow.cpp32 SettingsWindow::SettingsWindow(BWindow* parent, Model* model) argument
38 fModel(model)
H A DSettingsWindow.h25 SettingsWindow(BWindow* parent, Model* model);
H A DToLatestUserUsageConditionsWindow.cpp53 Model& model, const UserDetail& userDetail)
59 fModel(model),
51 ToLatestUserUsageConditionsWindow( BWindow* parent, Model& model, const UserDetail& userDetail) argument
H A DToLatestUserUsageConditionsWindow.h28 Model& model, const UserDetail& userDetail);
H A DUserLoginWindow.cpp122 UserLoginWindow::UserLoginWindow(BWindow* parent, BRect frame, Model& model) argument
132 fModel(model),
1082 /*! Take the data from the user interface and put it into a model object to be
H A DUserLoginWindow.h35 Model& model);
H A DUserUsageConditionsWindow.cpp53 UserUsageConditionsWindow::UserUsageConditionsWindow(Model& model, argument
61 fModel(model),
98 Model& model, UserUsageConditionsSelectionMode mode)
105 fModel(model),
97 UserUsageConditionsWindow( Model& model, UserUsageConditionsSelectionMode mode) argument
H A DUserUsageConditionsWindow.h27 UserUsageConditionsWindow(Model& model,
29 UserUsageConditionsWindow(Model& model,
/haiku/src/apps/text_search/
H A DGrepper.cpp91 Grepper::Grepper(const char* pattern, const Model* model, argument
95 fRegularExpression(model->fRegularExpression),
96 fCaseSensitive(model->fCaseSensitive),
97 fEncoding(model->fEncoding),
/haiku/src/bin/
H A Dsysinfo.cpp219 print_intel_cache_descriptors(enum cpu_vendor vendor, uint32 model, argument
274 ((model >> 8) & 0xf) == 0xf
460 info->eax_1.model, info->eax_1.stepping);
462 printf("Type %" B_PRIu32 ", family %" B_PRIu32 ", model %" B_PRIu32
467 info->eax_1.model + (info->eax_1.model == 0xf
471 // model calculation is different for INTEL
472 printf("Type %" B_PRIu32 ", family %" B_PRIu32 ", model %" B_PRIu32
477 info->eax_1.model
516 dump_cpu(enum cpu_vendor vendor, uint32 model, int3 argument
712 const char *model = get_cpu_model_string(platform, cpuVendor, cpuModel); local
[all...]
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp281 cpuModel = topology[i].data.core.model;
294 const char* model = get_cpu_model_string(platform, cpuVendor, cpuModel); local
298 model != NULL ? model : "unknown");
/haiku/src/kits/tracker/
H A DContainerWindow.cpp241 AddOneAddOn(const Model* model, const char* name, uint32 shortcut, argument
248 message->AddRef("refs", model->EntryRef());
250 ModelMenuItem* item = new ModelMenuItem(model, name, message,
253 const entry_ref* addOnRef = model->EntryRef();
338 AddMimeTypeString(BStringList& list, Model* model) argument
340 if (model == NULL)
343 const char* modelMimeType = model->MimeType();
606 BContainerWindow::NewPoseView(Model* model, uint32 viewMode) argument
608 return new BPoseView(model, viewMode);
613 BContainerWindow::UpdateIfTrash(Model* model) argument
626 CreatePoseView(Model* model) argument
2085 Model* model local
2297 Model model; local
4268 SetTo(Model* model, bool forWriting) argument
[all...]
H A DContainerWindow.h84 Model* model; member in struct:BPrivate::AddOnShortcut
H A DDeskWindow.cpp82 if (strcmp(item->model->Name(), (const char*)castToName) == 0) {
92 AddOneShortcut(Model* model, char key, uint32 modifiers, BDeskWindow* window) argument
98 runAddOn->AddRef("refs", model->EntryRef());
112 AddOneShortcut(item->model, item->key, item->modifiers, window);
124 if (*item->model->EntryRef() == *other->EntryRef())
137 Model* model = new Model(&entry); local
138 if (model->InitCheck() == B_OK && model->IsSymLink()) {
140 Model* resolved = new Model(model->EntryRef(), true, true);
142 model
403 NewPoseView(Model* model, uint32 viewMode) argument
410 CreatePoseView(Model* model) argument
[all...]
H A DDraggableContainerIcon.cpp116 Model* model = window->TargetModel(); local
128 font.StringWidth(model->Name()) + 4), height);
153 IconCache::sIconCache->Draw(model, view, BPoint(hIconOffset, 0),
157 BString nameString = model->Name();
158 if (view->StringWidth(model->Name()) > rect.Width()) {
174 message.AddRef("refs", model->EntryRef());
H A DFSClipboard.cpp232 Model* model = pose->TargetModel(); local
233 const node_ref* node = model->NodeRef();
236 model->GetEntry(&entry);
237 if (model->IsVolume()
238 || model->IsRoot()
239 || model->IsTrash()
240 || model->IsDesktop())
248 if (clip->AddRef(refName, model->EntryRef()) == B_OK) {
263 if (clip->ReplaceRef(refName, model->EntryRef()) == B_OK) {
285 if (clip->AddRef(refName, model
366 FSClipboardPaste(Model* model, uint32 linksMode) argument
544 FSClipboardFindNodeMode(Model* model, bool autoLock, bool updateRefIfNeeded) argument
599 FSClipboardRemove(Model* model) argument
[all...]
H A DFSUtils.cpp764 EditModelName(const Model* model, const char* name, size_t length) argument
766 if (model == NULL || name == NULL || name[0] == '\0' || length <= 0)
769 BEntry entry(model->EntryRef());
774 // TODO: use model-flavor specific virtuals for these special renamings
776 if (model->HasLocalizedName() || model->IsDesktop() || model->IsRoot()
777 || model->IsTrash() || model->IsVirtualDirectory()) {
779 } else if (model
[all...]
H A DFSUtils.h266 status_t EditModelName(const Model* model, const char* name, size_t);
H A DFavoritesMenu.cpp172 Model model(&ref, true);
173 if (model.InitCheck() != B_OK)
176 if (!ShouldShowModel(&model))
179 BMenuItem* item = BNavMenu::NewModelItem(&model,
180 model.IsDirectory() ? fOpenFolderMessage : fOpenFileMessage,
193 fUniqueRefCheck.push_back(*model.EntryRef());
226 Model model(&ref, true);
227 if (model.InitCheck() != B_OK)
230 if (!ShouldShowModel(&model))
233 BMenuItem* item = BNavMenu::NewModelItem(&model,
331 ShouldShowModel(const Model* model) argument
[all...]
H A DFilePanelPriv.cpp94 GetLinkFlavor(const Model* model, bool resolve = true) argument
96 if (model && model->IsSymLink()) {
99 model = model->LinkTo();
101 if (!model)
104 if (model->IsDirectory())
214 Model* model = new Model(); local
218 if (model->SetTo(startDir) == B_OK && model
602 Model* model = selectionList->FirstItem()->TargetModel(); local
621 Model* model = selectionList->ItemAt(index)->TargetModel(); local
677 NewPoseView(Model* model, uint32) argument
1390 Model* model = (PoseView()->SelectionList()-> local
1686 Model* model = selection->FirstItem()->TargetModel(); local
1705 Model* model = selection->ItemAt(index)->TargetModel(); local
1757 BFilePanelPoseView(Model* model) argument
[all...]

Completed in 167 milliseconds

12345678