Searched refs:IndexOf (Results 1 - 25 of 171) sorted by relevance

1234567

/haiku/src/tests/kits/app/blooper/
H A DIndexOfTest.cpp23 IndexOf(BHandler* handler)
26 @results IndexOf() returns B_ERROR
31 CPPUNIT_ASSERT(Looper.IndexOf(NULL) == B_ERROR);
35 IndexOf(BHandler* handler)
38 @results IndexOf() returns B_ERROR
44 CPPUNIT_ASSERT(Looper.IndexOf(&Handler) == B_ERROR);
48 IndexOf(BHandler* handler)
51 @results IndexOf returns 1
58 CPPUNIT_ASSERT(Looper.IndexOf(&Handler) == 1);
62 IndexOf(BHandle
[all...]
/haiku/headers/private/storage/
H A DResourcesContainer.h30 ResourceAt() and MakeEmpty() a bunch of IndexOf() methods are provided
58 int32 IndexOf(ResourceItem *item) const;
59 int32 IndexOf(const void *data) const;
60 int32 IndexOf(type_code type, int32 id) const;
61 int32 IndexOf(type_code type, const char *name) const;
/haiku/src/servers/registrar/
H A DAppInfoList.cpp118 return InfoAt(IndexOf(signature));
130 return InfoAt(IndexOf(team));
147 return InfoAt(IndexOf(ref));
226 // IndexOf
233 AppInfoList::IndexOf(RosterAppInfo *info) const function in class:AppInfoList
235 return fInfos.IndexOf(info);
238 // IndexOf
250 AppInfoList::IndexOf(const char *signature) const function in class:AppInfoList
261 // IndexOf
270 AppInfoList::IndexOf(team_i function in class:AppInfoList
291 AppInfoList::IndexOf(const entry_ref *ref) const function in class:AppInfoList
[all...]
H A DAppInfoList.h67 int32 IndexOf(RosterAppInfo *info) const;
68 int32 IndexOf(const char *signature) const;
69 int32 IndexOf(team_id team) const;
70 int32 IndexOf(const entry_ref *ref) const;
/haiku/src/kits/storage/
H A DResourcesContainer.cpp43 delete RemoveResource(IndexOf(item->Type(), item->ID()));
67 return RemoveResource(IndexOf(item));
101 // IndexOf
103 ResourcesContainer::IndexOf(ResourceItem *item) const function in class:BPrivate::Storage::ResourcesContainer
105 return fResources.IndexOf(item);
108 // IndexOf
110 ResourcesContainer::IndexOf(const void *data) const function in class:BPrivate::Storage::ResourcesContainer
123 // IndexOf
125 ResourcesContainer::IndexOf(type_code type, int32 id) const function in class:BPrivate::Storage::ResourcesContainer
137 // IndexOf
139 ResourcesContainer::IndexOf(type_code type, const char *name) const function in class:BPrivate::Storage::ResourcesContainer
[all...]
H A DResources.cpp271 resource = fContainer->ResourceAt(fContainer->IndexOf(type, id));
297 resource = fContainer->ResourceAt(fContainer->IndexOf(type, name));
452 return (InitCheck() == B_OK && fContainer->IndexOf(type, id) >= 0);
461 return (InitCheck() == B_OK && fContainer->IndexOf(type, name) >= 0);
516 item = fContainer->ResourceAt(fContainer->IndexOf(byType, andID));
534 item = fContainer->ResourceAt(fContainer->IndexOf(byType, andName));
552 item = fContainer->ResourceAt(fContainer->IndexOf(byPointer));
578 = fContainer->RemoveResource(fContainer->IndexOf(resource));
597 = fContainer->RemoveResource(fContainer->IndexOf(type, id));
625 ResourceItem *item = fContainer->ResourceAt(fContainer->IndexOf(typ
[all...]
/haiku/src/apps/icon-o-matic/generic/support/
H A DList.h35 inline int32 IndexOf(T value) const function in class:List
36 { return BList::IndexOf((void*)value); }
/haiku/headers/os/support/
H A DList.h53 int32 IndexOf(void* item) const;
54 int32 IndexOf(const void* item) const;
H A DStringList.h51 int32 IndexOf(const BString& string,
92 return IndexOf(string, ignoreCase) >= 0;
/haiku/src/add-ons/translators/wonderbrush/
H A DCanvas.h39 int32 IndexOf(Layer* layer) const;
H A DCanvas.cpp94 // IndexOf
96 Canvas::IndexOf(Layer* layer) const function in class:Canvas
98 return BList::IndexOf((void*)layer);
/haiku/src/preferences/time/
H A DTimeZoneListView.cpp44 this->ItemAt(this->IndexOf(point)));
/haiku/src/apps/icon-o-matic/
H A DUtil.cpp55 int32 insertIndex = other ? container->IndexOf(other) + 1
/haiku/src/apps/webpositive/tabview/
H A DTabContainerView.h50 int32 IndexOf(TabView* tab) const;
58 : IndexOf(fSelectedTab); };
/haiku/src/preferences/filetypes/
H A DMimeTypeListView.cpp369 InvalidateItem(IndexOf(last));
380 InvalidateItem(IndexOf(last));
387 InvalidateItem(IndexOf(last));
426 InvalidateItem(IndexOf(superItem));
523 InvalidateItem(IndexOf(item));
593 int32 index = IndexOf(item);
622 if (IndexOf(item) == CurrentSelection())
629 int32 index = IndexOf(item);
636 InvalidateItem(IndexOf(item));
/haiku/headers/os/interface/
H A DShelf.h79 int32 IndexOf(const BView* replicantView) const;
80 int32 IndexOf(const BMessage* archive) const;
81 int32 IndexOf(uint32 id) const;
/haiku/src/apps/mediaplayer/playlist/
H A DMovePLItemsCommand.cpp137 fPlaylist->SetCurrentItemIndex(fPlaylist->IndexOf(current), false);
171 fPlaylist->SetCurrentItemIndex(fPlaylist->IndexOf(current), false);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DList.h75 int32 IndexOf(const item_t &item) const;
218 int32 index = IndexOf(item);
293 // IndexOf
296 List<ITEM, DEFAULT_ITEM_SUPPLIER>::IndexOf(const item_t &item) const function in class:List
310 return (IndexOf(item) >= 0);
/haiku/src/kits/support/
H A DList.cpp184 int32 index = IndexOf(item);
358 return (IndexOf(item) >= 0);
365 return (IndexOf(item) >= 0);
370 BList::IndexOf(void* item) const function in class:BList
381 BList::IndexOf(const void* item) const function in class:BList
/haiku/src/apps/icon-o-matic/import_export/message/
H A DMessageExporter.cpp171 ret = into->AddInt32("style ref", globalStyles->IndexOf(style));
179 ret = into->AddInt32("path ref", globalPaths->IndexOf(path));
/haiku/src/libs/icon/
H A DIcon.cpp94 int32 styleIndex = other.fStyles.IndexOf(pathSourceShape->Style());
101 int32 index = other.fPaths.IndexOf(remote);
/haiku/src/tools/restest/
H A DResourceFile.h29 int32 IndexOf(ResourceItem* item) const;
/haiku/src/preferences/shortcuts/
H A DPopUpColumn.cpp45 msg->SetInt32("row", parent->IndexOf(row));
/haiku/src/kits/interface/
H A DShelf.cpp173 static int32 IndexOf(BList const *list, BMessage const *msg);
174 static int32 IndexOf(BList const *list, BView const *view, bool allowZombie);
175 static int32 IndexOf(BList const *list, unsigned long id);
367 replicant_data::IndexOf(BList const *list, BMessage const *msg) function in class:replicant_data
383 replicant_data::IndexOf(BList const *list, BView const *view, bool allowZombie) function in class:replicant_data
402 replicant_data::IndexOf(BList const *list, unsigned long id) function in class:replicant_data
961 int32 index = replicant_data::IndexOf(&fReplicants, replicant, true);
974 int32 index = replicant_data::IndexOf(&fReplicants, data);
1031 BShelf::IndexOf(const BView* replicantView) const function in class:BShelf
1033 return replicant_data::IndexOf(
1038 BShelf::IndexOf(const BMessage *archive) const function in class:BShelf
1045 BShelf::IndexOf(uint32 id) const function in class:BShelf
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DFolderConfigWindow.cpp177 fListView->InvalidateItem(fListView->IndexOf(this));
195 fListView->InvalidateItem(fListView->IndexOf(this));
215 int32 index = IndexOf(where);
235 int32 index = IndexOf(where);

Completed in 196 milliseconds

1234567