Searched refs:groupValue (Results 1 – 10 of 10) sorted by relevance
/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/ops/ |
H A D | ops_test.cpp | 92 int64_t* groupValue = new (std::nothrow) int64_t(0); in SetGroup() local 93 EXPECT_NE(nullptr, groupValue); in SetGroup() 94 tensor->SetBuffer(groupValue, sizeof(int64_t)); in SetGroup()
|
H A D | conv2d_transpose_pad_test.cpp | 345 int32_t* groupValue = new (std::nothrow) int32_t(0); variable 346 EXPECT_NE(nullptr, groupValue); 348 tensor->SetBuffer(groupValue, sizeof(int32_t)); 397 int64_t* groupValue = new (std::nothrow) int64_t[2]{0, 0}; variable 398 EXPECT_NE(nullptr, groupValue); 400 tensor->SetBuffer(groupValue, 2 * sizeof(int64_t));
|
H A D | conv2d_pad_test.cpp | 300 int32_t* groupValue = new (std::nothrow) int32_t(0); variable 301 EXPECT_NE(nullptr, groupValue); 302 tensor->SetBuffer(groupValue, sizeof(int32_t)); 352 int64_t* groupValue = new (std::nothrow) int64_t[2]{0, 0}; variable 353 EXPECT_NE(nullptr, groupValue); 355 tensor->SetBuffer(groupValue, 2 * sizeof(int64_t));
|
H A D | conv2d_padmode_test.cpp | 304 int32_t* groupValue = new (std::nothrow) int32_t(0); variable 305 EXPECT_NE(nullptr, groupValue); 307 tensor->SetBuffer(groupValue, sizeof(int32_t)); 358 int64_t* groupValue = new (std::nothrow) int64_t[2]{0, 0}; variable 359 EXPECT_NE(nullptr, groupValue); 360 tensor->SetBuffer(groupValue, 2 * sizeof(int64_t));
|
H A D | conv2d_tranpose_padmode_test.cpp | 349 int32_t* groupValue = new (std::nothrow) int32_t(0); variable 350 EXPECT_NE(nullptr, groupValue); 352 tensor->SetBuffer(groupValue, sizeof(int32_t));
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/checkable/ |
H A D | render_radio.cpp | 40 …adio->SetGroupValueUpdateHandler([weak = AceType::WeakClaim(this)](const std::string& groupValue) { in Update() argument 42 if (renderRadio && renderRadio->UpdateGroupValue(groupValue)) { in Update() 111 bool RenderRadio::UpdateGroupValue(const std::string& groupValue) in UpdateGroupValue() argument 113 groupValue_ = groupValue; in UpdateGroupValue()
|
H A D | checkable_component.h | 642 void SetGroupValue(VALUE_TYPE groupValue) in SetGroupValue() argument 644 groupValue_ = groupValue; in SetGroupValue() 672 void UpdateGroupValue(VALUE_TYPE groupValue) in UpdateGroupValue() argument 675 groupValueUpdateHandler_(groupValue); in UpdateGroupValue()
|
H A D | render_checkbox.cpp | 118 bool RenderCheckbox::UpdateGroupValue(const CheckableStatus groupValue) in UpdateGroupValue() argument 127 if (component_->GetGroupValue() != groupValue) { in UpdateGroupValue() 128 component_->SetGroupValue(groupValue); in UpdateGroupValue()
|
H A D | render_radio.h | 38 bool UpdateGroupValue(const std::string& groupValue);
|
H A D | render_checkbox.h | 37 bool UpdateGroupValue(const CheckableStatus groupValue);
|