Home
last modified time | relevance | path

Searched refs:MatchEntity (Results 1 – 5 of 5) sorted by relevance

/base/notification/common_event_service/test/systemtest/common/acts/actsCESMatchingSkillsTest/
DactsCESMatchingSkillsTest.cpp681 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
684 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
686 if (matchingSkills.MatchEntity(entityVector)) {
714 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
717 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
720 if (matchingSkills.MatchEntity(entityVector)) {
748 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
751 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
754 if (matchingSkills.MatchEntity(entityVector)) {
782 EXPECT_TRUE(matchingSkills.MatchEntity(entityVector));
[all …]
/base/notification/common_event_service/interfaces/inner_api/
Dmatching_skills.h205 bool MatchEntity(const std::vector<std::string> &entities) const;
/base/notification/common_event_service/test/fuzztest/matchingskills_fuzzer/
Dmatchingskills_fuzzer.cpp58 matchingSkills.MatchEntity(permissions); in DoSomethingInterestingWithMyAPI()
/base/notification/common_event_service/frameworks/native/test/unittest/
Dmatching_skills_test.cpp174 EXPECT_EQ(true, matchSkills.MatchEntity(entities));
179 EXPECT_EQ(true, matchSkills.MatchEntity(entities));
181 EXPECT_EQ(false, matchSkills.MatchEntity(entities));
/base/notification/common_event_service/frameworks/native/src/
Dmatching_skills.cpp280 bool MatchingSkills::MatchEntity(const std::vector<std::string> &entities) const in MatchEntity() function in OHOS::EventFwk::MatchingSkills
313 …return MatchEvent(want.GetAction()) && MatchEntity(want.GetEntities()) && MatchScheme(want.GetSche… in Match()