Home
last modified time | relevance | path

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

/aosp12/system/tools/sysprop/
H A DTypeChecker.cpp63 auto ctx_values = android::base::Split(ctx_type, " "); in IsCompatible() local
64 if (ctx_values.empty() || ctx_values[0] != "enum") { in IsCompatible()
67 ctx_values.erase(ctx_values.begin()); in IsCompatible()
68 std::sort(ctx_values.begin(), ctx_values.end()); in IsCompatible()
70 return prop_values == ctx_values; in IsCompatible()