Searched refs:value1 (Results 1 - 13 of 13) sorted by relevance

/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorSlider.h23 float value1, float value2,
28 float value1, float value2,
57 float value1, float value2);
58 void SetOtherValues(float value1, float value2);
59 void GetOtherValues(float* value1,
66 float value1, float value2,
H A DColorSlider.cpp36 float value1, float value2, orientation dir, border_style border)
40 _Init(mode, value1, value2, dir, border);
46 float value1, float value2, orientation dir, border_style border)
51 _Init(mode, value1, value2, dir, border);
272 float value1, float value2)
330 SetOtherValues(value1, value2);
338 ColorSlider::SetOtherValues(float value1, float value2) argument
340 fFixedValue1 = value1;
349 ColorSlider::GetOtherValues(float* value1, float* value2) const argument
351 if (value1 !
35 ColorSlider(SelectedColorMode mode, float value1, float value2, orientation dir, border_style border) argument
45 ColorSlider(BPoint offsetPoint, SelectedColorMode mode, float value1, float value2, orientation dir, border_style border) argument
271 SetModeAndValues(SelectedColorMode mode, float value1, float value2) argument
406 _Init(SelectedColorMode mode, float value1, float value2, orientation dir, border_style border) argument
[all...]
H A DColorPickerView.h51 void _UpdateColor(float value, float value1,
H A DColorPickerView.cpp196 float value1, value2; local
197 value1 = message->FindFloat("value");
199 _UpdateColor(-1, value1, value2);
439 ColorPickerView::_UpdateColor(float value, float value1, float value2) argument
444 } else if (value1 != -1 && value2 != -1) {
445 fColorSlider->SetOtherValues(value1, value2);
446 *p1 = value1; *p2 = value2;
/haiku/src/tests/kits/app/bpropertyinfo/
H A DPropertyConstructionTest.cpp128 const value_info *value1,
133 if ((value_count != 0) && (value1 != value2)) {
134 assert(value1 != NULL);
137 assert(value1[i].name != 0);
139 assert(strcmp(value1[i].name, value2[i].name) == 0);
141 assert(value1[i].value == value2[i].value);
143 assert(value1[i].kind == value2[i].kind);
145 if (value1[i].usage == 0) {
149 assert(strcmp(value1[i].usage, value2[i].usage) == 0);
152 assert(value1[
127 CompareValues( const value_info *value1, const value_info *value2, int value_count) argument
[all...]
H A DPropertyConstructionTest.h25 void CompareValues(const value_info *value1,
H A DPropertyTestcase.h23 value_info *DuplicateValues(const value_info *value1, int value_count);
H A DPropertyTestcase.cpp115 const value_info *value1,
121 if (value1 != NULL) {
123 memcpy(value2, value1, sizeof(value_info) * (value_count + 1));
125 if (value1[i].name != NULL) {
126 value2[i].name = strdup(value1[i].name);
128 if (value1[i].usage != NULL) {
129 value2[i].usage = strdup(value1[i].usage);
209 struct value_info value1[] = { { 0 } }; local
221 { NULL, value1, 0, 0, 11,
247 { prop1, value1,
114 DuplicateValues( const value_info *value1, int value_count) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/table/
H A DTable.cpp339 BVariant value1; local
340 bool valid1 = fModel->GetValueAt(field1->RowIndex(), modelIndex, value1);
349 return fTableColumn->CompareValues(value1, value2);
H A DTreeTable.cpp381 BVariant value1; local
382 bool valid1 = fModel->GetValueAt(field1->Object(), modelIndex, value1);
391 return fTableColumn->CompareValues(value1, value2);
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6.cpp174 bool CompareValues(ValueType* value1, ValueType* value2) const argument
175 { return value1->Interface()->index == value2->Interface()->index
176 && value1->Address() == value2->Address(); }
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp157 bool CompareValues(ValueType* value1, ValueType* value2) const argument
158 { return value1->Interface()->index == value2->Interface()->index
159 && value1->Address().s_addr == value2->Address().s_addr; }
/haiku/src/tests/kits/storage/
H A DAppFileInfoTest.cpp2701 Value value1; local
2702 CHK(Getter::Get(appFileInfo, value1) == B_OK);
2703 CHK(value1 == testValue2);

Completed in 77 milliseconds