/external/chromium/chrome/browser/autofill/ |
autofill_xml_parser_unittest.cc | 9 #include "chrome/browser/autofill/field_types.h" 25 std::vector<AutofillFieldType> field_types; local 30 AutofillQueryXmlParser parse_handler(&field_types, &upload_required, 36 ASSERT_EQ(4U, field_types.size()); 37 EXPECT_EQ(NO_SERVER_DATA, field_types[0]); 38 EXPECT_EQ(UNKNOWN_TYPE, field_types[1]); 39 EXPECT_EQ(NAME_FIRST, field_types[2]); 40 EXPECT_EQ(EMPTY_TYPE, field_types[3]); 46 std::vector<AutofillFieldType> field_types; local 55 new AutofillQueryXmlParser(&field_types, &upload_required 98 std::vector<AutofillFieldType> field_types; local 158 std::vector<AutofillFieldType> field_types; local [all...] |
form_structure.cc | 14 #include "chrome/browser/autofill/field_types.h" 211 std::vector<AutofillFieldType> field_types; local 213 AutofillQueryXmlParser parse_handler(&field_types, upload_required, 226 std::vector<AutofillFieldType>::iterator current_type = field_types.begin(); 246 if (current_type == field_types.end()) 364 const FieldTypeSet& field_types = field->possible_types(); local 365 DCHECK(!field_types.empty()); 366 if (field_types.count(EMPTY_TYPE) || field_types.count(UNKNOWN_TYPE)) 372 for (FieldTypeSet::const_iterator it = field_types.begin() [all...] |
autofill_xml_parser.h | 13 #include "chrome/browser/autofill/field_types.h" 64 // unknown, other types are documented in chrome/browser/autofill/field_types.h. 67 AutofillQueryXmlParser(std::vector<AutofillFieldType>* field_types,
|
autofill_xml_parser.cc | 31 std::vector<AutofillFieldType>* field_types, 34 : field_types_(field_types),
|
autofill_metrics_unittest.cc | 774 std::vector<AutofillFieldType> field_types; local 777 field_types.push_back(NAME_FULL); 780 field_types.push_back(EMAIL_ADDRESS); 783 field_types.push_back(PHONE_HOME_NUMBER); 788 form_structure->SetFieldTypes(field_types, field_types); [all...] |
autofill_profile.cc | 468 FieldTypeSet field_types; local 469 profile.GetAvailableFieldTypes(&field_types); 473 CollapseCompoundFieldTypes(&field_types); 475 for (FieldTypeSet::const_iterator iter = field_types.begin(); 476 iter != field_types.end(); ++iter) {
|
autofill_manager.cc | 685 FieldTypeSet field_types; local 686 personal_data_->GetPossibleFieldTypes(field->value, &field_types); 688 DCHECK(!field_types.empty()); 689 submitted_form->set_possible_types(i, field_types); [all...] |
/external/qemu/ |
thunk.c | 81 se->field_types = types; 94 type_ptr = se->field_types; 216 const argtype *field_types; local 225 field_types = se->field_types; 231 field_types = thunk_convert(d + dst_offsets[i], 233 field_types, to_host);
|
thunk.h | 51 const argtype *field_types; member in struct:__anon25708
|
/external/chromium_org/chrome/browser/extensions/activity_log/ |
activity_database.cc | 206 const char* field_types[], 215 field_types[i]); 229 field_types[i]);
|
activity_database.h | 132 // database. The field_types should specify the types of the corresponding 134 // field_types as content_fields, since the two arrays should correspond. 138 const char* field_types[],
|
/external/chromium_org/components/autofill/core/browser/ |
form_structure.cc | 22 #include "components/autofill/core/browser/field_types.h" 766 const ServerFieldTypeSet& field_types = field->possible_types(); local 767 DCHECK(!field_types.empty()); 768 if (field_types.count(EMPTY_TYPE) || field_types.count(UNKNOWN_TYPE)) 786 for (ServerFieldTypeSet::const_iterator it = field_types.begin(); 787 it != field_types.end(); 815 } else if (field_types.count(heuristic_type)) { 826 } else if (field_types.count(server_type)) { 837 } else if (field_types.count(predicted_type)) [all...] |
autofill_profile.cc | 501 ServerFieldTypeSet field_types; local 502 profile.GetNonEmptyTypes(app_locale, &field_types); 506 CollapseCompoundFieldTypes(&field_types); 512 field_types.erase(ADDRESS_HOME_STREET_ADDRESS); 514 for (ServerFieldTypeSet::const_iterator iter = field_types.begin(); 515 iter != field_types.end(); ++iter) {
|
autofill_metrics_unittest.cc | 1035 std::vector<ServerFieldType> field_types; local [all...] |
autofill_manager.cc | [all...] |
/external/e2fsprogs/ext2ed/ |
general_com.c | 398 switch (current_type->field_types [i]) { 411 current_type->field_types [i]); 669 switch (current_type->field_types[i]) {
|
ext2ed.h | 96 unsigned char field_types [MAX_FIELDS]; member in struct:struct_descriptor
|
init.c | 257 ptr->field_types [ptr->fields_num] = field_type;
|
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_dialog_controller_impl.cc | 1874 std::vector<ServerFieldType> field_types; local 1883 field_types, local [all...] |