OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPresentButInvalid
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/components/autofill/core/browser/
autofill_profile_unittest.cc
780
TEST(AutofillProfileTest,
IsPresentButInvalid
) {
782
EXPECT_FALSE(profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE));
783
EXPECT_FALSE(profile.
IsPresentButInvalid
(ADDRESS_HOME_ZIP));
784
EXPECT_FALSE(profile.
IsPresentButInvalid
(PHONE_HOME_WHOLE_NUMBER));
787
EXPECT_FALSE(profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE));
788
EXPECT_FALSE(profile.
IsPresentButInvalid
(ADDRESS_HOME_ZIP));
789
EXPECT_FALSE(profile.
IsPresentButInvalid
(PHONE_HOME_WHOLE_NUMBER));
792
EXPECT_TRUE(profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE));
795
EXPECT_FALSE(profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE));
798
EXPECT_TRUE(profile.
IsPresentButInvalid
(ADDRESS_HOME_ZIP))
[
all
...]
autofill_profile.h
76
bool
IsPresentButInvalid
(ServerFieldType type) const;
personal_data_manager.cc
697
if (profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE))
701
if (profile.
IsPresentButInvalid
(ADDRESS_HOME_ZIP))
[
all
...]
autofill_profile.cc
376
bool AutofillProfile::
IsPresentButInvalid
(ServerFieldType type) const {
/external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_impl.cc
306
return profile.
IsPresentButInvalid
(ADDRESS_HOME_STATE) ||
307
profile.
IsPresentButInvalid
(ADDRESS_HOME_ZIP) ||
308
profile.
IsPresentButInvalid
(PHONE_HOME_WHOLE_NUMBER);
[
all
...]
Completed in 36 milliseconds