Searched refs:group (Results 26 - 50 of 304) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DMenuFieldTest.cpp69 GroupView* group = new GroupView(B_VERTICAL); local
70 group->SetFrame(controls->Bounds());
71 group->SetSpacing(0, 8);
72 controls->AddChild(group);
83 group->AddChild(fLongLabelTextCheckBox);
88 group->AddChild(fLongMenuTextCheckBox);
93 group->AddChild(fBigFontCheckBox);
98 group->AddChild(new Glue());
/haiku/headers/os/translation/
H A DTranslationDefs.h29 uint32 group; member in struct:translation_format
39 uint32 group; member in struct:translator_info
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.cpp30 // group can span several blocks in the block bitmap, the AllocationBlock
164 # define CHECK_ALLOCATION_GROUP(group) _CheckGroup(group)
166 # define CHECK_ALLOCATION_GROUP(group) ;
178 status_t SetTo(AllocationGroup& group, uint16 block);
179 status_t SetToWritable(Transaction& transaction, AllocationGroup& group,
230 AllocationBlock::SetTo(AllocationGroup& group, uint16 block) argument
234 // the last group may have less bits than the others
235 if ((block + 1) * fNumBits > group.NumBits())
236 fNumBits = group
246 SetToWritable(Transaction& transaction, AllocationGroup& group, uint16 block) argument
[all...]
/haiku/src/bin/multiuser/
H A Dgroupadd.cpp27 "Usage: %s [ <options> ] <group name>\n"
28 "Creates a new group <group name>.\n"
72 const char* group = argv[optind]; local
79 // check, if group already exists
80 if (getgrnam(group) != NULL) {
81 fprintf(stderr, "Error: Group \"%s\" already exists.\n", group);
93 || message.AddString("name", group) != B_OK
95 || message.AddBool("add group", true) != B_OK) {
104 fprintf(stderr, "Error: Failed to create group
[all...]
H A Dgroupdel.cpp25 "Usage: %s [ <options> ] <group name>\n"
26 "Deletes the specified group.\n"
70 const char* group = argv[optind]; local
77 if (getgrnam(group) == NULL) {
78 fprintf(stderr, "Error: Group \"%s\" doesn't exists.\n", group);
84 if (message.AddString("name", group) != B_OK) {
93 fprintf(stderr, "Error: Failed to delete group: %s\n", strerror(error));
H A Duseradd.cpp46 " Specifies the new user's primary group by ID or name.\n"
69 const char* group = NULL; local
105 group = optarg;
143 // get group ID
145 if (group != NULL) {
147 gid = strtol(group, &end, 0);
151 fprintf(stderr, "Error: Invalid group ID \"%s\".\n",
152 group);
156 // must be a group name -- get it
168 struct group groupBuffe
[all...]
H A Dgroupmod.cpp30 "Usage: %s [ <options> ] <group name>\n"
31 "Creates a new group <group name>.\n"
35 " Add the user <user> to the group.\n"
39 " Remove the user <user> from the group.\n"
94 const char* group = argv[optind]; local
101 // get the group
102 struct group* groupInfo = getgrnam(group);
104 fprintf(stderr, "Error: Group \"%s\" doesn't exist.\n", group);
[all...]
/haiku/docs/interface_guidelines/docbook-css/
H A Dtables.css21 display: table-header-group;
25 display: table-row-group;
/haiku/src/tools/translation/inspector/
H A DTranslatorItem.h46 BTranslatorItem(const char *text, const char *path, int32 group);
H A DInspectorApp.h54 void AddToTranslatorsList(const char *folder, int32 group);
H A DActiveTranslatorsWindow.h48 void AddTranslatorsToList(BList *plist, int32 group, BStringItem *pparent);
/haiku/src/apps/mail/
H A DPeople.cpp51 if (node.ReadAttrString("META:group", &groupString) != B_OK
62 BString group; local
63 groupString.CopyInto(group, first, end - first);
64 group.Trim();
65 groups.Add(group);
93 Person::IsInGroup(const char* group) const
96 if (GroupAt(index) == group)
176 BString group = groups.StringAt(index); local
178 StringCountMap::iterator found = fGroupMap.find(group);
182 fGroupMap[group]
[all...]
/haiku/src/apps/debuganalyzer/model/
H A DThreadModel.cpp72 // create and add the group
73 WaitObjectGroup* group = new(std::nothrow) WaitObjectGroup(objects, count); local
74 if (group == NULL) {
79 if (!fWaitObjectGroups.BinaryInsert(group,
81 delete group;
85 return group;
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dgen_err_list.py34 expr = m.group("expr")
40 expr = m.group("expr")
46 expr = m.group("expr")
52 token = m.group("expr")
59 base = m.group("base")
63 o = int(m.group("offset"), 0)
/haiku/src/bin/
H A Dbadblocks.cpp13 int group = 64; variable
21 size_t len = group * blockSize;
41 dev, group, blockSize);
46 for (; block <= endBlock; block += group, at += len) {
69 for (i = 0; i < group; i++) {
116 group = atoi(optarg);
117 //fprintf(stderr, "g %d\n", group);
/haiku/src/servers/app/stackandtile/
H A DSATWindow.cpp74 SATGroup* group = new (std::nothrow)SATGroup; local
75 if (group == NULL)
76 return group;
78 groupRef.SetTo(group, true);
81 group. */
82 if (group->AddWindow(this, NULL, NULL, NULL, NULL) == false)
117 SATWindow::PropagateToGroup(SATGroup* group) argument
121 return fWindowArea->PropagateToGroup(group);
126 SATWindow::AddedToGroup(SATGroup* group, WindowArea* area) argument
128 STRACE_SAT("SATWindow::AddedToGroup group
136 RemovedFromGroup(SATGroup* group, bool stayBelowMouse) argument
152 SATGroup* group = GetGroup(); local
[all...]
H A DStacking.cpp97 SATGroup* group = sender->GetGroup();
98 if (!group)
110 if (!group->RemoveWindow(candidate, false))
119 SATGroup* group = sender->GetGroup();
121 if (!area || !group)
130 if (!group->RemoveWindow(removeWindow, false))
225 SATStacking::FindSnappingCandidates(SATGroup* group) argument
242 for (int i = 0; i < group->CountItems(); i++) {
243 SATWindow* satWindow = group->WindowAt(i);
296 SATGroup* group
[all...]
/haiku/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcstold.c51 __wcstold_internal (const wchar_t *nptr, wchar_t **endptr, int group) argument
53 return __wcstod_internal (nptr, endptr, group);
/haiku/headers/compatibility/bsd/sys/
H A Dioccom.h58 /** @def IOCGROUP(x) which group of ioctl() commands does this belong to? */
69 /** @def _IOC(inout, group, num , len) create a new ioctl */
70 #define _IOC(inout, group, num, len) \
71 (inout | ((len & IOCPARM_MASK)<<16) | ((group) << 8) | (num))
72 /** @def _IO(g,n) create a new void ioctl for group g, number n */
76 /** @def _IOW(g,n,t) ioctl() that writes value of type t, group g, number n */
/haiku/headers/build/host/darwin/
H A Dunistd.h11 int fchownat(int fd, const char* path, uid_t owner, gid_t group, int flag);
/haiku/headers/private/media/
H A DDefaultMediaTheme.h30 BView* MakeViewFor(BParameterGroup& group);
/haiku/src/apps/cortex/InfoView/
H A DLiveNodeInfoView.cpp106 NodeGroup *group = ref->group(); local
107 if (group)
109 runMode = group->runMode();
/haiku/src/apps/cortex/RouteApp/
H A DRouteAppNodeManager.cpp98 // *** group management
183 // create a default group for the node
291 NodeGroup *group = 0; local
292 BString groupName = B_TRANSLATE("Untitled group");
296 if (producer->group() && consumer->group() &&
297 !(producer->group()->groupFlags() & NodeGroup::GROUP_LOCKED) &&
298 !(consumer->group()->groupFlags() & NodeGroup::GROUP_LOCKED))
300 // merge into consumers group
301 group
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8192e/
H A Dr92e_chan.c70 int group; local
74 if (chan <= 2) group = 0;
75 else if (chan <= 5) group = 1;
76 else if (chan <= 8) group = 2;
77 else if (chan <= 11) group = 3;
78 else if (chan <= 14) group = 4;
88 return (group);
96 int i, ridx, group, max_mcs; local
98 /* Determine channel group. */
99 group
[all...]
/haiku/src/kits/interface/
H A DGroupLayoutBuilder.cpp125 BGroupView* group = new(nothrow) BGroupView(orientation, spacing); local
126 if (group) {
127 if (layout->AddView(group, weight))
128 _PushLayout(group->GroupLayout());
130 delete group;

Completed in 179 milliseconds

1234567891011>>