HomeSort by relevance Sort by last modified time
    Searched refs:AutofillProfile (Results 1 - 25 of 111) 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/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 24 class AutofillProfile;
67 scoped_ptr<AutofillProfile> billing_profile);
103 scoped_ptr<AutofillProfile> billing_profile);
120 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/
test_personal_data_manager.h 23 void AddTestingProfile(AutofillProfile* profile);
29 virtual const std::vector<AutofillProfile*>& GetProfiles() const OVERRIDE;
33 const AutofillProfile& imported_profile) OVERRIDE;
44 const AutofillProfile& imported_profile() { return imported_profile_; }
48 std::vector<AutofillProfile*> profiles_;
50 AutofillProfile imported_profile_;
autofill_test_utils.h 18 class AutofillProfile;
46 AutofillProfile GetFullProfile();
49 AutofillProfile GetFullProfile2();
52 AutofillProfile GetVerifiedProfile();
55 AutofillProfile GetVerifiedProfile2();
72 void SetProfileInfo(AutofillProfile* profile,
79 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);
85 int Compare(const AutofillProfile& profile) const
    [all...]
autofill_profile_unittest.cc 23 base::string16 GetLabel(AutofillProfile* profile) {
24 std::vector<AutofillProfile*> profiles;
27 AutofillProfile::CreateDifferentiatingLabels(profiles, &labels);
37 AutofillProfile profile0(base::GenerateGUID(), "https://www.example.com/");
44 AutofillProfile profile00(base::GenerateGUID(), "https://www.example.com/");
52 AutofillProfile profile1(base::GenerateGUID(), "https://www.example.com/");
60 AutofillProfile profile1a(base::GenerateGUID(), "https://www.example.com/");
68 AutofillProfile profile2(base::GenerateGUID(), "https://www.example.com/");
77 AutofillProfile profile3(base::GenerateGUID(), "https://www.example.com/");
85 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
test_personal_data_manager.cc 17 void TestPersonalDataManager::AddTestingProfile(AutofillProfile* profile) {
29 const std::vector<AutofillProfile*>& TestPersonalDataManager::GetProfiles()
40 const AutofillProfile& imported_profile) {
personal_data_manager.h 36 void SetProfiles(int, std::vector<autofill::AutofillProfile>*);
88 const AutofillProfile& imported_profile);
96 void AddProfile(const AutofillProfile& profile);
99 void UpdateProfile(const AutofillProfile& profile);
107 AutofillProfile* GetProfileByGUID(const std::string& guid);
132 virtual const std::vector<AutofillProfile*>& GetProfiles() const;
133 virtual const std::vector<AutofillProfile*>& web_profiles() const;
174 static bool IsValidLearnableProfile(const AutofillProfile& profile,
182 const AutofillProfile& new_profile,
183 const std::vector<AutofillProfile*>& existing_profiles
    [all...]
  /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...]
autofill_model_associator.h 23 class AutofillProfile;
99 AutofillProfile* merge_into,
106 // autofillprofile2 data type. If so we need to sync up autofillprofile
114 AutofillProfile* FindCorrespondingNodeFromWebDB(
116 const std::vector<AutofillProfile*>& all_profiles_from_db);
128 std::vector<AutofillProfile*>* profiles);
141 const std::vector<AutofillProfile*>& all_profiles_from_db,
143 std::vector<AutofillProfile*>* updated_profiles);
151 const std::vector<AutofillProfile*>& all_profiles_from_db);
163 // Helper to insert an AutofillProfile into the WebDatabase (e.g. in respons
    [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_;
  /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;

Completed in 204 milliseconds

1 2 3 4 5