HomeSort by relevance Sort by last modified time
    Searched refs:PhoneField (Results 1 - 4 of 4) sorted by null

  /external/chromium/chrome/browser/autofill/
phone_field.cc 29 PhoneField::Parser PhoneField::phone_field_grammars_[] = {
32 { PhoneField::REGEX_COUNTRY, PhoneField::FIELD_COUNTRY_CODE, 0 },
33 { PhoneField::REGEX_AREA, PhoneField::FIELD_AREA_CODE, 0 },
34 { PhoneField::REGEX_PHONE, PhoneField::FIELD_PHONE, 0 },
35 { PhoneField::REGEX_SEPARATOR, FIELD_NONE, 0 },
37 { PhoneField::REGEX_PHONE, PhoneField::FIELD_COUNTRY_CODE, 0 }
    [all...]
phone_field.h 22 class PhoneField : public FormField {
24 virtual ~PhoneField();
26 static PhoneField* Parse(std::vector<AutofillField*>::const_iterator* iter,
28 static PhoneField* ParseECML(
34 PhoneField();
85 static bool ParseInternal(PhoneField* field,
119 DISALLOW_COPY_AND_ASSIGN(PhoneField);
phone_field_unittest.cc 21 scoped_ptr<PhoneField> field_;
32 field_.reset(PhoneField::Parse(&iter_, false));
33 ASSERT_EQ(static_cast<PhoneField*>(NULL), field_.get());
40 field_.reset(PhoneField::Parse(&iter_, false));
41 ASSERT_EQ(static_cast<PhoneField*>(NULL), field_.get());
55 field_.reset(PhoneField::Parse(&iter_, false));
56 ASSERT_NE(static_cast<PhoneField*>(NULL), field_.get());
74 field_.reset(PhoneField::Parse(&iter_, true));
75 ASSERT_NE(static_cast<PhoneField*>(NULL), field_.get());
101 field_.reset(PhoneField::Parse(&iter_, false))
    [all...]
form_field.cc 155 field = PhoneField::Parse(iter, is_ecml);

Completed in 67 milliseconds