Lines Matching refs:name

25 Except as contained in this notice, the name of Be Incorporated shall not be
106 item->entryRef.device, item->entryRef.directory, item->entryRef.name);
134 // don't change the name of this view to anything other than "Status"!
597 const char* name;
598 if (message->FindString("name", &name) == B_OK
605 if (name == NULL)
608 ref.set_name(name);
725 item->entryRef.name = NULL;
815 if (strcmp(item->entryRef.name, ref->name) == 0
829 // existence of icon/replicant by name or ID
831 // note: name and id are semi-private limiting
836 * return the name of the replicant (name of view)
840 TReplicantTray::ItemInfo(int32 id, const char** name)
849 *name = view->Name();
857 /** for a specific name
862 TReplicantTray::ItemInfo(const char* name, int32* id)
864 if (name == NULL || *name == '\0')
868 BView* view = ViewAt(&index, id, name);
875 * return both the name and the id of the replicant
879 TReplicantTray::ItemInfo(int32 index, const char** name, int32* id)
887 *name = view->Name();
908 /** replicant exists, by name */
911 TReplicantTray::IconExists(const char* name)
913 if (name == NULL || *name == '\0')
918 BView* view = ViewAt(&index, &id, name);
986 // TODO: check for name collisions?
1037 TReplicantTray::RemoveIcon(const char* name)
1039 if (name == NULL || *name == '\0')
1044 BView* view = ViewAt(&index, &id, name);
1115 /** looking for a replicant with a view by name
1120 TReplicantTray::ViewAt(int32* index, int32* id, const char* name)
1130 && strcmp(name, view->Name()) == 0) {
1281 TReplicantTray::IconFrame(const char* name)
1283 if (name == NULL)
1288 BView* view = ViewAt(&index, &id, name);