Searched refs:ControlTags (Results 1 – 11 of 11) sorted by relevance
/aosp12/hardware/libhardware/modules/camera/3_4/metadata/ |
H A D | metadata_test.cpp | 94 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 D | control.h | 40 virtual std::vector<int32_t> ControlTags() const override; 78 std::vector<int32_t> Control<T>::ControlTags() const { in ControlTags() function
|
H A D | partial_metadata_interface_mock.h | 32 MOCK_CONST_METHOD0(ControlTags, std::vector<int32_t>());
|
H A D | partial_metadata_interface.h | 34 virtual std::vector<int32_t> ControlTags() const = 0;
|
H A D | partial_metadata_factory_test.cpp | 50 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 D | property.h | 33 virtual std::vector<int32_t> ControlTags() const override { return {}; }; in ControlTags() function
|
H A D | state.h | 35 virtual std::vector<int32_t> ControlTags() const override { return {}; }; in ControlTags() function
|
H A D | state_test.cpp | 61 EXPECT_TRUE(state_->ControlTags().empty()); in TEST_F()
|
H A D | property_test.cpp | 46 EXPECT_EQ(property.ControlTags().size(), 0u); in TEST_F()
|
H A D | metadata.cpp | 72 tags = component->ControlTags(); in FillStaticMetadata()
|
H A D | control_test.cpp | 73 ASSERT_EQ(control_->ControlTags().size(), 1u); in ExpectTags() 74 EXPECT_EQ(control_->ControlTags()[0], delegate_tag_); in ExpectTags()
|