OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GUIDPair
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/autofill/
autofill_manager.h
129
typedef std::pair<std::string, size_t>
GUIDPair
;
145
virtual int GUIDToID(const
GUIDPair
& guid);
146
virtual const
GUIDPair
IDToGUID(int id);
150
int PackGUIDs(const
GUIDPair
& cc_guid, const
GUIDPair
& profile_guid);
151
void UnpackGUIDs(int id,
GUIDPair
* cc_guid,
GUIDPair
* profile_guid);
274
std::map<
GUIDPair
, int> guid_id_map_;
275
std::map<int,
GUIDPair
> id_guid_map_;
autofill_manager.cc
499
GUIDPair
cc_guid;
500
GUIDPair
profile_guid;
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)));
[
all
...]
autofill_manager_unittest.cc
437
return PackGUIDs(IDToGUID(credit_card_id),
GUIDPair
(std::string(), 0));
440
virtual int GUIDToID(const
GUIDPair
& guid) OVERRIDE {
450
virtual const
GUIDPair
IDToGUID(int id) OVERRIDE {
453
return
GUIDPair
(std::string(), 0);
455
return
GUIDPair
(base::StringPrintf("00000000-0000-0000-0000-%012d", id), 0);
473
typedef AutofillManager::
GUIDPair
GUIDPair
;
[
all
...]
Completed in 570 milliseconds