Searched refs:child (Results 101 - 125 of 292) sorted by relevance

1234567891011>>

/haiku/src/kits/interface/
H A DGroupLayout.cpp124 BGroupLayout::AddView(BView* child) argument
126 return BTwoDimensionalLayout::AddView(child);
131 BGroupLayout::AddView(int32 index, BView* child) argument
133 return BTwoDimensionalLayout::AddView(index, child);
138 BGroupLayout::AddView(BView* child, float weight) argument
140 return AddView(-1, child, weight);
145 BGroupLayout::AddView(int32 index, BView* child, float weight) argument
147 BLayoutItem* item = AddView(index, child);
H A DView.cpp94 { B_DIRECT_SPECIFIER, 0 }, "Returns the number of child views.", 0,
584 if (BView* child = dynamic_cast<BView*>(object))
585 AddChild(child);
718 for (BView* child = fFirstChild; child != NULL && ret == B_OK;
719 child = child->fNextSibling)
720 ret = archiver.AddArchivable("_views", child, deep);
740 BView* child; local
741 err = unarchiver.FindObject<BView>("_views", i, child);
777 BView* child = fFirstChild; local
4591 AddChild(BView* child, BView* before) argument
4607 AddChild(BLayoutItem* child) argument
4616 _AddChild(BView* child, BView* before) argument
4662 RemoveChild(BView* child) argument
4682 BView* child = fFirstChild; local
4698 BView* child = fFirstChild; local
4947 BView* child = NULL; local
6006 _RemoveChildFromList(BView* child) argument
6031 _AddChildToList(BView* child, BView* before) argument
[all...]
H A DBox.cpp56 BBox::BBox(const char* name, uint32 flags, border_style border, BView* child) argument
63 if (child)
64 AddChild(child);
68 BBox::BBox(border_style border, BView* child) argument
75 if (child)
76 AddChild(child);
574 // hook. In case when we have BView as a label, remove it from child list
602 // If we have layout return here and do not layout the child
606 // layout the child
607 BView* child
819 BView* child = _Child(); local
[all...]
H A DLayout.cpp126 BLayout::AddView(BView* child) argument
128 return AddView(-1, child);
133 BLayout::AddView(int32 index, BView* child) argument
135 BLayoutItem* item = child->GetLayout();
138 item = new(nothrow) BViewLayoutItem(child);
199 BLayout::RemoveView(BView* child) argument
204 int32 remaining = BView::Private(child).CountLayoutItems();
208 if (item->View() != child)
212 if (item != child->GetLayout())
275 BLayout::IndexOfView(BView* child) cons
[all...]
/haiku/headers/private/debugger/value/
H A DValueNodeContainer.h34 bool AddChild(ValueNodeChild* child);
35 void RemoveChild(ValueNodeChild* child);
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.h15 partition_data* child, uint32 mask = ~0);
20 partition_data* child, off_t* size);
23 partition_data* child, off_t* start);
36 status_t pm_shadow_changed(partition_data* partition, partition_data* child,
66 partition_data* child, uint32 mask = ~0);
71 partition_data* child, off_t* _size);
74 partition_data* child, off_t* _start);
86 status_t ep_shadow_changed(partition_data* partition, partition_data* child,
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageDirectory.cpp25 while (PackageNode* child = fChildren.RemoveHead())
26 child->ReleaseReference();
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dbus.h75 int bus_child_present(device_t child);
120 int device_delete_child(device_t dev, device_t child);
124 int bus_print_child_header(device_t dev, device_t child);
125 int bus_print_child_footer(device_t dev, device_t child);
126 int bus_generic_print_child(device_t dev, device_t child);
/haiku/src/kits/storage/
H A DQueryPredicate.cpp58 LeafNode::SetChildAt(QueryNode *child, int32 index) argument
95 UnaryNode::SetChildAt(QueryNode *child, int32 index) argument
100 fChild = child;
143 BinaryNode::SetChildAt(QueryNode *child, int32 index) argument
148 fChild1 = child;
151 fChild2 = child;
494 QueryNode *child = NULL; local
495 error = _GetSubTree(child);
497 error = node->SetChildAt(child, i);
499 delete child;
[all...]
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DGroupView.cpp156 View* child = _ChildAt(column, row); local
157 if (!child)
164 // align the child frame in the grid cell
166 child->MaxSize(), child->Alignment());
168 // layout child
169 child->SetFrame(childFrame);
199 View* child = _ChildAt(column, row); local
200 if (!child)
203 BSize min = child
[all...]
H A DView.h49 bool AddChild(View* child);
50 bool RemoveChild(View* child);
58 int32 IndexOfChild(View* child) const;
/haiku/src/apps/cortex/RouteApp/
H A DLiveNodeIO.cpp217 IPersistent* child,
220 StringContent* obj = dynamic_cast<StringContent*>(child);
240 delete child;
216 xmlImportChild( IPersistent* child, ImportContext& context) argument
/haiku/src/system/libroot/posix/unistd/
H A Dfork.c107 __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void)) argument
125 if (status == B_OK && child)
126 status = add_fork_hook(&sChildHooks, &sLastChildHook, child);
156 // we are the child
157 // ToDo: initialize child
/haiku/src/tests/servers/debug/
H A Dcrashing_app.cpp28 " -f, --fork - fork() and continue in the child\n"
244 pid_t child = fork(); local
245 if (child < 0) {
250 if (child > 0) {
255 // the child continues...
/haiku/src/tests/system/network/
H A Dtcp_connection_test.cpp50 pid_t child = fork(); local
51 if (child < 0) {
56 if (child == 0) {
57 // child
64 fprintf(stderr, "child: %d: failed to create client socket: "
80 fprintf(stderr, "child: %d: failed to bind: %s\n",
97 printf("child: %d: connected to server: 0x%08x:%u, "
103 fprintf(stderr, "child: %d: failed to get socket name %s\n",
107 fprintf(stderr, "child: %d: connect() failed %s\n", i,
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci_root.cpp53 for (PCIDev* dev = bus->child; dev != NULL; dev = dev->next) {
80 if (dev->child != NULL)
81 pci_root_traverse(node, dev->child);
/haiku/src/kits/storage/disk_device/
H A DDiskDeviceJobGenerator.cpp203 for (int32 i = 0; BPartition* child = partition->_ChildAt(i); i++) {
204 status_t error = _GenerateCleanupJobs(child);
274 for (int32 i = 0; BPartition* child = partition->_ChildAt(i); i++) {
275 if (BMutablePartition* childShadow = _GetMutablePartition(child)) {
276 // add a MoveInfo for the child
279 info.partition = child;
280 info.position = child->Offset();
282 info.size = child->Size();
289 // resize the child, if it shall shrink
290 if (childShadow->Size() < child
[all...]
/haiku/headers/os/interface/
H A DLayout.h32 virtual BLayoutItem* AddView(BView* child);
33 virtual BLayoutItem* AddView(int32 index, BView* child);
38 virtual bool RemoveView(BView* child);
45 int32 IndexOfView(BView* child) const;
/haiku/src/apps/cortex/Persistence/
H A DStringContent.h36 // whitespace. Doesn't handle child elements; export
96 IPersistent* child,
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupControl.h23 PopupView* child);
/haiku/src/kits/tracker/
H A DTracker.h101 void CloseParentWaitingForChildSoon(const entry_ref* child,
103 // closes parent, waits for child to open first
105 void SelectChildInParentSoon(const entry_ref* child,
107 // waits till child shows up in parent and selects it
173 bool CloseParentWaitingForChild(const entry_ref* child,
177 bool SelectChildInParent(const entry_ref* child,
/haiku/headers/private/storage/
H A DQueryPredicate.h28 virtual status_t SetChildAt(QueryNode *child, int32 index) = 0;
41 virtual status_t SetChildAt(QueryNode *child, int32 index);
52 virtual status_t SetChildAt(QueryNode *child, int32 index);
66 virtual status_t SetChildAt(QueryNode *child, int32 index);
/haiku/headers/private/kernel/platform/efi/protocol/
H A Dedid.h29 efi_status (*GetEdid) (struct efi_edid_override_protocol* self, efi_handle* child,
/haiku/headers/private/kernel/disk_device_manager/
H A DKPartitionListener.h36 virtual void ChildAdded(KPartition *partition, KPartition *child,
38 virtual void ChildRemoved(KPartition *partition, KPartition *child,
/haiku/src/apps/diskusage/
H A DSnapshot.cpp42 FileInfo* child = *children.begin(); local
43 delete child;

Completed in 134 milliseconds

1234567891011>>