HomeSort by relevance Sort by last modified time
    Searched refs:AutofillProfile (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/chromium_org/components/autofill/core/browser/android/
auxiliary_profiles_android.h 17 class AutofillProfile;
20 // This class is used to populate an AutofillProfile vector with
34 scoped_ptr<AutofillProfile> LoadContactsProfile();
38 void LoadAddress(AutofillProfile* profile);
40 void LoadName(AutofillProfile* profile);
42 void LoadEmailAddress(AutofillProfile* profile);
44 void LoadPhoneNumbers(AutofillProfile* profile);
auxiliary_profiles_android.cc 29 // Randomly generated guid. The Autofillprofile class requires a consistent
64 scoped_ptr<AutofillProfile> AuxiliaryProfilesAndroid::LoadContactsProfile() {
65 scoped_ptr<AutofillProfile> profile(
66 new AutofillProfile(kAndroidMeContactA, kAndroidContactsOrigin));
81 void AuxiliaryProfilesAndroid::LoadAddress(AutofillProfile* profile) {
100 void AuxiliaryProfilesAndroid::LoadName(AutofillProfile* profile) {
110 void AuxiliaryProfilesAndroid::LoadEmailAddress(AutofillProfile* profile) {
116 void AuxiliaryProfilesAndroid::LoadPhoneNumbers(AutofillProfile* profile) {
  /external/chromium_org/components/autofill/core/browser/
test_personal_data_manager.h 23 void AddTestingProfile(AutofillProfile* profile);
29 virtual const std::vector<AutofillProfile*>& GetProfiles() OVERRIDE;
30 virtual void SaveImportedProfile(const AutofillProfile& imported_profile)
33 const AutofillProfile& imported_profile() { return imported_profile_; }
37 std::vector<AutofillProfile*> profiles_;
39 AutofillProfile imported_profile_;
autofill_common_test.h 14 class AutofillProfile;
35 AutofillProfile GetFullProfile();
38 AutofillProfile GetFullProfile2();
41 AutofillProfile GetVerifiedProfile();
44 AutofillProfile GetVerifiedProfile2();
55 void SetProfileInfo(AutofillProfile* profile,
62 void SetProfileInfoWithGuid(AutofillProfile* profile,
test_personal_data_manager.cc 16 void TestPersonalDataManager::AddTestingProfile(AutofillProfile* profile) {
28 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles() {
38 const AutofillProfile& imported_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);
99 int Compare(const AutofillProfile& profile) const
    [all...]
personal_data_manager.h 38 void SetProfiles(int, std::vector<autofill::AutofillProfile>*);
83 virtual void SaveImportedProfile(const AutofillProfile& imported_profile);
89 void AddProfile(const AutofillProfile& profile);
92 void UpdateProfile(const AutofillProfile& profile);
100 AutofillProfile* GetProfileByGUID(const std::string& guid);
125 virtual const std::vector<AutofillProfile*>& GetProfiles();
126 virtual const std::vector<AutofillProfile*>& web_profiles() const;
167 static bool IsValidLearnableProfile(const AutofillProfile& profile,
174 const AutofillProfile& new_profile,
175 const std::vector<AutofillProfile*>& existing_profiles
    [all...]
autofill_profile_unittest.cc 24 bool UpdateProfileLabel(AutofillProfile *profile) {
25 std::vector<AutofillProfile*> profiles;
27 return AutofillProfile::AdjustInferredLabels(&profiles);
36 AutofillProfile profile0(base::GenerateGUID(), "https://www.example.com/");
44 AutofillProfile profile00(base::GenerateGUID(), "https://www.example.com/");
53 AutofillProfile profile1(base::GenerateGUID(), "https://www.example.com/");
62 AutofillProfile profile1a(base::GenerateGUID(), "https://www.example.com/");
71 AutofillProfile profile2(base::GenerateGUID(), "https://www.example.com/");
81 AutofillProfile profile3(base::GenerateGUID(), "https://www.example.com/");
90 AutofillProfile profile4(base::GenerateGUID(), "https://www.example.com/")
    [all...]
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_common_test.cc 78 AutofillProfile GetFullProfile() {
79 AutofillProfile profile(base::GenerateGUID(), "http://www.example.com/");
95 AutofillProfile GetFullProfile2() {
96 AutofillProfile profile(base::GenerateGUID(), "https://www.example.com/");
112 AutofillProfile GetVerifiedProfile() {
113 AutofillProfile profile(GetFullProfile());
118 AutofillProfile GetVerifiedProfile2() {
119 AutofillProfile profile(GetFullProfile2());
137 void SetProfileInfo(AutofillProfile* profile,
157 void SetProfileInfoWithGuid(AutofillProfile* profile
    [all...]
autofill_profile.cc 110 const base::string16 MultiString(const AutofillProfile& p,
224 AutofillProfile::AutofillProfile(const std::string& guid,
232 AutofillProfile::AutofillProfile()
239 AutofillProfile::AutofillProfile(const AutofillProfile& profile)
244 AutofillProfile::~AutofillProfile() {
    [all...]
  /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_;
mock_new_credit_card_bubble_controller.cc 20 scoped_ptr<AutofillProfile> billing_profile) {
new_credit_card_bubble_controller.h 20 class AutofillProfile;
63 scoped_ptr<AutofillProfile> billing_profile);
96 scoped_ptr<AutofillProfile> billing_profile);
107 scoped_ptr<AutofillProfile> billing_profile_;
  /external/chromium/chrome/browser/autofill/
autofill_profile.h 27 // A collection of FormGroups stored in a profile. AutofillProfile also
35 AutofillProfile : public FormGroup {
37 explicit AutofillProfile(const std::string& guid);
40 AutofillProfile();
41 AutofillProfile(const AutofillProfile& profile);
42 virtual ~AutofillProfile();
44 AutofillProfile& operator=(const AutofillProfile& profile);
67 // This guid is the primary identifier for |AutofillProfile| objects
    [all...]
personal_data_manager.h 99 void SetProfiles(std::vector<AutofillProfile>* profiles);
106 void AddProfile(const AutofillProfile& profile);
109 void UpdateProfile(const AutofillProfile& profile);
116 AutofillProfile* GetProfileByGUID(const std::string& guid);
146 const std::vector<AutofillProfile*>& profiles();
147 virtual const std::vector<AutofillProfile*>& web_profiles();
164 static bool IsValidLearnableProfile(const AutofillProfile& profile);
170 const AutofillProfile& profile,
171 const std::vector<AutofillProfile*>& existing_profiles,
172 std::vector<AutofillProfile>* merged_profiles)
    [all...]
autofill_profile_unittest.cc 19 bool UpdateProfileLabel(AutofillProfile *profile) {
20 std::vector<AutofillProfile*> profiles;
22 return AutofillProfile::AdjustInferredLabels(&profiles);
31 AutofillProfile profile0;
39 AutofillProfile profile00;
48 AutofillProfile profile1;
57 AutofillProfile profile2;
67 AutofillProfile profile3;
76 AutofillProfile profile4;
85 AutofillProfile profile5
    [all...]
autofill_profile.cc 105 const string16 MultiString(const AutofillProfile& p, AutofillFieldType type) {
179 AutofillProfile::AutofillProfile(const std::string& guid)
183 AutofillProfile::AutofillProfile()
191 AutofillProfile::AutofillProfile(const AutofillProfile& profile)
196 AutofillProfile::~AutofillProfile() {
    [all...]
autofill_common_test.h 9 class AutofillProfile;
30 void SetProfileInfo(AutofillProfile* profile,
37 void SetProfileInfoWithGuid(AutofillProfile* profile,
  /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_;
  /external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.h 32 class AutofillProfile;
102 std::vector<autofill::AutofillProfile*>* profiles);
117 static syncer::SyncData CreateData(const autofill::AutofillProfile& profile);
129 typedef std::map<std::string, autofill::AutofillProfile*> GUIDToProfileMap;
135 autofill::AutofillProfile* profile,
139 static void WriteAutofillProfile(const autofill::AutofillProfile& profile,
145 const std::vector<autofill::AutofillProfile*>& profiles,
167 autofill::AutofillProfile* autofill_profile);
172 autofill::AutofillProfile* autofill_profile);
180 static bool MergeProfile(const autofill::AutofillProfile& merge_from
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/
PersonalDataManagerTest.java 10 import org.chromium.chrome.browser.autofill.PersonalDataManager.AutofillProfile;
36 AutofillProfile profile = new AutofillProfile(
43 AutofillProfile profile2 = new AutofillProfile(
55 AutofillProfile storedProfile = mHelper.getProfile(profileOneGUID);
66 AutofillProfile profile = new AutofillProfile(
126 AutofillProfile profile1 = new AutofillProfile(
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
autofill_helper.h 20 class AutofillProfile;
65 std::vector<autofill::AutofillProfile>* autofill_profiles);
73 void AddProfile(int profile, const autofill::AutofillProfile& autofill_profile);
88 const std::vector<autofill::AutofillProfile*>& GetAllProfiles(
107 autofill::AutofillProfile CreateAutofillProfile(ProfileType type);
  /external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator.h 23 class AutofillProfile;
100 AutofillProfile* merge_into,
108 const std::vector<AutofillProfile*>& all_profiles_from_db,
110 std::vector<AutofillProfile*>* updated_profiles,
111 std::vector<AutofillProfile*>* new_profiles,
114 // Helper to insert an AutofillProfile into the WebDatabase (e.g. in response
121 // Helper to insert a sync node for the given AutofillProfile (e.g. in
127 const AutofillProfile& profile,
128 std::vector<AutofillProfile*>* new_profiles,
148 bool LoadAutofillData(std::vector<AutofillProfile*>* profiles)
    [all...]
  /external/chromium/chrome/browser/webdata/
autofill_change.h 11 class AutofillProfile;
15 // Autofill++ types such as AutofillProfile and CreditCard simply use an int.
58 const AutofillProfile* profile);
61 const AutofillProfile* profile() const { return profile_; }
66 const AutofillProfile* profile_;

Completed in 814 milliseconds

1 2 3 4 5