OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ServerFieldTypeSet
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/components/autofill/core/browser/
form_group.h
28
ServerFieldTypeSet
* matching_types) const;
33
ServerFieldTypeSet
* non_empty_types) const;
63
virtual void GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const = 0;
form_group.cc
13
ServerFieldTypeSet
* matching_types) const {
19
ServerFieldTypeSet
types;
21
for (
ServerFieldTypeSet
::const_iterator type = types.begin();
29
ServerFieldTypeSet
* non_empty_types) const {
30
ServerFieldTypeSet
types;
32
for (
ServerFieldTypeSet
::const_iterator type = types.begin();
autofill_field.h
38
const
ServerFieldTypeSet
& possible_types() const { return possible_types_; }
45
void set_possible_types(const
ServerFieldTypeSet
& possible_types) {
114
ServerFieldTypeSet
possible_types_;
contact_info.h
43
ServerFieldTypeSet
* supported_types) const OVERRIDE;
78
ServerFieldTypeSet
* supported_types) const OVERRIDE;
99
ServerFieldTypeSet
* supported_types) const OVERRIDE;
address.h
38
ServerFieldTypeSet
* matching_types) const OVERRIDE;
43
ServerFieldTypeSet
* supported_types) const OVERRIDE;
phone_number.h
35
ServerFieldTypeSet
* matching_types) const OVERRIDE;
82
ServerFieldTypeSet
* supported_types) const OVERRIDE;
credit_card.h
52
ServerFieldTypeSet
* matching_types) const OVERRIDE;
120
ServerFieldTypeSet
* supported_types) const OVERRIDE;
form_structure.h
56
bool EncodeUploadRequest(const
ServerFieldTypeSet
& available_field_types,
64
bool EncodeFieldAssignments(const
ServerFieldTypeSet
& available_field_types,
autofill_data_model_unittest.cc
28
ServerFieldTypeSet
* supported_types) const OVERRIDE {}
autofill_profile.h
46
ServerFieldTypeSet
* matching_types) const OVERRIDE;
157
ServerFieldTypeSet
* supported_types) const OVERRIDE;
autofill_download_manager.h
83
const
ServerFieldTypeSet
& available_field_types);
field_types.h
232
typedef std::set<ServerFieldType>
ServerFieldTypeSet
;
form_structure.cc
62
std::string EncodeFieldTypes(const
ServerFieldTypeSet
& available_field_types) {
69
for (
ServerFieldTypeSet
::const_iterator field_type =
105
ServerFieldTypeSet
types = field.possible_types();
107
for (
ServerFieldTypeSet
::iterator field_type = types.begin();
135
ServerFieldTypeSet
types = field.possible_types();
136
for (
ServerFieldTypeSet
::iterator field_type = types.begin();
421
const
ServerFieldTypeSet
& available_field_types,
431
for (
ServerFieldTypeSet
::const_iterator type =
467
const
ServerFieldTypeSet
& available_field_types,
765
const
ServerFieldTypeSet
& field_types = field->possible_types()
[
all
...]
form_structure_unittest.cc
[
all
...]
autofill_profile.cc
187
void CollapseCompoundFieldTypes(
ServerFieldTypeSet
* type_set) {
188
ServerFieldTypeSet
collapsed_set;
189
for (
ServerFieldTypeSet
::iterator it = type_set->begin();
299
ServerFieldTypeSet
* matching_types) const {
444
ServerFieldTypeSet
types;
545
ServerFieldTypeSet
types;
548
for (
ServerFieldTypeSet
::const_iterator it = types.begin(); it != types.end();
641
ServerFieldTypeSet
field_types;
654
for (
ServerFieldTypeSet
::const_iterator iter = field_types.begin();
776
ServerFieldTypeSet
* supported_types) const
[
all
...]
autofill_download_manager_unittest.cc
214
*(form_structures[0]), true,
ServerFieldTypeSet
()));
217
*(form_structures[1]), false,
ServerFieldTypeSet
()));
282
*(form_structures[0]), true,
ServerFieldTypeSet
()));
284
*(form_structures[1]), false,
ServerFieldTypeSet
()));
325
*(form_structures[0]), true,
ServerFieldTypeSet
()));
337
*(form_structures[0]), true,
ServerFieldTypeSet
()));
contact_info.cc
171
void NameInfo::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
308
void EmailInfo::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
340
void CompanyInfo::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
address.cc
192
ServerFieldTypeSet
* matching_types) const {
201
void Address::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
phone_number.cc
56
void PhoneNumber::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
152
ServerFieldTypeSet
* matching_types) const {
address_unittest.cc
128
ServerFieldTypeSet
matching_types;
140
ServerFieldTypeSet
matching_types;
149
ServerFieldTypeSet
matching_types;
credit_card.cc
399
ServerFieldTypeSet
* matching_types) const {
567
ServerFieldTypeSet
types;
585
void CreditCard::GetSupportedTypes(
ServerFieldTypeSet
* supported_types) const {
autofill_manager.cc
139
ServerFieldTypeSet
matching_types;
833
ServerFieldTypeSet
non_empty_types;
857
ServerFieldTypeSet
types;
869
ServerFieldTypeSet
available_field_types;
[
all
...]
personal_data_manager.h
123
void GetNonEmptyTypes(
ServerFieldTypeSet
* non_empty_types);
autofill_download_manager.cc
115
const
ServerFieldTypeSet
& available_field_types) {
phone_number_unittest.cc
26
ServerFieldTypeSet
matching_types;
Completed in 764 milliseconds
1
2