OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AutofillEntry
(Results
1 - 10
of
10
) sorted by null
/external/chromium/chrome/browser/webdata/
autofill_entry.cc
43
AutofillEntry
::
AutofillEntry
(const AutofillKey& key,
49
AutofillEntry
::~
AutofillEntry
() {}
51
bool
AutofillEntry
::operator==(const
AutofillEntry
& entry) const {
68
bool
AutofillEntry
::operator<(const
AutofillEntry
& entry) const {
autofill_entry.h
32
class
AutofillEntry
{
34
AutofillEntry
(const AutofillKey& key,
36
~
AutofillEntry
();
41
bool operator==(const
AutofillEntry
& entry) const;
42
bool operator<(const
AutofillEntry
& entry) const;
autofill_table.h
16
class
AutofillEntry
;
188
virtual bool GetAllAutofillEntries(std::vector<
AutofillEntry
>* entries);
198
virtual bool UpdateAutofillEntries(const std::vector<
AutofillEntry
>& entries);
309
// Insert a single
AutofillEntry
into the autofill/autofill_dates tables.
310
bool InsertAutofillEntry(const
AutofillEntry
& entry);
autofill_table_unittest.cc
55
bool CompareAutofillEntries(const
AutofillEntry
& a, const
AutofillEntry
& b) {
90
typedef std::set<
AutofillEntry
,
91
bool (*)(const
AutofillEntry
&, const
AutofillEntry
&)> AutofillEntrySet;
92
typedef std::set<
AutofillEntry
, bool (*)(const
AutofillEntry
&,
93
const
AutofillEntry
&)>::iterator AutofillEntrySetIterator;
111
static
AutofillEntry
MakeAutofillEntry(const char* name,
120
return
AutofillEntry
(
[
all
...]
autofill_table.cc
705
bool AutofillTable::GetAllAutofillEntries(std::vector<
AutofillEntry
>* entries) {
737
AutofillEntry
entry(*current_key_ptr, *timestamps_ptr);
752
AutofillEntry
entry(*current_key_ptr, *timestamps_ptr);
785
const std::vector<
AutofillEntry
>& entries) {
816
bool AutofillTable::InsertAutofillEntry(const
AutofillEntry
& entry) {
[
all
...]
/external/chromium/chrome/browser/sync/glue/
autofill_change_processor.h
23
class
AutofillEntry
;
63
static void WriteAutofillEntry(const
AutofillEntry
& entry,
93
std::vector<
AutofillEntry
>* new_entries,
autofill_model_associator.h
127
bool LoadAutofillData(std::vector<
AutofillEntry
>* entries,
135
const std::vector<
AutofillEntry
>& all_entries_from_db,
137
std::vector<
AutofillEntry
>* new_entries);
157
// Helper to insert an
AutofillEntry
into the WebDatabase (e.g. in response
autofill_model_associator.cc
36
std::vector<
AutofillEntry
> new_entries;
66
const std::vector<
AutofillEntry
>& all_entries_from_db,
68
std::vector<
AutofillEntry
>* new_entries) {
70
const std::vector<
AutofillEntry
>& entries = all_entries_from_db;
71
for (std::vector<
AutofillEntry
>::const_iterator ix = entries.begin();
89
AutofillEntry
new_entry(ix->key(), timestamps);
120
std::vector<
AutofillEntry
>* entries,
144
std::vector<
AutofillEntry
> entries;
340
bundle->new_entries.push_back(
AutofillEntry
(key, timestamps));
autofill_change_processor.cc
122
WriteAutofillEntry(
AutofillEntry
(change->key(), timestamps),
157
WriteAutofillEntry(
AutofillEntry
(change->key(), timestamps),
261
std::vector<
AutofillEntry
> new_entries;
317
std::vector<
AutofillEntry
>* new_entries,
328
AutofillEntry
new_entry(k, timestamps);
432
const
AutofillEntry
& entry,
/external/chromium/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc
100
bool(std::vector<
AutofillEntry
>* entries)); // NOLINT
106
bool(const std::vector<
AutofillEntry
>&)); // NOLINT
139
syncable::ModelType GetModelType<
AutofillEntry
>() {
341
bool AddAutofillSyncNode(const
AutofillEntry
& entry) {
371
bool GetAutofillEntriesFromSyncDB(std::vector<
AutofillEntry
>* entries,
395
entries->push_back(
AutofillEntry
(key, timestamps));
439
static
AutofillEntry
MakeAutofillEntry(const char* name,
448
return
AutofillEntry
(
452
static
AutofillEntry
MakeAutofillEntry(const char* name,
458
friend class AddAutofillTask<
AutofillEntry
>;
[
all
...]
Completed in 326 milliseconds