Home
last modified time | relevance | path

Searched refs:info1 (Results 1 – 3 of 3) sorted by relevance

/hardware/google/av/codec2/tests/vndk/
DC2BufferTest.cpp703 std::shared_ptr<C2Info> info1(new C2Number1Info(1)); in TEST_F() local
707 EXPECT_FALSE(buffer->hasInfo(info1->type())); in TEST_F()
710 ASSERT_EQ(C2_OK, buffer->setInfo(info1)); in TEST_F()
712 EXPECT_EQ(*info1, *buffer->info().front()); in TEST_F()
713 EXPECT_TRUE(buffer->hasInfo(info1->type())); in TEST_F()
718 EXPECT_TRUE(buffer->hasInfo(info1->type())); in TEST_F()
721 std::shared_ptr<C2Info> removed = buffer->removeInfo(info1->type()); in TEST_F()
723 EXPECT_EQ(*removed, *info1); in TEST_F()
726 EXPECT_FALSE(buffer->hasInfo(info1->type())); in TEST_F()
729 removed = buffer->removeInfo(info1->type()); in TEST_F()
[all …]
/hardware/interfaces/broadcastradio/common/utils2x/include/broadcastradio-utils-2x/
DUtils.h140 bool operator()(const V2_0::ProgramInfo& info1, const V2_0::ProgramInfo& info2) const;
/hardware/interfaces/broadcastradio/common/utils2x/
DUtils.cpp365 bool ProgramInfoKeyEqual::operator()(const ProgramInfo& info1, const ProgramInfo& info2) const { in operator ()() argument
366 auto& id1 = info1.selector.primaryId; in operator ()()