Lines Matching refs:GUIDPair
499 GUIDPair cc_guid; in OnFillAutofillFormData()
500 GUIDPair profile_guid; in OnFillAutofillFormData()
861 unique_ids->push_back(PackGUIDs(GUIDPair(std::string(), 0),
862 GUIDPair(profile->guid(), i)));
900 unique_ids->push_back(PackGUIDs(GUIDPair(std::string(), 0),
901 GUIDPair(profile->guid(), j)));
949 unique_ids->push_back(PackGUIDs(GUIDPair(credit_card->guid(), 0),
950 GUIDPair(std::string(), 0)));
1060 int AutofillManager::GUIDToID(const GUIDPair& guid) {
1066 std::map<GUIDPair, int>::const_iterator iter = guid_id_map_.find(guid);
1076 const AutofillManager::GUIDPair AutofillManager::IDToGUID(int id) {
1078 return GUIDPair(std::string(), 0);
1080 std::map<int, GUIDPair>::const_iterator iter = id_guid_map_.find(id);
1083 return GUIDPair(std::string(), 0);
1092 int AutofillManager::PackGUIDs(const GUIDPair& cc_guid,
1093 const GUIDPair& profile_guid) {
1107 GUIDPair* cc_guid,
1108 GUIDPair* profile_guid) {