Searched refs:map_entry (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/tools/memory_inspector/memory_inspector/classification/
H A Dmmap_classifier.py47 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/components/google/core/browser/
H A Dgoogle_url_tracker.cc204 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
328 GoogleURLTrackerMapEntry* map_entry = i->second; local
376 UnregisterForEntrySpecificNotifications( GoogleURLTrackerMapEntry* map_entry, bool must_be_listening_for_commit) argument
[all...]
H A Dgoogle_url_tracker_unittest.cc358 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
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...]
H A Dgoogle_url_tracker.h158 // Unregisters any listeners for the navigation helper in |map_entry|.
165 GoogleURLTrackerMapEntry* map_entry,
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dnative_heap.py52 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/
H A Dprofile_policy_connector_factory.cc52 ProfilePolicyConnector*& map_entry = connectors_[profile]; local
53 CHECK(!map_entry);
54 map_entry = connector;
/external/chromium_org/chrome/browser/history/
H A Durl_index_private_data.cc935 WordMapEntry* map_entry = map_item->add_word_map_entry(); local
936 map_entry->set_word(base::UTF16ToUTF8(iter->first));
937 map_entry->set_word_id(iter->second);
949 CharWordMapEntry* map_entry = map_item->add_char_word_map_entry(); local
950 map_entry->set_char_16(iter->first);
952 map_entry->set_item_count(word_id_set.size());
955 map_entry->add_word_id(*set_iter);
967 WordIDHistoryMapEntry* map_entry = local
969 map_entry->set_word_id(iter->first);
971 map_entry
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/
H A Dcloud_external_data_policy_observer.cc230 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/
H A Dpolicy_loader_win.cc141 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/
H A Dprofile-generator.cc185 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/
H A Dhid_service_mac.cc266 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/
H A Dinput_method_util.cc296 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/
H A Dprogram_manager.cc1027 UniformMap::iterator map_entry = uniform_map.find(name); local
1028 if (map_entry == uniform_map.end()) {
1033 if (map_entry->second == type)

Completed in 2813 milliseconds