Searched refs:child (Results 1 - 25 of 292) sorted by path

1234567891011>>

/haiku/3rdparty/proj2make/
H A Dproj2make.cpp135 hdr* child = (hdr*)data->Data(); local
136 char* name = (char*)(child + 1);
139 uint32 u = child->Id();
141 printf("\t%c%c%c%c:%d:%s\n", c[3], c[2], c[1], c[0], child->Size(), name);
144 const char* type = child->Data() + len + 8;
219 hdr* child = (hdr*)(current->Data() + off); local
221 Parse(child, useGrandParent ? parent : current);
222 off += child->Size() + sizeof(hdr);
223 child = (hdr*)(child
[all...]
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css57 * Remove any margin defined be the previous rule when the child in question
378 blockquote>para:last-child:after {
459 * TODO: try a combination of :after and :first-child instead to
/haiku/headers/libs/alm/
H A DALMLayout.h134 virtual BLayoutItem* AddView(BView* child);
135 virtual BLayoutItem* AddView(int32 index, BView* child);
/haiku/headers/os/interface/
H A DBox.h23 BView* child = NULL);
24 BBox(border_style border, BView* child);
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,
H A DGroupLayout.h26 virtual BLayoutItem* AddView(BView* child);
27 virtual BLayoutItem* AddView(int32 index, BView* child);
28 virtual BLayoutItem* AddView(BView* child, float weight);
29 virtual BLayoutItem* AddView(int32 index, BView* child,
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;
H A DSplitView.h53 // void AddChild(BView* child);
54 void AddChild(BView* child, BView* sibling = NULL);
55 bool AddChild(BView* child, float weight);
56 bool AddChild(int32 index, BView* child,
59 bool AddChild(BLayoutItem* child);
60 bool AddChild(BLayoutItem* child, float weight);
61 bool AddChild(int32 index, BLayoutItem* child,
/haiku/headers/private/debugger/model/
H A DExpressionInfo.h45 void SetToValueNode(ValueNodeChild* child);
/haiku/headers/private/debugger/user_interface/util/
H A DUiUtils.h60 ValueNodeChild* child,
/haiku/headers/private/debugger/value/
H A DValueNodeContainer.h34 bool AddChild(ValueNodeChild* child);
35 void RemoveChild(ValueNodeChild* child);
/haiku/headers/private/debugger/value/value_nodes/
H A DBMessageValueNode.h79 BMessageFieldNodeChild *child,
/haiku/headers/private/interface/
H A DViewPort.h20 BViewPort(BView* child = NULL);
21 BViewPort(BLayoutItem* child);
23 BView* child = NULL);
25 BLayoutItem* child);
29 void SetChildView(BView* child);
32 void SetChildItem(BLayoutItem* child);
/haiku/headers/private/kernel/disk_device_manager/
H A DKDiskSystem.h72 virtual status_t ResizeChild(KPartition* child, off_t size,
76 virtual status_t MoveChild(KPartition* child, off_t offset,
96 disk_job_id job, KPartition** child = NULL,
98 virtual status_t DeleteChild(KPartition* child, disk_job_id job);
H A DKPartitionListener.h36 virtual void ChildAdded(KPartition *partition, KPartition *child,
38 virtual void ChildRemoved(KPartition *partition, KPartition *child,
H A DKPartitioningSystem.h48 virtual status_t ResizeChild(KPartition* child, off_t size,
52 virtual status_t MoveChild(KPartition* child, off_t offset,
72 disk_job_id job, KPartition** child = NULL,
74 virtual status_t DeleteChild(KPartition* child, disk_job_id job);
H A Dddm_modules.h37 partition_data* child, uint32 mask);
45 partition_data* child, off_t* size);
48 partition_data* child, off_t* start);
75 partition_data *child, uint32 operation);
88 status_t (*move_child)(int fd, partition_id partition, partition_id child,
110 status_t (*delete_child)(int fd, partition_id partition, partition_id 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;
H A DMinMaxHeap.h384 int child = 2 * link->fIndex + 1;
385 if (child < lastElement) {
386 bool isSmaller = sCompare(sGetLink(tree[child])->fKey, link->fKey);
388 current = child;
391 child = 2 * link->fIndex + 2;
392 if (child < lastElement) {
393 bool isSmaller = sCompare(sGetLink(tree[child])->fKey,
396 current = child;
/haiku/headers/private/libroot/
H A Dfork.h17 void(*child)(void));
/haiku/headers/private/package/hpkg/
H A DWriterImplBase.h95 void AddChild(PackageAttribute* child);
/haiku/headers/private/print/
H A DPrintPanel.h41 bool RemovePanel(BView* child);
60 void AddChild(BView* child, BView* before = NULL);
61 bool RemoveChild(BView* child);
/haiku/headers/private/storage/
H A DDiskSystemAddOn.h47 virtual bool IsSubSystemFor(const BMutablePartition* child);
64 const BMutablePartition* child,
68 const BMutablePartition* child,
72 const BMutablePartition* child,
74 // child can be NULL
84 const BMutablePartition* child,
87 virtual status_t ResizeChild(BMutablePartition* child,
92 const BMutablePartition* child,
95 virtual status_t MoveChild(BMutablePartition* child,
99 virtual status_t ValidateSetName(const BMutablePartition* child,
[all...]
/haiku/src/add-ons/disk_systems/intel/
H A DExtendedPartitionAddOn.h43 const BMutablePartition* child,
47 const BMutablePartition* child,
61 BMutablePartition** child);
62 virtual status_t DeleteChild(BMutablePartition* child);
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_multi_audio.cpp528 hda_widget& child = *hda_audio_group_get_widget(audioGroup, local
530 hda_create_control_for_complex(multi, index, parent, child, gain, mute);

Completed in 138 milliseconds

1234567891011>>