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

  /external/chromium_org/chrome/browser/safe_browsing/
last_download_finder.cc 110 if (finder->profiles_.empty())
151 if (std::find(profiles_.begin(), profiles_.end(), profile) !=
152 profiles_.end()) {
162 profiles_.push_back(profile);
174 if (std::find(profiles_.begin(), profiles_.end(), profile) !=
175 profiles_.end()) {
186 std::find(profiles_.begin(), profiles_.end(), profile)
    [all...]
incident_reporting_service.cc 152 STLDeleteValues(&profiles_);
237 profiles_.insert(ProfileContextCollection::value_type(profile, NULL))
246 ProfileContextCollection::iterator it = profiles_.find(profile);
247 return it == profiles_.end() ? NULL : it->second;
253 ProfileContextCollection::iterator it = profiles_.find(profile);
254 if (it == profiles_.end())
262 profiles_.erase(it);
406 for (ProfileContextCollection::iterator scan = profiles_.begin();
407 scan != profiles_.end();
448 for (ProfileContextCollection::const_iterator scan = profiles_.begin()
    [all...]
last_download_finder.h 84 // Removes the profile pointed to by |it| from profiles_ and reports results
101 std::vector<Profile*> profiles_; member in class:safe_browsing::LastDownloadFinder
incident_reporting_service.h 262 ProfileContextCollection profiles_; member in class:safe_browsing::IncidentReportingService
  /external/chromium_org/components/autofill/core/browser/
test_personal_data_manager.cc 17 profiles_.push_back(profile);
28 return profiles_;
33 return profiles_;
autofill_merge_unittest.cc 95 ScopedVector<AutofillProfile> profiles_; member in class:autofill::__anon10828::PersonalDataManagerMock
108 profiles_.clear();
115 MergeProfile(profile, profiles_.get(), "en-US", &profiles);
117 profiles_.push_back(new AutofillProfile(profile));
123 return profiles_.get();
test_personal_data_manager.h 22 // Adds |profile| to |profiles_|. This does not take ownership of |profile|.
53 std::vector<AutofillProfile*> profiles_; member in class:autofill::TestPersonalDataManager
autofill_ie_toolbar_import_win.cc 208 &profiles_,
220 for (std::vector<AutofillProfile>::const_iterator iter = profiles_.begin();
221 iter != profiles_.end(); ++iter) {
237 std::vector<AutofillProfile> profiles_; member in class:autofill::__anon10821::AutofillImporter
personal_data_manager.cc 536 profiles_.clear();
541 profiles_.insert(profiles_.end(), web_profiles_.begin(), web_profiles_.end());
542 profiles_.insert(profiles_.end(),
544 return profiles_;
    [all...]
personal_data_manager.h 321 mutable std::vector<AutofillProfile*> profiles_; member in class:autofill::PersonalDataManager
  /external/chromium_org/chromeos/network/
network_profile_handler.cc 102 VLOG(2) << "Profiles: " << profiles_.size();
105 for (ProfileList::const_iterator it = profiles_.begin();
106 it != profiles_.end(); ++it) {
147 profiles_.push_back(profile);
149 OnProfileAdded(profiles_.back()));
154 ProfileList::iterator found = std::find_if(profiles_.begin(), profiles_.end(),
156 if (found == profiles_.end())
159 profiles_.erase(found);
167 std::find_if(profiles_.begin(), profiles_.end()
    [all...]
network_profile_handler.h 75 ProfileList profiles_; member in class:chromeos::NetworkProfileHandler
  /external/chromium_org/v8/src/
cpu-profiler.cc 148 return profiles_->profiles()->length();
153 return profiles_->profiles()->at(index);
164 profiles_->RemoveProfile(profile);
166 if (profiles_->profiles()->is_empty() && !is_profiling_) {
188 rec->entry = profiles_->NewCodeEntry(
190 profiles_->GetName(name));
204 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name));
218 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name))
    [all...]
cpu-profiler.h 263 CpuProfilesCollection* profiles_; member in class:v8::internal::CpuProfiler
profile-generator.h 325 CpuProfilesCollection* profiles_; member in class:v8::internal::ProfileGenerator
profile-generator.cc 571 : profiles_(profiles),
657 profiles_->AddPathToCurrentProfiles(sample.timestamp, entries);
  /external/chromium_org/chromeos/dbus/
fake_shill_profile_client.cc 43 STLDeleteValues(&profiles_);
135 profiles_[profile_path] = profile;
215 for (ProfileMap::iterator iter = profiles_.begin();
216 iter != profiles_.end(); ++iter) {
225 for (ProfileMap::const_iterator iter = profiles_.begin();
226 iter != profiles_.end(); ++iter) {
241 STLDeleteValues(&profiles_);
247 ProfileMap::const_iterator found = profiles_.find(profile_path.value());
248 if (found == profiles_.end()) {
fake_shill_profile_client.h 77 ProfileMap profiles_; member in class:chromeos::FakeShillProfileClient
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.cc 99 if (!LoadAutofillData(&profiles_.get())) {
110 profiles_.begin(); ix != profiles_.end(); ++ix) {
122 CreateGUIDToProfileMap(profiles_.get(), &remaining_profiles);
202 profiles_.clear();
545 profiles_.push_back(new_profile);
567 profiles_.push_back(new AutofillProfile(*(change.profile())));
568 profiles_map_[change.profile()->guid()] = profiles_.get().back();
autofill_profile_syncable_service.h 132 // The map of the guid to profiles owned by the |profiles_| vector.
193 ScopedVector<AutofillProfile> profiles_; member in class:autofill::AutofillProfileSyncableService
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_test.cc 296 if (profiles_.empty())
298 if (index < 0 || index >= static_cast<int>(profiles_.size()))
300 return profiles_[index];
344 if (!profiles_.empty() || !browsers_.empty() || !clients_.empty())
348 profiles_.resize(num_clients_);
369 profiles_[index] = MakeProfile(
449 if (profiles_.empty()) {
    [all...]
sync_test.h 372 std::vector<Profile*> profiles_; member in class:SyncTest

Completed in 231 milliseconds