/external/chromium_org/chrome/browser/ui/autofill/ |
mock_new_credit_card_bubble_controller.h | 13 class AutofillProfile; 23 scoped_ptr<AutofillProfile> billing_profile); 27 const AutofillProfile* billing_profile() const { 35 scoped_ptr<AutofillProfile> billing_profile_;
|
autofill_dialog_i18n_input.h | 18 class AutofillProfile; 44 bool AddressHasCompleteAndVerifiedData(const AutofillProfile& profile,
|
mock_new_credit_card_bubble_controller.cc | 20 scoped_ptr<AutofillProfile> billing_profile) {
|
new_credit_card_bubble_controller.h | 24 class AutofillProfile; 67 scoped_ptr<AutofillProfile> billing_profile); 103 scoped_ptr<AutofillProfile> billing_profile); 120 scoped_ptr<AutofillProfile> billing_profile_;
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_test_utils.h | 14 class AutofillProfile; 42 AutofillProfile GetFullProfile(); 45 AutofillProfile GetFullProfile2(); 48 AutofillProfile GetVerifiedProfile(); 51 AutofillProfile GetVerifiedProfile2(); 68 void SetProfileInfo(AutofillProfile* profile, 75 void SetProfileInfoWithGuid(AutofillProfile* profile,
|
autofill_profile.h | 27 // A collection of FormGroups stored in a profile. AutofillProfile also 31 class AutofillProfile : public AutofillDataModel { 33 AutofillProfile(const std::string& guid, const std::string& origin); 36 AutofillProfile(); 37 AutofillProfile(const AutofillProfile& profile); 38 virtual ~AutofillProfile(); 40 AutofillProfile& operator=(const AutofillProfile& profile); 89 int Compare(const AutofillProfile& profile) const [all...] |
test_personal_data_manager.h | 23 void AddTestingProfile(AutofillProfile* profile); 29 virtual const std::vector<AutofillProfile*>& GetProfiles() const OVERRIDE; 30 virtual const std::vector<AutofillProfile*>& web_profiles() const OVERRIDE; 34 const AutofillProfile& imported_profile) OVERRIDE; 49 const AutofillProfile& imported_profile() { return imported_profile_; } 53 std::vector<AutofillProfile*> profiles_; 55 AutofillProfile imported_profile_;
|
test_personal_data_manager.cc | 16 void TestPersonalDataManager::AddTestingProfile(AutofillProfile* profile) { 26 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles() 31 const std::vector<AutofillProfile*>& TestPersonalDataManager::web_profiles() 42 const AutofillProfile& imported_profile) {
|
phone_number.h | 18 class AutofillProfile; 23 explicit PhoneNumber(AutofillProfile* profile); 29 void set_profile(AutofillProfile* profile) { profile_ = profile; } 65 bool ParseNumber(const AutofillProfile& profile, 91 const AutofillProfile* profile_; // WEAK
|
autofill_profile_unittest.cc | 28 base::string16 GetLabel(AutofillProfile* profile) { 29 std::vector<AutofillProfile*> profiles; 32 AutofillProfile::CreateDifferentiatingLabels(profiles, "en-US", &labels); 89 AutofillProfile profile0(base::GenerateGUID(), "https://www.example.com/"); 96 AutofillProfile profile00(base::GenerateGUID(), "https://www.example.com/"); 104 AutofillProfile profile1(base::GenerateGUID(), "https://www.example.com/"); 112 AutofillProfile profile1a(base::GenerateGUID(), "https://www.example.com/"); 120 AutofillProfile profile2(base::GenerateGUID(), "https://www.example.com/"); 129 AutofillProfile profile3(base::GenerateGUID(), "https://www.example.com/"); 137 AutofillProfile profile4(base::GenerateGUID(), "https://www.example.com/") [all...] |
address_i18n.h | 22 class AutofillProfile; 34 CreateAddressDataFromAutofillProfile(const AutofillProfile& profile,
|
personal_data_manager.h | 38 void SetProfiles(int, std::vector<autofill::AutofillProfile>*); 91 const AutofillProfile& imported_profile); 99 void AddProfile(const AutofillProfile& profile); 102 void UpdateProfile(const AutofillProfile& profile); 110 AutofillProfile* GetProfileByGUID(const std::string& guid); 135 virtual const std::vector<AutofillProfile*>& GetProfiles() const; 136 virtual const std::vector<AutofillProfile*>& web_profiles() const; 149 const base::Callback<bool(const AutofillProfile&)>& filter, 179 static bool IsValidLearnableProfile(const AutofillProfile& profile, 187 const AutofillProfile& new_profile [all...] |
autofill_profile.cc | 126 const base::string16 MultiString(const AutofillProfile& p, 252 AutofillProfile::AutofillProfile(const std::string& guid, 260 AutofillProfile::AutofillProfile() 267 AutofillProfile::AutofillProfile(const AutofillProfile& profile) 272 AutofillProfile::~AutofillProfile() { [all...] |
personal_data_manager.cc | 92 bool IsMinimumAddress(const AutofillProfile& profile, 236 scoped_ptr<AutofillProfile> imported_profile(new AutofillProfile); 376 void PersonalDataManager::AddProfile(const AutofillProfile& profile) { 384 if (FindByGUID<AutofillProfile>(web_profiles_, profile.guid())) 401 void PersonalDataManager::UpdateProfile(const AutofillProfile& profile) { 405 AutofillProfile* existing_profile = GetProfileByGUID(profile.guid()); 428 AutofillProfile* PersonalDataManager::GetProfileByGUID( 430 const std::vector<AutofillProfile*>& profiles = GetProfiles(); 431 std::vector<AutofillProfile*>::const_iterator iter [all...] |
autofill_test_utils.cc | 90 AutofillProfile GetFullProfile() { 91 AutofillProfile profile(base::GenerateGUID(), "http://www.example.com/"); 107 AutofillProfile GetFullProfile2() { 108 AutofillProfile profile(base::GenerateGUID(), "https://www.example.com/"); 124 AutofillProfile GetVerifiedProfile() { 125 AutofillProfile profile(GetFullProfile()); 130 AutofillProfile GetVerifiedProfile2() { 131 AutofillProfile profile(GetFullProfile2()); 162 void SetProfileInfo(AutofillProfile* profile, 182 void SetProfileInfoWithGuid(AutofillProfile* profile [all...] |
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
PersonalDataManagerTest.java | 10 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile; 38 AutofillProfile profile = new AutofillProfile( 47 AutofillProfile profile2 = new AutofillProfile( 61 AutofillProfile storedProfile = mHelper.getProfile(profileOneGUID); 72 AutofillProfile profile = new AutofillProfile( 82 AutofillProfile storedProfile = mHelper.getProfile(profileOneGUID); 91 AutofillProfile storedProfile2 = mHelper.getProfile(profileOneGUID) [all...] |
AutofillTestHelper.java | 8 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile; 27 AutofillProfile getProfile(final String guid) throws ExecutionException { 28 return ThreadUtils.runOnUiThreadBlocking(new Callable<AutofillProfile>() { 30 public AutofillProfile call() { 36 List<AutofillProfile> getProfiles() throws ExecutionException { 37 return ThreadUtils.runOnUiThreadBlocking(new Callable<List<AutofillProfile> >() { 39 public List<AutofillProfile> call() { 54 String setProfile(final AutofillProfile profile) throws InterruptedException,
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_change.h | 14 class AutofillProfile; 18 // Autofill++ types such as AutofillProfile and CreditCard simply use an int. 63 const AutofillProfile* profile); 66 const AutofillProfile* profile() const { return profile_; } 71 const AutofillProfile* profile_;
|
autofill_profile_syncable_service.h | 38 class AutofillProfile; 106 virtual bool LoadAutofillData(std::vector<AutofillProfile*>* profiles); 121 static syncer::SyncData CreateData(const AutofillProfile& profile); 133 typedef std::map<std::string, AutofillProfile*> GUIDToProfileMap; 139 AutofillProfile* profile, 143 static void WriteAutofillProfile(const AutofillProfile& profile, 148 void CreateGUIDToProfileMap(const std::vector<AutofillProfile*>& profiles, 170 AutofillProfile* autofill_profile); 175 AutofillProfile* autofill_profile); 182 static bool MergeProfile(const AutofillProfile& merge_from [all...] |
autofill_webdata.h | 27 class AutofillProfile; 63 virtual void AddAutofillProfile(const AutofillProfile& profile) = 0; 66 virtual void UpdateAutofillProfile(const AutofillProfile& profile) = 0;
|
autofill_table.h | 26 class AutofillProfile; 200 virtual bool AddAutofillProfile(const AutofillProfile& profile); 203 virtual bool UpdateAutofillProfile(const AutofillProfile& profile); 210 bool GetAutofillProfile(const std::string& guid, AutofillProfile** profile); 213 virtual bool GetAutofillProfiles(std::vector<AutofillProfile*>* profiles); 254 ScopedVector<AutofillProfile>* profiles); 314 FRIEND_TEST_ALL_PREFIXES(AutofillTableTest, AutofillProfile);
|
autofill_profile_syncable_service_unittest.cc | 47 MOCK_METHOD1(LoadAutofillData, bool(std::vector<AutofillProfile*>*)); 132 scoped_ptr<AutofillProfile> ConstructCompleteProfile() { 133 scoped_ptr<AutofillProfile> profile( 134 new AutofillProfile(kGuid1, kHttpsOrigin)); 238 const std::vector<AutofillProfile*>& profiles_from_web_db, 275 std::vector<AutofillProfile*> profiles_from_web_db; 286 new AutofillProfile(guid_present1, origin_present1)); 291 new AutofillProfile(guid_present2, origin_present2)); 297 AutofillProfile profile1(guid_synced1, origin_synced1); 300 AutofillProfile profile2(guid_synced2, origin_synced2) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/ |
autofill_helper.h | 20 class AutofillProfile; 68 std::vector<autofill::AutofillProfile>* autofill_profiles); 76 void AddProfile(int profile, const autofill::AutofillProfile& autofill_profile); 91 const std::vector<autofill::AutofillProfile*>& GetAllProfiles( 113 autofill::AutofillProfile CreateAutofillProfile(ProfileType type);
|
autofill_helper.cc | 30 using autofill::AutofillProfile; 133 AutofillProfile CreateAutofillProfile(ProfileType type) { 134 AutofillProfile profile; 281 void SetProfiles(int profile, std::vector<AutofillProfile>* autofill_profiles) { 303 void AddProfile(int profile, const AutofillProfile& autofill_profile) { 304 const std::vector<AutofillProfile*>& all_profiles = GetAllProfiles(profile); 305 std::vector<AutofillProfile> autofill_profiles; 313 const std::vector<AutofillProfile*>& all_profiles = GetAllProfiles(profile); 314 std::vector<AutofillProfile> autofill_profiles; 326 const std::vector<AutofillProfile*>& all_profiles = GetAllProfiles(profile) [all...] |
/external/chromium_org/chrome/browser/sync/test/integration/performance/ |
autofill_sync_perf_test.cc | 18 using autofill::AutofillProfile; 58 const AutofillProfile NextAutofillProfile(); 88 const std::vector<AutofillProfile*>& all_profiles = 90 std::vector<AutofillProfile> autofill_profiles; 101 const std::vector<AutofillProfile*>& all_profiles = 103 std::vector<AutofillProfile> autofill_profiles; 113 std::vector<AutofillProfile> empty; 125 const AutofillProfile AutofillSyncPerfTest::NextAutofillProfile() { 126 AutofillProfile profile;
|