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

  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
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...]
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.cc 291 STLDeleteValues(&profiles_);
448 profiles_.insert(ProfileContextCollection::value_type(profile, NULL))
457 ProfileContextCollection::iterator it = profiles_.find(profile);
458 return it == profiles_.end() ? NULL : it->second;
464 ProfileContextCollection::iterator it = profiles_.find(profile);
465 if (it == profiles_.end())
473 profiles_.erase(it);
482 for (ProfileContextCollection::const_iterator scan = profiles_.begin();
483 scan != profiles_.end();
645 for (ProfileContextCollection::iterator scan = profiles_.begin()
    [all...]
incident_reporting_service.h 294 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::__anon10946::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::__anon10938::AutofillImporter
personal_data_manager.cc     [all...]
personal_data_manager.h 327 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 260 CpuProfilesCollection* profiles_; member in class:v8::internal::CpuProfiler
profile-generator.h 325 CpuProfilesCollection* profiles_; member in class:v8::internal::ProfileGenerator
profile-generator.cc 561 : profiles_(profiles),
647 profiles_->AddPathToCurrentProfiles(sample.timestamp, entries);
  /external/chromium_org/chrome/browser/sync/test/integration/
extensions_helper.cc 170 std::vector<Profile*> profiles_; member in class:extensions_helper::__anon9440::ExtensionsMatchChecker
179 : profiles_(profiles), observing_(false) {
180 DCHECK_GE(profiles_.size(), 2U);
185 for (std::vector<Profile*>::iterator it = profiles_.begin();
186 it != profiles_.end();
200 std::vector<Profile*>::iterator it = profiles_.begin();
203 for (; it != profiles_.end(); ++it) {
240 for (std::vector<Profile*>::iterator it = profiles_.begin();
241 it != profiles_.end();
apps_helper.cc 193 std::vector<Profile*> profiles_; member in class:apps_helper::__anon9429::AppsMatchChecker
205 : profiles_(profiles), observing_(false) {
206 DCHECK_GE(profiles_.size(), 2U);
211 for (std::vector<Profile*>::iterator it = profiles_.begin();
212 it != profiles_.end();
228 std::vector<Profile*>::iterator it = profiles_.begin();
231 for (; it != profiles_.end(); ++it) {
302 for (std::vector<Profile*>::iterator it = profiles_.begin();
303 it != profiles_.end();
sync_test.cc 306 if (profiles_.empty())
308 if (index < 0 || index >= static_cast<int>(profiles_.size()))
310 return profiles_[index];
354 if (!profiles_.empty() || !browsers_.empty() || !clients_.empty())
358 profiles_.resize(num_clients_);
379 profiles_[index] = MakeProfile(
461 if (profiles_.empty()) {
    [all...]
sync_test.h 377 std::vector<Profile*> profiles_; member in class:SyncTest
  /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

Completed in 507 milliseconds