Home
last modified time | relevance | path

Searched refs:CheckLogicRelationship (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/systemabilitymgr/samgr/services/common/test/unittest/
H A Dparse_util_test.cpp1209 ret = parser_->CheckLogicRelationship("1", "");
1211 ret = parser_->CheckLogicRelationship("1", "1");
1213 ret = parser_->CheckLogicRelationship("", "1");
1215 ret = parser_->CheckLogicRelationship("1", ">1");
1217 ret = parser_->CheckLogicRelationship("2", ">1");
1219 ret = parser_->CheckLogicRelationship("1", ">=1");
1221 ret = parser_->CheckLogicRelationship("1", "<1");
1223 ret = parser_->CheckLogicRelationship("0", "<1");
1225 ret = parser_->CheckLogicRelationship("1", "<=1");
1227 ret = parser_->CheckLogicRelationship("1", ">=abc");
[all …]
/ohos5.0/foundation/systemabilitymgr/samgr/interfaces/innerkits/common/include/
H A Dparse_util.h44 static bool CheckLogicRelationship(const std::string& state, const std::string& profile);
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/collect/
H A Dcommon_event_collect.cpp279 if (!ParseUtil::CheckLogicRelationship(stateMap[key], profileValue)) { in CheckCondition()
306 if (!ParseUtil::CheckLogicRelationship(eventExtraMessages[key], profileValue)) { in CheckExtraMessage()
/ohos5.0/foundation/systemabilitymgr/samgr/services/common/src/
H A Dparse_util.cpp668 bool ParseUtil::CheckLogicRelationship(const std::string& state, const std::string& profile) in CheckLogicRelationship() function in OHOS::ParseUtil