Searched refs:child (Results 126 - 150 of 292) sorted by relevance

1234567891011>>

/haiku/src/kits/storage/disk_device/jobs/
H A DMoveJob.cpp22 MoveJob::MoveJob(PartitionReference* partition, PartitionReference* child) argument
23 : DiskDeviceJob(partition, child),
/haiku/src/tests/servers/app/newClipping/
H A DMyView.cpp97 for (Layer *child = lay->BottomChild(); child; child = lay->UpperSibling())
99 Layer *found = FindLayer(child, where);
309 for (Layer *child = lay->BottomChild(); child; child = lay->UpperSibling())
310 DrawSubTree(child);
/haiku/headers/private/kernel/util/
H A DHeap.h322 int child = 2 * link->fIndex + 1; local
323 if (child < fLastElement
324 && sCompare(sGetLink(fElements[child])->fKey, link->fKey)) {
325 current = child;
328 child = 2 * link->fIndex + 2;
329 if (child < fLastElement
330 && sCompare(sGetLink(fElements[child])->fKey,
332 current = child;
/haiku/src/bin/listdev/
H A Dlistdev.cpp139 device_node_cookie child = *node; local
142 if (get_child(&child) != B_OK)
146 dump_nodes(&child, level + 1);
147 } while ((err = get_next_child(&child)) == B_OK);
351 device_node_cookie child = *node; local
354 if (get_child(&child) != B_OK)
358 display_nodes(&child, level);
359 } while ((err = get_next_child(&child)) == B_OK);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.cpp292 for (int32 i = 0; ModelNode* child = fChildren.ItemAt(i); i++)
293 child->ReleaseReference();
508 int32 IndexOf(ModelNode* child) const
510 return fChildren.IndexOf(child);
513 bool AddChild(ModelNode* child) argument
515 if (!fChildren.AddItem(child))
518 child->AcquireReference();
522 bool RemoveChild(ModelNode* child) argument
524 if (!fChildren.RemoveItem(child))
527 child
1212 VariableValueNodeChild* child = dynamic_cast<VariableValueNodeChild *>( local
1259 ValueNodeChild* child = valueNode->ChildAt(i); local
1397 ModelNode* child = modelNode->ChildAt(0); local
1417 ModelNode* child = modelNode->ChildAt(0); local
1498 ModelNode* child = node->ChildAt(0); local
1538 ValueNodeChild* child = node->NodeChild(); local
2250 ValueNodeChild* child = node->NodeChild(); local
2429 ModelNode* child = node->ChildAt(0); local
2669 ValueNodeChild* child = node->NodeChild(); local
2807 ValueNodeChild* child = node->NodeChild(); local
3286 ValueNodeChild* child = NULL; local
[all...]
/haiku/src/tests/servers/app/copy_bits/
H A Dmain.cpp250 BView* child = new BView(b, "some child", B_FOLLOW_RIGHT | B_FOLLOW_BOTTOM, 0); local
251 child->SetViewColor(255, 0, 0);
252 view->AddChild(child);
255 child = new BView(b, "some other child", B_FOLLOW_RIGHT | B_FOLLOW_BOTTOM, 0);
256 child->SetViewColor(255, 255, 0);
257 view->AddChild(child);
/haiku/src/libs/compat/openbsd_wlan/
H A Dsubr_tree.c310 struct rb_entry *child, *parent, *old = rbe; local
314 child = RBE_RIGHT(rbe);
316 child = RBE_LEFT(rbe);
324 child = RBE_RIGHT(rbe);
327 if (child != NULL)
328 RBE_PARENT(child) = parent;
331 RBE_LEFT(parent) = child;
333 RBE_RIGHT(parent) = child;
337 RBH_ROOT(rbt) = child;
371 if (child !
[all...]
/haiku/src/kits/interface/
H A DRadioButton.cpp201 BView* child = NULL; local
215 child = parent->ChildAt(1);
217 child = parent->ChildAt(0);
219 child = Window()->ChildAt(0);
221 child = Window()->ChildAt(0);
223 while (child != NULL) {
224 BRadioButton* radio = dynamic_cast<BRadioButton*>(child);
229 // If the child is a BBox, check if the label is a radiobutton
230 BBox* box = dynamic_cast<BBox*>(child);
240 child
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/vmdk/
H A Dvmdk.cpp394 // child
395 partition_data* child = create_child_partition(partition->id, 0, local
397 if (child == NULL) {
402 child->block_size = partition->block_size;
404 child->type = strdup(kPartitionTypeUnrecognized);
405 child->parameters = NULL;
406 child->cookie = NULL;
409 if (child->type == NULL) {
429 // called for the child partition -- it doesn't have a cookie
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp327 device_node* child = nodeIterator.Next(); local
329 Device* device = get_device(child, path);
386 // child device nodes.
392 // The parent has not been registered completely yet - child
1011 device_node* child = nodeIterator.Next(); local
1013 delete child;
1184 // Register all possible child device nodes
1479 device_node* child = FindChild(bestDriver->info.name); local
1480 if (child != NULL) {
1481 child
1510 device_node* child = iterator.Next(); local
1522 device_node* child = iterator.Next(); local
1535 device_node* child = iterator.Next(); local
1608 device_node* child = iterator.Next(); local
1630 device_node* child = iterator.Next(); local
1655 device_node* child = iterator.Next(); local
1754 device_node* child = iterator.Next(); local
1774 device_node* child = iterator.Next(); local
[all...]
H A Dbus.cpp23 device_node* child = NULL; local
24 while (gDeviceManager->get_next_child_node(node, attrs, &child) == B_OK) {
25 gDeviceManager->unregister_node(child);
131 dprintf("non-existing child: %ld\n", gDeviceManager->register_node(node,
/haiku/src/apps/diskusage/
H A DScanner.cpp254 FileInfo *child = new FileInfo; local
255 entry.GetRef(&child->ref);
256 entry.GetSize(&child->size);
257 child->parent = thisDir;
258 child->color = -1;
259 thisDir->children.push_back(child);
262 fVolumeBytesScanned += child->size;
/haiku/src/system/kernel/disk_device_manager/
H A Ddisk_device_manager.cpp142 if (KPartition* child = partition->ChildAt(index))
143 return child->PartitionData();
172 KPartition* child = NULL; local
173 if (partition->CreateChild(childID, index, offset, size, &child)
175 return child->PartitionData();
177 DBG(OUT(" creating child (%" B_PRId32 ", %" B_PRId32 ") failed\n",
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageExpressionEvaluator.cpp1647 ValueNodeChild* child = NULL; local
1658 child = current;
1664 if (child == NULL && thisChild != NULL) {
1677 child = parentNode->ChildAt(0);
1679 _RequestValueIfNeeded(token, child);
1680 parentNode = child->Node();
1689 child = current;
1696 if (child == NULL && fTypeInfo != NULL) {
1712 if (child == NULL) {
1718 _RequestValueIfNeeded(token, child);
1771 ValueNodeChild* child = NULL; local
1905 _RequestValueIfNeeded( const Token& token, ValueNodeChild* child) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollView.h42 ScrollView(BView* child, uint32 scrollingFlags,
48 ScrollView(BView* child, uint32 scrollingFlags,
102 BView* fChild; // child view
119 void _Init(BView* child, uint32 scrollingFlags,
/haiku/src/apps/switcher/
H A DPanelWindow.cpp41 BView* child = _ViewFor(location, which, team); local
42 if (child != NULL)
43 AddChild(child);
/haiku/src/tests/system/benchmarks/
H A Dctxbench.c33 child(void) function
39 errx(1, "child write failed");
42 errx(1, "child read failed");
44 errx(1, "child write failed");
133 _lwp_makecontext(contextp, child, NULL, NULL,
141 case 0: /* child */
142 child();
/haiku/headers/os/interface/
H A DGridLayout.h50 virtual BLayoutItem* AddView(BView* child);
51 virtual BLayoutItem* AddView(int32 index, BView* child);
52 virtual BLayoutItem* AddView(BView* child, int32 column, int32 row,
/haiku/src/servers/launch/
H A DBaseJob.cpp204 pid_t child = fork(); local
205 if (child < 0) {
208 } else if (child == 0) {
209 // We're the child, redirect stdout
223 // Retrieve environment from child
/haiku/src/add-ons/kernel/partitioning_systems/sun/
H A Dsun.cpp162 partition_data *child = create_child_partition(partition->id, i, local
164 if (child == NULL) {
165 TRACE(("sun: Creating child at index %d failed\n", i));
168 child->block_size = partition->block_size;
/haiku/src/add-ons/kernel/partitioning_systems/amiga/
H A Damiga_rdb.cpp188 TRACE(("amiga_rdb: child partition exceeds existing space (%lld "
193 partition_data *child = create_child_partition(partition->id, index++, local
195 if (child == NULL) {
196 TRACE(("amiga_rdb: Creating child at index %ld failed\n",
201 child->block_size = environment.BlockSize();
/haiku/src/add-ons/kernel/partitioning_systems/apple/
H A Dapple.cpp166 TRACE(("apple: child partition exceeds existing space (%lld bytes)\n",
171 partition_data *child = create_child_partition(partition->id, index++, local
174 if (child == NULL) {
175 TRACE(("apple: Creating child at index %ld failed\n", index - 1));
179 child->block_size = partition->block_size;
/haiku/src/tests/system/kernel/
H A Dspinlock_contention.cpp216 pid_t child = fork(); local
217 if (child < 0) {
222 if (child == 0) {
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp1337 while (device_node* child = fChildren.RemoveHead()) {
1338 delete child;
1476 // specific to least specific child.
1480 device_node* child = iterator.Next(); local
1481 if (child->Priority() < priority) {
1482 before = child;
1555 // Register all possible child device nodes
1587 TRACE(("register fixed child %s failed: %s\n", attr->value.string,
1934 device_node* child = FindChild(bestDriver->info.name); local
1935 if (child !
1965 device_node* child = iterator.Next(); local
1977 device_node* child = iterator.Next(); local
1990 device_node* child = iterator.Next(); local
2088 device_node* child = iterator.Next(); local
2115 device_node* child = iterator.Next(); local
2143 device_node* child = iterator.Next(); local
2165 device_node* child = iterator.Next(); local
2190 device_node* child = iterator.Next(); local
2310 device_node* child = iterator.Next(); local
2330 device_node* child = iterator.Next(); local
[all...]
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DFlatMessageIO.cpp181 IPersistent* child,
183 delete child;
184 context.reportError("Unexpected child object.");
180 xmlImportChild( IPersistent* child, ImportContext& context) argument

Completed in 250 milliseconds

1234567891011>>