/external/chromium_org/components/autofill/core/browser/ |
autofill_type_unittest.cc | 14 EXPECT_EQ(NO_SERVER_DATA, none.GetStorableType()); 19 EXPECT_EQ(UNKNOWN_TYPE, unknown.GetStorableType()); 24 EXPECT_EQ(NAME_FIRST, first.GetStorableType()); 29 EXPECT_EQ(PHONE_HOME_NUMBER, phone.GetStorableType()); 34 EXPECT_EQ(ADDRESS_HOME_LINE1, billing_address.GetStorableType()); 39 EXPECT_EQ(NAME_SUFFIX, last.GetStorableType()); 44 EXPECT_EQ(UNKNOWN_TYPE, boundary.GetStorableType()); 49 EXPECT_EQ(UNKNOWN_TYPE, beyond.GetStorableType()); 54 EXPECT_EQ(UNKNOWN_TYPE, between.GetStorableType()); 61 EXPECT_EQ(UNKNOWN_TYPE, unknown.GetStorableType()); [all...] |
autofill_type.h | 38 ServerFieldType GetStorableType() const;
|
form_group.cc | 41 return GetRawInfo(type.GetStorableType()); 47 SetRawInfo(type.GetStorableType(), value);
|
autofill_field_unittest.cc | 39 EXPECT_EQ(UNKNOWN_TYPE, field.Type().GetStorableType()); 43 EXPECT_EQ(NAME_FIRST, field.Type().GetStorableType()); 48 EXPECT_EQ(ADDRESS_HOME_LINE1, field.Type().GetStorableType()); 53 EXPECT_EQ(NAME_FIRST, field.Type().GetStorableType()); 96 ASSERT_EQ(UNKNOWN_TYPE, field.Type().GetStorableType());
|
address.cc | 136 ServerFieldType storable_type = type.GetStorableType(); 156 ServerFieldType storable_type = type.GetStorableType();
|
phone_number.cc | 102 ServerFieldType storable_type = type.GetStorableType(); 138 SetRawInfo(type.GetStorableType(), value); 191 ServerFieldType storable_type = type.GetStorableType();
|
autofill_field.cc | 244 ServerFieldType storable_type = type.GetStorableType(); 397 if (type.GetStorableType() == PHONE_HOME_NUMBER) 403 else if (type.GetStorableType() == ADDRESS_HOME_STREET_ADDRESS)
|
form_structure.cc | 579 if (heuristic_type != (*field)->Type().GetStorableType()) 796 collapsed_field_types.insert(AutofillType(*it).GetStorableType()); 805 AutofillType(field->heuristic_type()).GetStorableType(); 807 AutofillType(field->server_type()).GetStorableType(); 808 ServerFieldType predicted_type = field->Type().GetStorableType(); [all...] |
autofill_type.cc | 198 ServerFieldType AutofillType::GetStorableType() const {
|
personal_data_manager.cc | 260 ServerFieldType server_field_type = field_type.GetStorableType(); 600 if (type.GetStorableType() == PHONE_HOME_NUMBER && 628 type.GetStorableType(), 1, labels); 660 if (type.GetStorableType() == CREDIT_CARD_NUMBER) [all...] |
credit_card.cc | 389 ServerFieldType storable_type = type.GetStorableType(); 399 ServerFieldType storable_type = type.GetStorableType();
|
autofill_metrics.cc | 106 switch (AutofillType(field_type).GetStorableType()) {
|
autofill_profile.cc | 33 // Like |AutofillType::GetStorableType()|, but also returns |NAME_FULL| for 36 ServerFieldType storable_type = AutofillType(type).GetStorableType(); 127 form_group.GetRawInfo(type.GetStorableType()) :
|
autofill_manager.cc | [all...] |
/external/chromium_org/chrome/browser/ui/autofill/ |
data_model_wrapper.cc | 134 if (type.GetStorableType() == CREDIT_CARD_NAME) 145 if (type.GetStorableType() == PHONE_HOME_WHOLE_NUMBER) { 147 profile_->GetRawMultiInfo(type.GetStorableType(), &values); 184 if (type.GetStorableType() == EMAIL_ADDRESS) 202 if (type.GetStorableType() == CREDIT_CARD_EXP_MONTH) 232 if (type.GetStorableType() == EMAIL_ADDRESS) 240 if (type.GetStorableType() == PHONE_HOME_WHOLE_NUMBER) 269 if (type.GetStorableType() == EMAIL_ADDRESS) 272 if (type.GetStorableType() == CREDIT_CARD_EXP_MONTH) 280 if (type.GetStorableType() == PHONE_HOME_WHOLE_NUMBER [all...] |
autofill_dialog_common.cc | 25 ServerFieldType server_type = field_type.GetStorableType(); 40 return input_type.GetStorableType() == server_type && 52 if (field_type.GetStorableType() == CREDIT_CARD_NAME && 211 if (AutofillType(type).GetStorableType() == ADDRESS_HOME_COUNTRY) {
|
autofill_dialog_controller_unittest.cc | [all...] |
autofill_dialog_controller_browsertest.cc | 627 AutofillType(inputs[i].type).GetStorableType() == ADDRESS_HOME_COUNTRY ? 644 if (AutofillType(inputs[i].type).GetStorableType() == ADDRESS_HOME_COUNTRY) [all...] |
autofill_dialog_controller_impl.cc | 154 field.Type().GetStorableType()); 172 AutofillType(type).GetStorableType(), iter->second); 212 profile->SetRawInfo(AutofillType(type).GetStorableType(), trimmed); 290 AutofillType(requested_fields[i].type).GetStorableType(); [all...] |
/external/chromium_org/chrome/browser/ui/android/autofill/ |
autofill_dialog_controller_android.cc | 106 if (field->Type().GetStorableType() == EMAIL_ADDRESS) 421 if (common::IsCreditCardType(type.GetStorableType()))
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
autofill_helper.cc | 289 profiles.back().SetRawInfo(type.GetStorableType(), value);
|
/external/chromium_org/components/autofill/content/browser/wallet/ |
full_wallet.cc | 158 switch (type.GetStorableType()) {
|
wallet_address.cc | 290 switch (type.GetStorableType()) {
|
wallet_items.cc | 352 switch (type.GetStorableType()) {
|