HomeSort by relevance Sort by last modified time
    Searched refs:result_it (Results 1 - 5 of 5) sorted by null

  /art/compiler/sea_ir/types/
types.h 39 art::SafeMap<int, const Type*>::const_iterator result_it = type_map_.find(instruction_id); local
40 if (type_map_.end() != result_it) {
41 return result_it->second;
  /art/compiler/utils/
scoped_hashtable.h 41 typename std::map<K, V>::const_iterator result_it = (*scopes_it).find(k); local
42 if (result_it != (*scopes_it).end()) {
43 return (*result_it).second;
  /external/chromium_org/chrome/browser/ui/app_list/search/
mixer.cc 117 result_it = (*provider_it)->results().begin();
118 result_it != (*provider_it)->results().end();
119 ++result_it) {
120 DCHECK_GE((*result_it)->relevance(), 0.0);
121 DCHECK_LE((*result_it)->relevance(), 1.0);
122 DCHECK(!(*result_it)->id().empty());
126 known_results.find((*result_it)->id());
148 SortData(*result_it, (*result_it)->relevance() + boost));
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.h 64 ACMatches::const_iterator result_it,
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender.cc 280 for (std::vector<SpellCheckResult>::iterator result_it = results->begin();
281 result_it != results->end();
282 ++result_it) {
283 if (!IsInBounds(result_it->location, result_it->length, text.length()))
285 MarkerMap::const_iterator marker_it = marker_map.find(result_it->location);
290 result_it->hash = marker_it->second;
294 result_it->hash = BuildHash(session_start_, ++misspelling_counter_);
298 BuildFeedback(*result_it, text));

Completed in 91 milliseconds