/external/chromium_org/components/autofill/core/common/ |
form_field_data_predictions.cc | 16 heuristic_type(other.heuristic_type), 28 heuristic_type == predictions.heuristic_type &&
|
form_field_data_predictions.h | 23 std::string heuristic_type; member in struct:autofill::FormFieldDataPredictions
|
/external/chromium/chrome/browser/autofill/ |
form_structure_unittest.cc | 267 EXPECT_EQ(NAME_FIRST, form_structure->field(0)->heuristic_type()); 269 EXPECT_EQ(NAME_LAST, form_structure->field(1)->heuristic_type()); 271 EXPECT_EQ(EMAIL_ADDRESS, form_structure->field(2)->heuristic_type()); 274 form_structure->field(3)->heuristic_type()); 276 EXPECT_EQ(PHONE_FAX_WHOLE_NUMBER, form_structure->field(4)->heuristic_type()); 278 EXPECT_EQ(ADDRESS_HOME_LINE1, form_structure->field(5)->heuristic_type()); 280 EXPECT_EQ(ADDRESS_HOME_CITY, form_structure->field(6)->heuristic_type()); 282 EXPECT_EQ(ADDRESS_HOME_ZIP, form_structure->field(7)->heuristic_type()); 284 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(8)->heuristic_type()); 369 EXPECT_EQ(NAME_FIRST, form_structure->field(0)->heuristic_type()); [all...] |
autofill_field.h | 25 AutofillFieldType heuristic_type() const { return heuristic_type_; } function in class:AutofillField
|
form_structure.cc | 252 AutofillFieldType heuristic_type = (*field)->type(); local 254 if (heuristic_type != (*field)->type()) 345 field->set_heuristic_type(cached_field->second->heuristic_type()); 392 AutofillFieldType heuristic_type = field->heuristic_type(); local 398 if (heuristic_type == UNKNOWN_TYPE) { 401 } else if (field_types.count(heuristic_type)) { 442 if (heuristic_type == UNKNOWN_TYPE) { 446 } else if (field_types.count(heuristic_type)) {
|
autofill_field_unittest.cc | 16 ASSERT_EQ(UNKNOWN_TYPE, field.heuristic_type());
|
autofill_metrics_unittest.cc | 355 AutofillFieldType heuristic_type; member in struct:__anon4293 423 heuristic_types.push_back(failure_cases[i].heuristic_type); [all...] |
/external/chromium_org/components/autofill/core/browser/ |
form_structure_unittest.cc | 366 EXPECT_EQ(NAME_FIRST, form_structure->field(0)->heuristic_type()); 368 EXPECT_EQ(NAME_LAST, form_structure->field(1)->heuristic_type()); 370 EXPECT_EQ(EMAIL_ADDRESS, form_structure->field(2)->heuristic_type()); 373 form_structure->field(3)->heuristic_type()); 375 EXPECT_EQ(ADDRESS_HOME_LINE1, form_structure->field(4)->heuristic_type()); 377 EXPECT_EQ(ADDRESS_HOME_CITY, form_structure->field(5)->heuristic_type()); 379 EXPECT_EQ(ADDRESS_HOME_ZIP, form_structure->field(6)->heuristic_type()); 381 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(7)->heuristic_type()); 419 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(0)->heuristic_type()); 420 EXPECT_EQ(UNKNOWN_TYPE, form_structure->field(1)->heuristic_type()); [all...] |
autofill_field.h | 34 ServerFieldType heuristic_type() const { return heuristic_type_; } function in class:autofill::AutofillField
|
form_structure.cc | 574 ServerFieldType heuristic_type = (*field)->heuristic_type(); local 575 if (heuristic_type != UNKNOWN_TYPE) 579 if (heuristic_type != (*field)->Type().GetStorableType()) 630 annotated_field.heuristic_type = 631 AutofillType((*field)->heuristic_type()).ToString(); 728 field->set_heuristic_type(cached_field->second->heuristic_type()); 804 ServerFieldType heuristic_type = local 805 AutofillType(field->heuristic_type()).GetStorableType(); 812 if (heuristic_type == UNKNOWN_TYPE) [all...] |
autofill_field_unittest.cc | 36 ASSERT_EQ(UNKNOWN_TYPE, field.heuristic_type());
|
autofill_metrics_unittest.cc | 484 ServerFieldType heuristic_type; member in struct:autofill::__anon10093 552 heuristic_types.push_back(failure_cases[i].heuristic_type); [all...] |
autofill_manager_unittest.cc | [all...] |
/external/chromium_org/components/autofill/content/common/ |
autofill_messages.h | 61 IPC_STRUCT_TRAITS_MEMBER(heuristic_type)
|
/external/chromium_org/components/autofill/content/renderer/ |
form_cache.cc | 293 UTF8ToUTF16(form.fields[i].heuristic_type),
|