Home | History | Annotate | Download | only in extensions

Lines Matching defs:iter

408     for (base::DictionaryValue::Iterator iter(*suggested_key_dict);
409 !iter.IsAtEnd(); iter.Advance()) {
412 if (iter.value().GetAsString(&suggested_key_string) &&
415 suggestions[iter.key()] = suggested_key_string;
446 for (SuggestionMap::iterator iter = suggestions.begin();
447 iter != suggestions.end(); ++iter) {
452 if (iter->first == values::kKeybindingPlatformDefault &&
453 iter->second.find("Command+") != std::string::npos) {
462 suggestions[iter->first] = NormalizeShortcutSuggestion(iter->second,
463 iter->first);
481 std::map<const std::string, std::string>::const_iterator iter =
483 for ( ; iter != suggestions.end(); ++iter) {
485 if (!iter->second.empty()) {
486 // Note that we pass iter->first to pretend we are on a platform we're not
488 accelerator = ParseImpl(iter->second, iter->first, index,
495 iter->first,
496 iter->second);
502 if (iter->first == key) {