Home
last modified time | relevance | path

Searched refs:ControlTags (Results 1 – 11 of 11) sorted by relevance

/aosp12/hardware/libhardware/modules/camera/3_4/metadata/
H A Dmetadata_test.cpp94 EXPECT_CALL(*component1_, ControlTags()).WillOnce(Return(control_tags_1)); in TEST_F()
97 EXPECT_CALL(*component2_, ControlTags()).WillOnce(Return(control_tags_2)); in TEST_F()
143 EXPECT_CALL(*component1_, ControlTags()) in TEST_F()
152 EXPECT_CALL(*component2_, ControlTags()) in TEST_F()
H A Dcontrol.h40 virtual std::vector<int32_t> ControlTags() const override;
78 std::vector<int32_t> Control<T>::ControlTags() const { in ControlTags() function
H A Dpartial_metadata_interface_mock.h32 MOCK_CONST_METHOD0(ControlTags, std::vector<int32_t>());
H A Dpartial_metadata_interface.h34 virtual std::vector<int32_t> ControlTags() const = 0;
H A Dpartial_metadata_factory_test.cpp50 ASSERT_EQ(control_->ControlTags().size(), 1u); in ExpectControlTags()
51 EXPECT_EQ(control_->ControlTags()[0], delegate_tag_); in ExpectControlTags()
89 ASSERT_EQ(state->ControlTags().size(), 0u); in TEST_F()
H A Dproperty.h33 virtual std::vector<int32_t> ControlTags() const override { return {}; }; in ControlTags() function
H A Dstate.h35 virtual std::vector<int32_t> ControlTags() const override { return {}; }; in ControlTags() function
H A Dstate_test.cpp61 EXPECT_TRUE(state_->ControlTags().empty()); in TEST_F()
H A Dproperty_test.cpp46 EXPECT_EQ(property.ControlTags().size(), 0u); in TEST_F()
H A Dmetadata.cpp72 tags = component->ControlTags(); in FillStaticMetadata()
H A Dcontrol_test.cpp73 ASSERT_EQ(control_->ControlTags().size(), 1u); in ExpectTags()
74 EXPECT_EQ(control_->ControlTags()[0], delegate_tag_); in ExpectTags()