Lines Matching refs:targetConfig
77 TargetConfig &targetConfig)
80 {"mccmnc", [&targetConfig](const string &limitValue) { return ParseMccMnc(limitValue,
81 targetConfig.mccmnc); }},
82 {"locale", [&targetConfig](const string &limitValue) { return ParseLSR(limitValue,
83 targetConfig.locale); }},
84 {"orientation", [&targetConfig](const string &limitValue) { return ParseOrientation(limitValue,
85 targetConfig.orientation); }},
86 {"device", [&targetConfig](const string &limitValue) { return ParseDeviceType(limitValue,
87 targetConfig.device); }},
88 {"colormode", [&targetConfig](const string &limitValue) { return ParseNightMode(limitValue,
89 targetConfig.colormode); }},
90 {"density", [&targetConfig](const string &limitValue) { return ParseResolution(limitValue,
91 targetConfig.density); }}