Home
last modified time | relevance | path

Searched refs:feature_flag (Results 1 – 2 of 2) sorted by relevance

/platform_testing/libraries/flag-helpers/libflagtest/
Dflag_checker.cpp37 for (const p_flag feature_flag : flag_condition.second) { in GetFlagsNotMetRequirements() local
38 if (!CheckFlagCondition(expected_condition, feature_flag)) { in GetFlagsNotMetRequirements()
40 unsatisfied_flags.push_back({expected_condition, feature_flag.second}); in GetFlagsNotMetRequirements()
47 bool CheckFlagCondition(bool expected_condition, const p_flag feature_flag) { in CheckFlagCondition() argument
49 if (feature_flag.first) { in CheckFlagCondition()
50 return feature_flag.first() == expected_condition; in CheckFlagCondition()
53 std::vector<std::string> flag_args = android::base::Split(feature_flag.second, ","); in CheckFlagCondition()
/platform_testing/libraries/flag-helpers/libflagtest/include/
Dflag_checker.h40 bool CheckFlagCondition(bool expected_condition, const p_flag feature_flag);