/external/chromium_org/v8/src/ |
D | cpu-profiler.cc | 161 return profiles_->profiles()->length(); in GetProfilesCount() 166 return profiles_->profiles()->at(index); in GetProfile() 177 profiles_->RemoveProfile(profile); in DeleteProfile() 197 rec->entry = profiles_->NewCodeEntry( in CallbackEvent() 199 profiles_->GetName(name)); in CallbackEvent() 213 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent() 227 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent() 243 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name)); in CodeCreateEvent() 269 rec->entry = profiles_->NewCodeEntry( in CodeCreateEvent() 271 profiles_->GetFunctionName(shared->DebugName()), in CodeCreateEvent() [all …]
|
/external/chromium_org/chromeos/network/ |
D | network_profile_handler.cc | 101 VLOG(2) << "Profiles: " << profiles_.size(); in OnPropertyChanged() 104 for (ProfileList::const_iterator it = profiles_.begin(); in OnPropertyChanged() 105 it != profiles_.end(); ++it) { in OnPropertyChanged() 151 profiles_.push_back(profile); in AddProfile() 153 OnProfileAdded(profiles_.back())); in AddProfile() 158 ProfileList::iterator found = std::find_if(profiles_.begin(), profiles_.end(), in RemoveProfile() 160 if (found == profiles_.end()) in RemoveProfile() 163 profiles_.erase(found); in RemoveProfile() 171 std::find_if(profiles_.begin(), profiles_.end(), in GetProfileForPath() 174 if (found == profiles_.end()) in GetProfileForPath() [all …]
|
D | network_profile_handler.h | 76 ProfileList profiles_; variable
|
/external/v8/src/ |
D | cpu-profiler.cc | 292 return Isolate::Current()->cpu_profiler()->profiles_->Profiles( in GetProfilesCount() 301 return profiler->profiles_->Profiles(token)->at(index); in GetProfile() 309 return profiler->profiles_->GetProfile(token, uid); in FindProfile() 334 Isolate::Current()->cpu_profiler()->profiles_->RemoveProfile(profile); in DeleteProfile() 341 return Isolate::Current()->cpu_profiler()->profiles_->HasDetachedProfiles(); in HasDetachedProfiles() 451 : profiles_(new CpuProfilesCollection()), in CpuProfiler() 463 delete profiles_; in ~CpuProfiler() 468 delete profiles_; in ResetProfiles() 469 profiles_ = new CpuProfilesCollection(); in ResetProfiles() 473 if (profiles_->StartProfiling(title, next_profile_uid_++)) { in StartCollectingProfile() [all …]
|
D | profile-generator.h | 401 return profiles_->NewCodeEntry(tag, name, resource_name, line_number); in INLINE() 406 return profiles_->NewCodeEntry(tag, name); in INLINE() 412 return profiles_->NewCodeEntry(tag, name_prefix, name); in INLINE() 417 return profiles_->NewCodeEntry(tag, args_count); in INLINE() 421 return profiles_->NewCodeEntry(security_token_id); in INLINE() 440 CpuProfilesCollection* profiles_; variable
|
/external/chromium_org/chromeos/dbus/ |
D | fake_shill_profile_client.cc | 43 STLDeleteValues(&profiles_); in ~FakeShillProfileClient() 135 profiles_[profile_path] = profile; in AddProfile() 189 for (ProfileMap::iterator iter = profiles_.begin(); in GetProfilePaths() 190 iter != profiles_.end(); ++iter) { in GetProfilePaths() 198 ProfileMap::const_iterator found = profiles_.find(profile_path.value()); in GetProfile() 199 if (found == profiles_.end()) { in GetProfile()
|
D | fake_shill_profile_client.h | 67 ProfileMap profiles_; variable
|
/external/chromium/chrome/browser/autofill/ |
D | autofill_merge_unittest.cc | 81 ScopedVector<AutofillProfile> profiles_; member in __anon061cc9bf0111::PersonalDataManagerMock 93 profiles_.reset(); in Reset() 99 if (!MergeProfile(profile, profiles_.get(), &profiles)) in SaveImportedProfile() 100 profiles_.push_back(new AutofillProfile(profile)); in SaveImportedProfile() 104 return profiles_.get(); in web_profiles()
|
D | autofill_ie_toolbar_import_win.cc | 163 if (!ImportCurrentUserProfiles(&profiles_, &credit_cards_)) { in ImportProfiles() 174 if (!profiles_.empty()) in OnPersonalDataLoaded() 175 personal_data_manager_->SetProfiles(&profiles_); in OnPersonalDataLoaded() 187 std::vector<AutofillProfile> profiles_; member in __anon5f94cdd70111::AutofillImporter
|
D | personal_data_manager_mac.mm | 34 : profiles_(*profiles) { 38 // Import the "me" card from the Mac Address Book and fill in |profiles_|. 55 ScopedVector<AutofillProfile>& profiles_; 65 profiles_.reset(); 97 profiles_.push_back(profile.release());
|
D | personal_data_manager.cc | 647 profiles_.clear(); in profiles() 652 profiles_.insert(profiles_.end(), web_profiles_.begin(), web_profiles_.end()); in profiles() 653 profiles_.insert(profiles_.end(), in profiles() 655 return profiles_; in profiles()
|
D | personal_data_manager.h | 243 std::vector<AutofillProfile*> profiles_; variable
|
/external/chromium_org/components/autofill/core/browser/ |
D | autofill_merge_unittest.cc | 96 ScopedVector<AutofillProfile> profiles_; member in autofill::__anonb50e3ac60111::PersonalDataManagerMock 109 profiles_.clear(); in Reset() 116 MergeProfile(profile, profiles_.get(), "en-US", &profiles); in SaveImportedProfile() 118 profiles_.push_back(new AutofillProfile(profile)); in SaveImportedProfile() 124 return profiles_.get(); in web_profiles()
|
D | test_personal_data_manager.cc | 18 profiles_.push_back(profile); in AddTestingProfile() 31 return profiles_; in GetProfiles()
|
D | autofill_ie_toolbar_import_win.cc | 208 &profiles_, in ImportProfiles() 220 for (std::vector<AutofillProfile>::const_iterator iter = profiles_.begin(); in OnPersonalDataChanged() 221 iter != profiles_.end(); ++iter) { in OnPersonalDataChanged() 237 std::vector<AutofillProfile> profiles_; member in autofill::__anon3a29f0fe0111::AutofillImporter
|
D | personal_data_manager_mac.mm | 44 : profiles_(*profiles) { 48 // Import the "me" card from the Mac Address Book and fill in |profiles_|. 67 ScopedVector<AutofillProfile>& profiles_; 78 profiles_.clear(); 141 profiles_.push_back(profile.release());
|
D | test_personal_data_manager.h | 48 std::vector<AutofillProfile*> profiles_;
|
D | personal_data_manager.cc | 532 profiles_.clear(); in GetProfiles() 537 profiles_.insert(profiles_.end(), web_profiles_.begin(), web_profiles_.end()); in GetProfiles() 538 profiles_.insert(profiles_.end(), in GetProfiles() 540 return profiles_; in GetProfiles()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_processes_api.cc | 59 profiles_.insert(profile); in ObserveProfile() 142 for (ProfileSet::iterator it = profiles_.begin(); in OnItemsChanged() 143 it != profiles_.end(); it++) { in OnItemsChanged()
|
D | extension_history_api.cc | 73 if (profiles_.find(source.map_key()) == profiles_.end()) in ObserveProfile() 74 profiles_[source.map_key()] = profile; in ObserveProfile() 93 ProfileMap::iterator it = profiles_.find(source.map_key()); in Observe() 94 if (it != profiles_.end()) { in Observe()
|
D | extension_processes_api.h | 53 ProfileSet profiles_;
|
D | extension_history_api.h | 54 ProfileMap profiles_;
|
/external/chromium_org/chrome/browser/webdata/ |
D | autofill_profile_syncable_service.cc | 104 if (!LoadAutofillData(&profiles_.get())) { in MergeDataAndStartSyncing() 115 profiles_.begin(); ix != profiles_.end(); ++ix) { in MergeDataAndStartSyncing() 127 CreateGUIDToProfileMap(profiles_.get(), &remaining_profiles); in MergeDataAndStartSyncing() 207 profiles_.clear(); in StopSyncing() 500 profiles_.push_back(new_profile); in CreateOrUpdateProfile() 522 profiles_.push_back(new AutofillProfile(*(change.profile()))); in ActOnChange() 523 profiles_map_[change.profile()->guid()] = profiles_.get().back(); in ActOnChange()
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
D | sync_test.cc | 242 if (profiles_.empty()) in GetProfile() 244 if (index < 0 || index >= static_cast<int>(profiles_.size())) in GetProfile() 246 return profiles_[index]; in GetProfile() 278 if (!profiles_.empty() || !browsers_.empty() || !clients_.empty()) in SetupClients() 282 profiles_.resize(num_clients_); in SetupClients() 301 profiles_[index] = MakeProfile( in InitializeInstance() 340 if (profiles_.empty()) { in SetupSync()
|
D | sync_test.h | 337 std::vector<Profile*> profiles_; variable
|