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 116 result_it = (*provider_it)->results().begin();
117 result_it != (*provider_it)->results().end();
118 ++result_it) {
119 DCHECK_GE((*result_it)->relevance(), 0.0);
120 DCHECK_LE((*result_it)->relevance(), 1.0);
121 DCHECK(!(*result_it)->id().empty());
125 known_results.find((*result_it)->id());
147 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 292 for (std::vector<SpellCheckResult>::iterator result_it = results->begin();
293 result_it != results->end();
294 ++result_it) {
295 if (!IsInBounds(result_it->location, result_it->length, text.length()))
297 MarkerMap::const_iterator marker_it = marker_map.find(result_it->location);
302 result_it->hash = marker_it->second;
306 result_it->hash = BuildHash(session_start_, ++misspelling_counter_);
310 BuildFeedback(*result_it, text));

Completed in 87 milliseconds