• Home
  • Raw
  • Download

Lines Matching refs:index

82     for (size_t index = 0; index < keyParams.size(); index++) {  in IsSelectCompile()  local
83 auto iter = selectableFuncMatch.find(keyParams[index].keyType); in IsSelectCompile()
87 if (!iter->second(index)) { in IsSelectCompile()
110 bool SelectCompileParse::IsSelectableMccmnc(vector<KeyParam> &keyParams, size_t &index, vector<KeyP… in IsSelectableMccmnc() argument
115 Mccmnc mccmncLimit({keyParams[index++], {KeyType::OTHER, 0}}); in IsSelectableMccmnc()
116 if (index < keyParams.size() && keyParams[index].keyType == KeyType::MNC) { in IsSelectableMccmnc()
117 mccmncLimit.mnc = keyParams[index]; in IsSelectableMccmnc()
119 index--; in IsSelectableMccmnc()
144 bool SelectCompileParse::IsSelectableLocale(vector<KeyParam> &keyParams, size_t &index, vector<KeyP… in IsSelectableLocale() argument
149 Locale localeLimit({keyParams[index++], {KeyType::OTHER, 0}, {KeyType::OTHER, 0}}); in IsSelectableLocale()
150 for (; index < keyParams.size(); index++) { in IsSelectableLocale()
151 if (keyParams[index].keyType == KeyType::SCRIPT) { in IsSelectableLocale()
152 localeLimit.script = keyParams[index]; in IsSelectableLocale()
155 if (keyParams[index].keyType == KeyType::REGION) { in IsSelectableLocale()
156 localeLimit.region = keyParams[index]; in IsSelectableLocale()
159 index--; in IsSelectableLocale()
166 bool SelectCompileParse::IsSelectableOther(vector<KeyParam> &keyParams, size_t &index, vector<KeyPa… in IsSelectableOther() argument
171 return find(limit.begin(), limit.end(), keyParams[index]) != limit.end(); in IsSelectableOther()