Searched refs:weight (Results 1 - 25 of 52) sorted by path

123

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php835 .haiku_online_error { color: red; font-weight: bold; }
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css32 font-weight:bolder;
185 font-weight:bolder;
189 font-weight: bolder;
196 font-weight:bolder;
199 font-weight:bolder;
211 font-weight:bolder;
515 font-weight: bolder;
548 font-weight: bolder;
616 font-weight: bold;
622 font-weight
[all...]
/haiku/headers/libs/agg/
H A Dagg_pattern_filters_rgba.h72 calc_type weight; local
80 weight = (line_subpixel_scale - x) *
82 r += weight * ptr->r;
83 g += weight * ptr->g;
84 b += weight * ptr->b;
85 a += weight * ptr->a;
89 weight = x * (line_subpixel_scale - y);
90 r += weight * ptr->r;
91 g += weight * ptr->g;
92 b += weight * pt
[all...]
H A Dagg_span_image_filter_gray.h233 unsigned weight; local
248 weight = (image_subpixel_scale - x_hr) *
253 fg += weight *
255 src_alpha += weight * base_mask;
259 fg += back_v * weight;
260 src_alpha += back_a * weight;
265 weight = x_hr * (image_subpixel_scale - y_hr);
269 fg += weight *
271 src_alpha += weight * base_mask;
275 fg += back_v * weight;
382 unsigned weight; local
603 int weight = (weight_y * weight_array[x_hr] + local
714 int weight = (weight_y * weight_array[x_hr] + local
[all...]
H A Dagg_span_image_filter_rgb.h132 unsigned weight; local
142 weight = (image_subpixel_scale - x_hr) *
144 fg[0] += weight * *fg_ptr++;
145 fg[1] += weight * *fg_ptr++;
146 fg[2] += weight * *fg_ptr;
149 weight = x_hr * (image_subpixel_scale - y_hr);
150 fg[0] += weight * *fg_ptr++;
151 fg[1] += weight * *fg_ptr++;
152 fg[2] += weight * *fg_ptr;
155 weight
239 unsigned weight; local
467 unsigned weight; local
603 int weight = (weight_y * weight_array[x_hr] + local
722 int weight = (weight_y * weight_array[x_hr] + local
846 int weight = (weight_y * weight_array[x_hr] + local
[all...]
H A Dagg_span_image_filter_rgba.h134 unsigned weight; local
145 weight = (image_subpixel_scale - x_hr) *
147 fg[0] += weight * *fg_ptr++;
148 fg[1] += weight * *fg_ptr++;
149 fg[2] += weight * *fg_ptr++;
150 fg[3] += weight * *fg_ptr;
153 weight = x_hr * (image_subpixel_scale - y_hr);
154 fg[0] += weight * *fg_ptr++;
155 fg[1] += weight * *fg_ptr++;
156 fg[2] += weight * *fg_pt
246 unsigned weight; local
479 unsigned weight; local
620 int weight = (weight_y * weight_array[x_hr] + local
742 int weight = (weight_y * weight_array[x_hr] + local
870 int weight = (weight_y * weight_array[x_hr] + local
[all...]
/haiku/headers/os/interface/
H A DGridLayout.h31 void SetColumnWeight(int32 column, float weight);
40 void SetRowWeight(int32 row, float weight);
H A DGridLayoutBuilder.h28 BGridLayoutBuilder& SetColumnWeight(int32 column, float weight);
29 BGridLayoutBuilder& SetRowWeight(int32 row, float weight);
H A DGroupLayout.h24 void SetItemWeight(int32 index, float weight);
28 virtual BLayoutItem* AddView(BView* child, float weight);
30 float weight);
34 virtual bool AddItem(BLayoutItem* item, float weight);
36 float weight);
H A DGroupLayoutBuilder.h27 BGroupLayoutBuilder& Add(BView* view, float weight);
29 BGroupLayoutBuilder& Add(BLayoutItem* item, float weight);
33 float weight = 1.0f);
36 BGroupLayoutBuilder& AddGlue(float weight = 1.0f);
H A DSplitLayoutBuilder.h21 BSplitLayoutBuilder& Add(BView* view, float weight);
23 BSplitLayoutBuilder& Add(BLayoutItem* item, float weight);
H A DSplitView.h40 void SetItemWeight(int32 index, float weight,
42 void SetItemWeight(BLayoutItem* item, float weight);
55 bool AddChild(BView* child, float weight);
57 float weight);
60 bool AddChild(BLayoutItem* child, float weight);
62 float weight);
H A DTwoDimensionalLayout.h47 float weight; member in struct:BTwoDimensionalLayout::ColumnRowConstraints
/haiku/headers/private/graphics/neomagic/
H A DDriverInterface.h265 uint32 weight; member in struct:__anon808
/haiku/src/apps/debugger/user_interface/gui/util/
H A DGuiSettingsUtils.cpp20 if (settings.AddFloat("weight", view->ItemWeight(i)) != B_OK)
36 float weight; local
37 if (settings.FindFloat("weight", i, &weight) == B_OK)
38 view->SetItemWeight(i, weight, i == view->CountItems() - 1);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp284 mpm.weight = 0.0;
H A DIconOptionsControl.cpp64 mpm.weight = 1.0;
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupSlider.cpp87 mpm.weight = 1.0;
H A DSliderView.cpp63 mpm.weight = 1.0;
/haiku/src/kits/interface/
H A DGridLayout.cpp80 return info->weight;
84 void SetWeight(int32 index, float weight) argument
87 info->weight = weight;
118 float weight; member in struct:BGridLayout::RowInfoArray::Info
141 info->weight = 1;
304 BGridLayout::SetColumnWeight(int32 column, float weight) argument
306 fColumnInfos->SetWeight(column, weight);
346 BGridLayout::SetRowWeight(int32 row, float weight) argument
348 fRowInfos->SetWeight(row, weight);
[all...]
H A DGridLayoutBuilder.cpp87 BGridLayoutBuilder::SetColumnWeight(int32 column, float weight) argument
89 fLayout->SetColumnWeight(column, weight);
95 BGridLayoutBuilder::SetRowWeight(int32 row, float weight) argument
97 fLayout->SetRowWeight(row, weight);
H A DGroupLayout.cpp22 const char* const kItemWeightField = "BGroupLayout:item:weight";
28 float weight; member in struct:BGroupLayout::ItemLayoutData
31 : weight(1)
106 return (data ? data->weight : 0);
111 BGroupLayout::SetItemWeight(int32 index, float weight) argument
117 data->weight = weight;
138 BGroupLayout::AddView(BView* child, float weight) argument
140 return AddView(-1, child, weight);
145 BGroupLayout::AddView(int32 index, BView* child, float weight) argument
170 AddItem(BLayoutItem* item, float weight) argument
177 AddItem(int32 index, BLayoutItem* item, float weight) argument
237 float weight; local
[all...]
H A DGroupLayoutBuilder.cpp94 BGroupLayoutBuilder::Add(BView* view, float weight) argument
97 layout->AddView(view, weight);
112 BGroupLayoutBuilder::Add(BLayoutItem* item, float weight) argument
115 layout->AddItem(item, weight);
122 float weight)
127 if (layout->AddView(group, weight))
147 BGroupLayoutBuilder::AddGlue(float weight) argument
150 layout->AddItem(BSpaceLayoutItem::CreateGlue(), weight); local
121 AddGroup(orientation orientation, float spacing, float weight) argument
H A DSplitLayout.cpp29 const char* const kItemWeightField = "BSplitLayout:item:weight";
39 float weight; member in class:BSplitLayout::ItemLayoutInfo
48 weight(1.0f),
365 BSplitLayout::AddView(BView* child, float weight) argument
367 return AddView(-1, child, weight);
372 BSplitLayout::AddView(int32 index, BView* child, float weight) argument
376 SetItemWeight(item, weight);
397 BSplitLayout::AddItem(BLayoutItem* item, float weight) argument
399 return AddItem(-1, item, weight);
404 BSplitLayout::AddItem(int32 index, BLayoutItem* item, float weight) argument
434 SetItemWeight(int32 index, float weight, bool invalidateLayout) argument
458 SetItemWeight(BLayoutItem* item, float weight) argument
1227 float weight; local
1297 float weight = ItemWeight(item); local
[all...]
H A DSplitLayout.h47 virtual BLayoutItem* AddView(BView* child, float weight);
49 float weight);
53 virtual bool AddItem(BLayoutItem* item, float weight);
55 float weight);
60 void SetItemWeight(int32 index, float weight,
62 void SetItemWeight(BLayoutItem* item, float weight);

Completed in 108 milliseconds

123