OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FormGroup
(Results
1 - 25
of
37
) sorted by null
1
2
/external/chromium/chrome/browser/autofill/
form_group.h
18
class
FormGroup
{
20
virtual ~
FormGroup
() {}
28
// Returns a set of AutofillFieldTypes for which this
FormGroup
has non-empty
36
// Used to populate this
FormGroup
object with data.
39
// Returns the label for this
FormGroup
item. This should be overridden for
44
// data in this
FormGroup
.
45
virtual bool operator!=(const
FormGroup
& form_group) const;
47
// Returns true if the data in this
FormGroup
is a subset of the data in
49
bool IsSubsetOf(const
FormGroup
& form_group) const;
53
bool IntersectionOfTypesHasEqualValues(const
FormGroup
& form_group) const
[
all
...]
select_control_handler.h
12
class
FormGroup
;
24
void FillSelectControl(const
FormGroup
& form_group,
form_group.cc
11
const string16
FormGroup
::Label() const { return string16(); }
13
bool
FormGroup
::operator!=(const
FormGroup
& form_group) const {
28
bool
FormGroup
::IsSubsetOf(const
FormGroup
& form_group) const {
42
bool
FormGroup
::IntersectionOfTypesHasEqualValues(
43
const
FormGroup
& form_group) const {
65
void
FormGroup
::MergeWith(const
FormGroup
& form_group) {
79
void
FormGroup
::OverwriteWith(const FormGroup& form_group)
[
all
...]
home_phone_number.h
11
class
FormGroup
;
contact_info.h
17
class NameInfo : public
FormGroup
{
25
//
FormGroup
:
97
class EmailInfo : public
FormGroup
{
105
//
FormGroup
:
116
class CompanyInfo : public
FormGroup
{
124
//
FormGroup
:
autofill_profile.h
28
// implements the
FormGroup
interface so that owners of this object can request
35
AutofillProfile : public
FormGroup
{
46
//
FormGroup
:
134
typedef std::vector<const
FormGroup
*> FormGroupList;
158
const
FormGroup
* FormGroupForType(AutofillFieldType type) const;
159
FormGroup
* MutableFormGroupForType(AutofillFieldType type);
address.h
18
class Address : public
FormGroup
{
26
//
FormGroup
:
phone_number.h
17
class PhoneNumber : public
FormGroup
{
25
//
FormGroup
implementation:
select_control_handler.cc
159
bool FillCountrySelectControl(const
FormGroup
& form_group,
200
void FillSelectControl(const
FormGroup
& form_group,
credit_card.h
18
class CreditCard : public
FormGroup
{
27
//
FormGroup
implementation:
autofill_profile.cc
192
:
FormGroup
() {
233
const
FormGroup
* form_group = FormGroupForType(return_type);
241
FormGroup
* form_group = MutableFormGroupForType(type);
617
const
FormGroup
* AutofillProfile::FormGroupForType(
622
FormGroup
* AutofillProfile::MutableFormGroupForType(AutofillFieldType type) {
623
FormGroup
* form_group = NULL;
contact_info.cc
31
NameInfo::NameInfo(const NameInfo& info) :
FormGroup
() {
330
EmailInfo::EmailInfo(const EmailInfo& info) :
FormGroup
() {
372
CompanyInfo::CompanyInfo(const CompanyInfo& info) :
FormGroup
() {
autofill_common_test.cc
29
FormGroup
* profile, AutofillFieldType type, const char* value) {
/external/chromium_org/components/autofill/core/browser/
form_group.h
18
class
FormGroup
{
20
virtual ~
FormGroup
() {}
30
// Returns a set of server field types for which this
FormGroup
has non-empty
39
// Sets this
FormGroup
object's data for |type| to |value|, without
50
// Used to populate this
FormGroup
object with data. Canonicalizes the data
61
// Returns a set of server field types for which this
FormGroup
can store
form_group.cc
11
void
FormGroup
::GetMatchingTypes(const base::string16& text,
28
void
FormGroup
::GetNonEmptyTypes(const std::string& app_locale,
39
base::string16
FormGroup
::GetInfo(const AutofillType& type,
44
bool
FormGroup
::SetInfo(const AutofillType& type,
contact_info.h
18
class NameInfo : public
FormGroup
{
26
//
FormGroup
:
32
//
FormGroup
:
57
class EmailInfo : public
FormGroup
{
65
//
FormGroup
:
71
//
FormGroup
:
78
class CompanyInfo : public
FormGroup
{
86
//
FormGroup
:
92
//
FormGroup
:
autofill_data_model.h
20
class AutofillDataModel : public
FormGroup
{
autofill_profile.h
28
// implements the
FormGroup
interface so that owners of this object can request
42
//
FormGroup
:
136
typedef std::vector<const
FormGroup
*> FormGroupList;
138
//
FormGroup
:
179
const
FormGroup
* FormGroupForType(const AutofillType& type) const;
180
FormGroup
* MutableFormGroupForType(const AutofillType& type);
contact_info.cc
21
NameInfo::NameInfo(const NameInfo& info) :
FormGroup
() {
143
EmailInfo::EmailInfo(const EmailInfo& info) :
FormGroup
() {
175
CompanyInfo::CompanyInfo(const CompanyInfo& info) :
FormGroup
() {
address.h
18
class Address : public
FormGroup
{
26
//
FormGroup
:
41
//
FormGroup
:
phone_number.h
21
class PhoneNumber : public
FormGroup
{
31
//
FormGroup
implementation:
80
//
FormGroup
:
address.cc
23
Address::Address(const Address& address) :
FormGroup
() {
190
FormGroup
::GetMatchingTypes(text, app_locale, matching_types);
autofill_profile.cc
123
base::string16 GetFormGroupInfo(const
FormGroup
& form_group,
276
const
FormGroup
* form_group = FormGroupForType(AutofillType(type));
285
FormGroup
* form_group = MutableFormGroupForType(AutofillType(type));
292
const
FormGroup
* form_group = FormGroupForType(type);
302
FormGroup
* form_group = MutableFormGroupForType(type);
776
const
FormGroup
* AutofillProfile::FormGroupForType(
781
FormGroup
* AutofillProfile::MutableFormGroupForType(const AutofillType& type) {
/external/chromium/chrome/browser/sync/glue/
autofill_profile_model_associator.h
150
static bool MergeField(
FormGroup
* f,
/external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.h
35
class
FormGroup
;
Completed in 890 milliseconds
1
2