Lines Matching refs:iter
129 auto ret = find_if(g_fileClusterMap.begin(), g_fileClusterMap.end(), [type](auto iter) {
130 return iter.second == type;
136 ret = find_if(g_contentClusterMap.begin(), g_contentClusterMap.end(), [type](auto iter) {
137 return iter.second == type;
161 for (const auto &iter : contents) {
162 if (iter.length() > UINT16_MAX) {
166 uint16_t size = iter.length();
172 result.append(iter);
243 for (const auto &iter : IGNORE_FILE_REGEX) {
244 if ((iter.second == IgnoreType::IGNORE_FILE && !isFile) ||
245 (iter.second == IgnoreType::IGNORE_DIR && isFile)) {
248 if (regex_match(key, regex(iter.first))) {
291 auto ret = find_if(g_deviceMap.begin(), g_deviceMap.end(), [KeyParam](const auto &iter) {
292 return KeyParam.value == static_cast<const uint32_t>(iter.second);
302 auto ret = find_if(g_resolutionMap.begin(), g_resolutionMap.end(), [KeyParam](const auto &iter) {
303 return KeyParam.value == static_cast<const uint32_t>(iter.second);
387 for (auto iter = g_contentClusterMap.begin(); iter != g_contentClusterMap.end(); ++iter) {
388 result = result + "," + iter->first;