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

  /external/chromium_org/components/google/core/browser/
google_url_tracker.cc 204 GoogleURLTrackerMapEntry* map_entry = i->second; local
206 UnregisterForEntrySpecificNotifications(map_entry, false);
208 delete map_entry;
268 GoogleURLTrackerMapEntry* map_entry = NULL; local
272 map_entry = i->second;
276 if (!map_entry) {
283 map_entry = new GoogleURLTrackerMapEntry(
285 map_entry->navigation_helper()->SetListeningForTabDestruction(true);
286 entry_map_.insert(std::make_pair(infobar_manager, map_entry));
287 } else if (map_entry->infobar_delegate())
328 GoogleURLTrackerMapEntry* map_entry = i->second; local
    [all...]
google_url_tracker_unittest.cc 358 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(infobar_manager); local
359 if (!map_entry)
366 ASSERT_TRUE(map_entry->has_infobar_delegate());
370 EXPECT_EQ(0, map_entry->infobar_delegate()->pending_id());
373 map_entry->infobar_delegate()->Close(false);
411 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(infobar_manager); local
412 return map_entry ? map_entry->infobar_delegate() : NULL;
417 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(infobar_manager); local
418 return map_entry ? map_entry->navigation_helper() : NULL
429 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(infobar_manager); local
680 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(&infobar_manager); local
875 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(&infobar_manager); local
986 GoogleURLTrackerMapEntry* map_entry = GetMapEntry(&infobar_manager); local
    [all...]
google_url_tracker.h 158 // Unregisters any listeners for the navigation helper in |map_entry|.
165 GoogleURLTrackerMapEntry* map_entry,
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
mmap_classifier.py 47 for map_entry in mmap.entries:
48 values = [0, map_entry.priv_dirty_bytes, map_entry.priv_clean_bytes,
49 map_entry.shared_dirty_bytes, map_entry.shared_clean_bytes]
51 res.AddToMatchingNodes(map_entry, values)
67 def Match(self, map_entry):
68 if self._file_re and not self._file_re.search(map_entry.mapped_file):
70 if self._prot_re and not self._prot_re.search(map_entry.prot_flags):
  /external/chromium_org/tools/memory_inspector/memory_inspector/core/
native_heap.py 52 map_entry = mmap.Lookup(abs_addr)
53 if not map_entry:
55 stack_frame.SetExecFileInfo(map_entry.mapped_file,
56 map_entry.GetRelativeFileOffset(abs_addr))
  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.cc 52 ProfilePolicyConnector*& map_entry = connectors_[profile]; local
53 CHECK(!map_entry);
54 map_entry = connector;
  /external/chromium_org/chrome/browser/history/
url_index_private_data.cc 935 WordMapEntry* map_entry = map_item->add_word_map_entry(); local
949 CharWordMapEntry* map_entry = map_item->add_char_word_map_entry(); local
967 WordIDHistoryMapEntry* map_entry = local
986 HistoryInfoMapEntry* map_entry = map_item->add_history_info_map_entry(); local
1022 WordStartsMapEntry* map_entry = map_item->add_word_starts_map_entry(); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_policy_observer.cc 230 PolicyMap::Entry& map_entry = device_local_account_entries_[user_id]; local
231 if (map_entry.Equals(*entry))
234 map_entry.DeleteOwnedMembers();
235 map_entry = *entry->DeepCopy();
  /external/chromium_org/components/policy/core/common/
policy_loader_win.cc 141 const PolicyMap::Entry* map_entry = local
143 if (map_entry && map_entry->value) {
145 if (!map_entry->value->GetAsList(&policy_list_value))
167 map_entry->level, map_entry->scope,
169 map_entry->external_data_fetcher);
  /external/chromium_org/v8/src/
profile-generator.cc 185 HashMap::Entry* map_entry = local
187 return map_entry != NULL ?
188 reinterpret_cast<ProfileNode*>(map_entry->value) : NULL;
193 HashMap::Entry* map_entry = local
195 if (map_entry->value == NULL) {
198 map_entry->value = new_node;
201 return reinterpret_cast<ProfileNode*>(map_entry->value);
  /external/chromium_org/device/hid/
hid_service_mac.cc 266 const auto& map_entry = devices().find(device_id); local
267 if (map_entry == devices().end()) {
270 const HidDeviceInfo& device_info = map_entry->second;
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_util.cc 296 const EnglishToResouceId& map_entry = kEnglishToResourceIdArray[i]; local
298 map_entry.english_string_from_ibus, map_entry.resource_id)).second;
300 << map_entry.english_string_from_ibus;
  /external/chromium_org/gpu/command_buffer/service/
program_manager.cc 1027 UniformMap::iterator map_entry = uniform_map.find(name); local
1028 if (map_entry == uniform_map.end()) {
1033 if (map_entry->second == type)
    [all...]

Completed in 608 milliseconds