Searched refs:name (Results 1 - 25 of 3725) sorted by last modified time

1234567891011>>

/haiku/src/kits/tracker/
H A DUtilities.h25 Except as contained in this notice, the name of Be Incorporated shall not be
222 FlickerFreeStringView(BRect bounds, const char* name,
225 FlickerFreeStringView(BRect bounds, const char* name,
248 DraggableIcon(BRect rect, const char* name, const char* mimeType,
292 Benaphore(const char* name = "Light Lock")
293 : fSemaphore(create_sem(0, name)),
330 SeparatorLine(BPoint, float, bool vertical, const char* name = "");
523 info.name, __FILE__, __LINE__); \
H A DWidgetAttributeText.cpp25 Except as contained in this notice, the name of Be Incorporated shall not be
554 // cannot do an empty name
781 const char* name = textView->Text(); local
787 result = EditModelName(fModel, name, length);
839 *outString = fModel->EntryRef()->name;
H A DFSUtils.cpp25 Except as contained in this notice, the name of Be Incorporated shall not be
42 // that have to do with size, reading/writing and name collisions.
157 "\t%name%dest\n"
159 "\t%name%src\n\n"
163 B_TRANSLATE_MARK("An item named \"%name\" already exists in "
168 B_TRANSLATE_MARK("An item named \"%name\" already exists in this "
177 B_TRANSLATE_MARK("Error copying file \"%name\":\n\t%error\n\n"
181 B_TRANSLATE_MARK("Error copying folder \"%name\":\n\t%error\n\n"
185 B_TRANSLATE_MARK("There was an error deleting \"%name\""
232 CopyLoopControl::FileError(const char* message, const char* name, argument
240 UpdateStatus(const char* name, const entry_ref& ref, int32 count, bool optional) argument
354 FileError(const char* message, const char* name, status_t error, bool allowContinue) argument
377 UpdateStatus(const char* name, const entry_ref&, int32 count, bool optional) argument
726 struct utsname name; local
764 EditModelName(const Model* model, const char* name, size_t length) argument
821 ShouldEditRefName(const entry_ref* ref, const char* name, size_t length) argument
1220 FailWithAlert(status_t error, const char* string, const char* name) argument
1555 char name[256]; local
1739 const char* name = entry->Name(); local
1786 char name[B_FILE_NAME_LENGTH]; local
1975 char name[256]; local
2068 char name[B_FILE_NAME_LENGTH]; local
2123 char name[B_FILE_NAME_LENGTH]; local
2243 const char* name = sourceEntry->Name(); local
2486 FSMakeOriginalName(char* name, BDirectory* destDir, const char* suffix) argument
3250 char name[B_FILE_NAME_LENGTH]; local
4094 AddOne(directory_which which, const char* name) argument
4110 AddOne(directory_which which, directory_which base, const char* extra, const char* name) argument
4128 AddOne(directory_which which, const char* path, const char* name) argument
[all...]
/haiku/src/kits/interface/
H A DTextView.cpp246 BTextView::BTextView(BRect frame, const char* name, BRect textRect, argument
249 BView(frame, name, resizeMask,
265 BTextView::BTextView(BRect frame, const char* name, BRect textRect, argument
269 BView(frame, name, resizeMask,
285 BTextView::BTextView(const char* name, uint32 flags) argument
287 BView(name,
303 BTextView::BTextView(const char* name, const BFont* initialFont, argument
306 BView(name,
/haiku/src/apps/processcontroller/
H A DProcessController.cpp347 "with the thread \"%s\"?"), thinfo.name);
358 "to kill the thread \"%s\"?"), thinfo.name);
888 if (strstr(info.name, "ProcessController") != NULL) {
/haiku/headers/private/file_systems/
H A DQueryParser.h555 // just to make sure; since that's the max. attribute name length and
728 } else if (!strcmp(fAttribute, "name")) {
729 // if not, check for "fake" attributes ("name", "size", "last_modified")
813 // Try to get an index that holds all files (name)
818 if (QueryPolicy::IndexSetTo(index, "name") != B_OK)
983 return strcmp(fAttribute, "name") == 0;
1460 // (i.e. the "name" attribute is used), we invoke ourselves for all entries
1528 status_t oldStatus = fExpression->Root()->Match(entry, node, "name",
1530 status_t newStatus = fExpression->Root()->Match(entry, node, "name",
1600 const char* name
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dvideo.cpp311 if (!strcmp(parameter.name, "mode") && parameter.value_count > 2) {
/haiku/src/apps/charactermap/
H A DCharacterView.cpp29 CharacterView::CharacterView(const char* name) argument
30 : BView(name, B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE | B_FRAME_EVENTS
527 DrawString(kUnicodeBlocks[i].name, BPoint(3, y + fTitleBase));
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPFolder.cpp54 BString name("temp-mail-");
55 name << system_time();
58 fPath.Append(name.String());
135 // TODO: mailbox name has changed
/haiku/src/servers/app/font/
H A DGlobalFontManager.cpp85 set_entry(node_ref& nodeRef, const char* name, BEntry& entry) argument
91 status_t status = ref.set_name(name);
159 const char* name; local
163 || message->FindString("name", &name) != B_OK)
171 if (set_entry(nodeRef, name, entry) != B_OK)
194 const char* name; local
202 || message->FindString("name", &name) != B_OK)
208 if (set_entry(nodeRef, name, entr
962 GetFamily(const char* name) argument
[all...]
H A DFontStyle.h148 uint16 _TranslateStyleToFace(const char *name) const;
H A DFontStyle.cpp215 BString name = face->style_name; local
216 name.Truncate(B_FONT_STYLE_LENGTH);
218 if (name != fName)
239 FontStyle::_TranslateStyleToFace(const char* name) const
241 if (name == NULL)
244 BString string(name);
H A DFontManager.h46 virtual FontFamily* GetFamily(const char* name);
H A DFontManager.cpp147 /*! \brief Locates a FontFamily object by name
148 \param name The family to find
152 FontManager::GetFamily(const char* name) argument
154 if (name == NULL)
157 return _FindFamily(name);
383 FontManager::_FindFamily(const char* name) const
385 if (name == NULL)
388 FontFamily family(name, 0);
H A DFontFamily.cpp53 FontFamily::FontFamily(const char *name, uint16 id) argument
55 fName(name),
66 \brief Returns the name of the family
67 \return The family's name
138 FontFamily::_FindStyle(const char* name) const
141 if (!name || count < 1)
146 if (!strcmp(style->Name(), name))
167 \brief Returns the name of a style in the family
169 \return name of the style or NULL if the index is not valid
179 \brief Get the FontStyle object for the name give
[all...]
H A DFontFamily.h29 FontFamily(const char* name, uint16 id);
48 FontStyle* _FindStyle(const char* name) const;
/haiku/src/servers/app/
H A DServerApp.cpp118 char name[B_OS_NAME_LENGTH]; local
119 snprintf(name, sizeof(name), "a<%" B_PRId32 ":%s", fClientTeam,
122 fMessagePort = create_port(DEFAULT_MONITOR_PORT_SIZE, name);
511 ServerApp::_GetLooperName(char* name, size_t length) argument
513 snprintf(name, length, "a:%" B_PRId32 ":%s", ClientTeam(), SignatureLeaf());
1927 // 1) string - name of family
1931 // 1) string - name of style
1980 // 1) font_family The name of the font family
1981 // 2) font_style - name o
[all...]
/haiku/src/preferences/screen/
H A DScreenWindow.cpp97 const char *name; member in struct:__anon6
122 BString name; local
123 name << "??? (" << mode << ")";
125 return name;
218 // Needed for layouting, will be replaced with screen name/size
368 BString name; local
369 name.SetToFormat(B_TRANSLATE_COMMENT("%" B_PRId32" �� %" B_PRId32,
374 fResolutionMenu->AddItem(new BMenuItem(name.String(), message));
379 fResolutionMenu->AddItem(new BMenuItem(name.String(), message), itemRect);
426 BString name; local
444 BString name; local
547 BString name = tv_standard_to_string(mode); local
670 BString name; local
[all...]
H A DMonitorView.cpp28 MonitorView::MonitorView(BRect rect, const char *name, int32 width, int32 height) argument
29 : BView(rect, name, B_FOLLOW_ALL, B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE),
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp446 PoorManWindow::SetDirLabel(const char* name) argument
449 dirPath.Append(name);
488 const char* name; local
498 err = message->FindString("name", &name);
507 path.Append(name);
/haiku/src/apps/mediaplayer/
H A DController.cpp916 Controller::GetName(BString* name) argument
921 *name = fItem->Name();
H A DInfoWin.cpp46 IconView(const char* name, int32 iconSize);
62 IconView::IconView(const char* name, int32 iconSize) argument
64 BView(name, B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE),
573 InfoWin::_CreateLabel(const char* name, const char* label) argument
578 BStringView* view = new BStringView(name, label);
587 InfoWin::_CreateInfo(const char* name) argument
589 BStringView* view = new BStringView(name, "");
/haiku/src/apps/drivesetup/
H A DDiskView.cpp47 PartitionView(const char* name, float weight, off_t offset, argument
50 BView(name, B_WILL_DRAW | B_SUPPORTS_LAYOUT | B_FULL_UPDATE_ON_RESIZE),
89 _ComputeFullName(partition, name);
219 BString name(Name());
220 font.TruncateString(&name, B_TRUNCATE_END, width);
223 DrawString(name.String(), textOffset);
269 void _ComputeFullName(BPartition* partition, const char* name) argument
271 BString fullName(name);
326 const char* name; local
328 name
356 BString name = partition->ContentName(); local
[all...]
/haiku/src/apps/diskprobe/
H A DProbeView.cpp89 PositionSlider(const char* name,
166 TypeMenuItem(const char* name, const char* type,
179 EditorLooper(const char* name,
200 TypeView(BRect rect, const char* name,
308 PositionSlider::PositionSlider(const char* name, BMessage* message, argument
311 BSlider(name, NULL, message, 0, kMaxSliderLimit, B_HORIZONTAL,
837 TypeMenuItem::TypeMenuItem(const char* name, const char* type, argument
840 BMenuItem(name, message),
887 EditorLooper::EditorLooper(const char* name, DataEditor& editor, argument
889 : BLooper(name),
1022 TypeView(BRect rect, const char* name, int32 index, DataEditor& editor, int32 resizingMode) argument
1936 const char* name; local
[all...]
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp52 VideoConsumer::VideoConsumer(const char* name, BView* view, argument
56 BMediaNode(name),
385 sprintf(fIn.name, "Video Consumer");
474 sprintf(fIn.name, "Video Consumer");
767 // change to the desired name

Completed in 112 milliseconds

1234567891011>>