Home
last modified time | relevance | path

Searched refs:groupValue (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/ai/neural_network_runtime/test/unittest/ops/
H A Dops_test.cpp92 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 Dconv2d_transpose_pad_test.cpp345 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 Dconv2d_pad_test.cpp300 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 Dconv2d_padmode_test.cpp304 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 Dconv2d_tranpose_padmode_test.cpp349 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 Drender_radio.cpp40 …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 Dcheckable_component.h642 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 Drender_checkbox.cpp118 bool RenderCheckbox::UpdateGroupValue(const CheckableStatus groupValue) in UpdateGroupValue() argument
127 if (component_->GetGroupValue() != groupValue) { in UpdateGroupValue()
128 component_->SetGroupValue(groupValue); in UpdateGroupValue()
H A Drender_radio.h38 bool UpdateGroupValue(const std::string& groupValue);
H A Drender_checkbox.h37 bool UpdateGroupValue(const CheckableStatus groupValue);