OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhoneField
(Results
1 - 8
of
8
) 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);
/external/chromium_org/components/autofill/core/browser/
phone_field.h
24
class
PhoneField
: public FormField {
26
virtual ~
PhoneField
();
79
PhoneField
();
88
DISALLOW_COPY_AND_ASSIGN(
PhoneField
);
phone_field.cc
30
PhoneField
::~
PhoneField
() {}
43
const
PhoneField
::Parser
PhoneField
::kPhoneFieldGrammars[] = {
121
FormField*
PhoneField
::Parse(AutofillScanner* scanner) {
177
scoped_ptr<
PhoneField
> phone_field(new
PhoneField
);
199
bool
PhoneField
::ClassifyField(ServerFieldTypeMap* map) const {
244
PhoneField
::
PhoneField
() {
[
all
...]
phone_field_unittest.cc
22
scoped_ptr<
PhoneField
> field_;
26
static
PhoneField
* Parse(AutofillScanner* scanner) {
27
return static_cast<
PhoneField
*>(
PhoneField
::Parse(scanner));
37
ASSERT_EQ(static_cast<
PhoneField
*>(NULL), field_.get());
44
ASSERT_EQ(static_cast<
PhoneField
*>(NULL), field_.get());
57
ASSERT_NE(static_cast<
PhoneField
*>(NULL), field_.get());
78
ASSERT_NE(static_cast<
PhoneField
*>(NULL), field_.get());
119
ASSERT_NE(static_cast<
PhoneField
*>(NULL), field_.get());
155
ASSERT_NE(static_cast<
PhoneField
*>(NULL), field_.get())
[
all
...]
form_field.cc
55
ParseFormFieldsPass(
PhoneField
::Parse, &remaining_fields, map);
Completed in 110 milliseconds