Searched refs:MatchScheme (Results 1 – 5 of 5) sorted by relevance
849 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 …]
213 bool MatchScheme(const std::string &scheme) const;
60 matchingSkills.MatchScheme(stringData); in DoSomethingInterestingWithMyAPI()
196 EXPECT_EQ(true, matchSkills.MatchScheme(""));199 EXPECT_EQ(true, matchSkills.MatchScheme(scheme));200 EXPECT_EQ(false, matchSkills.MatchScheme("schemediffer"));
297 bool MatchingSkills::MatchScheme(const std::string &scheme) const in MatchScheme() function in OHOS::EventFwk::MatchingSkills313 …return MatchEvent(want.GetAction()) && MatchEntity(want.GetEntities()) && MatchScheme(want.GetSche… in Match()