Home
last modified time | relevance | path

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

/base/notification/common_event_service/test/systemtest/common/acts/actsCESMatchingSkillsTest/
DactsCESMatchingSkillsTest.cpp849 EXPECT_TRUE(matchingSkills.MatchScheme(""));
851 EXPECT_TRUE(matchingSkills.MatchScheme(scheme));
853 if (matchingSkills.MatchScheme("schemeMatchScheme")) {
879 EXPECT_TRUE(matchingSkills.MatchScheme(""));
881 EXPECT_TRUE(matchingSkills.MatchScheme(scheme));
883 if (!matchingSkills.MatchScheme("schemeMatchScheme")) {
910 EXPECT_TRUE(matchingSkills.MatchScheme(scheme));
912 if (!matchingSkills.MatchScheme("MatchScheme")) {
939 EXPECT_TRUE(matchingSkills.MatchScheme(scheme));
941 if (!matchingSkills.MatchScheme("MatchScheme2")) {
[all …]
/base/notification/common_event_service/interfaces/inner_api/
Dmatching_skills.h213 bool MatchScheme(const std::string &scheme) const;
/base/notification/common_event_service/test/fuzztest/matchingskills_fuzzer/
Dmatchingskills_fuzzer.cpp60 matchingSkills.MatchScheme(stringData); in DoSomethingInterestingWithMyAPI()
/base/notification/common_event_service/frameworks/native/test/unittest/
Dmatching_skills_test.cpp196 EXPECT_EQ(true, matchSkills.MatchScheme(""));
199 EXPECT_EQ(true, matchSkills.MatchScheme(scheme));
200 EXPECT_EQ(false, matchSkills.MatchScheme("schemediffer"));
/base/notification/common_event_service/frameworks/native/src/
Dmatching_skills.cpp297 bool MatchingSkills::MatchScheme(const std::string &scheme) const in MatchScheme() function in OHOS::EventFwk::MatchingSkills
313 …return MatchEvent(want.GetAction()) && MatchEntity(want.GetEntities()) && MatchScheme(want.GetSche… in Match()