HomeSort by relevance Sort by last modified time
    Searched refs:field_type (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium/chrome/browser/autofill/
autofill_type_unittest.cc 13 EXPECT_EQ(NO_SERVER_DATA, none.field_type());
19 EXPECT_EQ(UNKNOWN_TYPE, unknown.field_type());
25 EXPECT_EQ(NAME_FIRST, first.field_type());
31 EXPECT_EQ(PHONE_HOME_NUMBER, phone.field_type());
37 EXPECT_EQ(COMPANY_NAME, last.field_type());
43 EXPECT_EQ(UNKNOWN_TYPE, boundary.field_type());
49 EXPECT_EQ(UNKNOWN_TYPE, beyond.field_type());
55 EXPECT_EQ(UNKNOWN_TYPE, between.field_type());
autofill_metrics.cc 32 // Translates |field_type| to the corresponding logical grouping for metrics,
35 // Clients must ensure that |field_type| is one of the types Chrome supports
36 // natively, e.g. |field_type| must not be a billng address.
37 int GetFieldTypeGroupMetric(const AutofillFieldType field_type,
43 switch (AutofillType(field_type).group()) {
57 switch (field_type) {
95 switch (field_type) {
144 // factors in the |field_type|. Logs a sample of |metric|, which should be in
149 const AutofillFieldType field_type,
162 GetFieldTypeGroupMetric(field_type, metric, num_possible_metrics)
    [all...]
autofill_type.h 56 explicit AutofillType(AutofillFieldType field_type);
60 AutofillFieldType field_type() const;
64 // Maps |field_type| to a field type that can be directly stored in a profile
67 static AutofillFieldType GetEquivalentFieldType(AutofillFieldType field_type);
70 static std::string FieldTypeToString(AutofillFieldType field_type);
autofill_type.cc 141 AutofillType::AutofillType(AutofillFieldType field_type) {
142 if ((field_type < NO_SERVER_DATA || field_type >= MAX_VALID_FIELD_TYPE) ||
143 (field_type >= 15 && field_type <= 19) ||
144 (field_type >= 25 && field_type <= 29) ||
145 (field_type >= 44 && field_type <= 50))
148 field_type_ = field_type;
161 AutofillFieldType AutofillType::field_type() const { function in class:AutofillType
    [all...]
autofill_metrics.h 98 AutofillFieldType field_type,
101 AutofillFieldType field_type,
107 AutofillFieldType field_type,
autofill_xml_parser.cc 78 AutofillFieldType field_type = UNKNOWN_TYPE; local
84 field_type = static_cast<AutofillFieldType>(value);
85 if (field_type < 0 || field_type > MAX_VALID_FIELD_TYPE) {
86 field_type = NO_SERVER_DATA;
91 field_types_->push_back(field_type);
form_structure.cc 116 if (autofill_type.field_type() != UNKNOWN_TYPE)
260 if (autofill_type.field_type() != UNKNOWN_TYPE)
388 AutofillFieldType field_type = UNKNOWN_TYPE; local
390 field_type = *collapsed_field_types.begin();
400 field_type, experiment_id);
403 field_type, experiment_id);
406 field_type, experiment_id);
411 field_type, experiment_id);
414 field_type, experiment_id);
417 field_type, experiment_id)
    [all...]
autofill_merge_unittest.cc 176 string16 field_type = UTF8ToUTF16(line.substr(0, separator_pos)); local
179 webkit_glue::FormField field(field_type,
180 field_type,
personal_data_manager.cc 223 AutofillFieldType field_type = field->type();
224 FieldTypeGroup group(AutofillType(field_type).group());
230 if (types_seen.count(field_type) &&
231 field_type != PHONE_HOME_NUMBER &&
232 field_type != PHONE_FAX_NUMBER) {
237 types_seen.insert(field_type);
245 DCHECK_EQ(CREDIT_CARD_EXP_MONTH, field_type);
248 if (field_type == CREDIT_CARD_NUMBER) {
252 local_imported_credit_card->SetInfo(field_type, value);
259 if (AutofillType(field_type).subgroup() =
    [all...]
autofill_manager.cc 547 AutofillFieldType field_type = autofill_field->type(); local
550 AutofillType(field_type).group());
551 FillFormField(profile, field_type, profile_guid.second, &(*iter));
554 AutofillType(field_type).group());
555 FillCreditCardFormField(credit_card, field_type, &(*iter));
591 AutofillFieldType field_type = form_structure->field(k)->type(); local
592 FieldTypeGroup field_group_type = AutofillType(field_type).group();
600 FillFormField(profile, field_type, profile_guid.second,
603 FillFormField(profile, field_type, 0, &result.fields[j]);
607 FillCreditCardFormField(credit_card, field_type, &result.fields[j])
    [all...]
autofill_ie_toolbar_import_win.cc 88 AutofillFieldType field_type; member in struct:__anon2470::__anon2471
205 profile_reg_values[i].field_type;
autofill_profile.cc 29 AutofillFieldType field_type) {
30 if (field_type == NAME_FIRST || field_type == NAME_MIDDLE ||
31 field_type == NAME_LAST)
34 return AutofillType::GetEquivalentFieldType(field_type);
form_field.cc 249 field_type_map->insert(make_pair(field->unique_name(), type.field_type()));
  /external/protobuf/src/google/protobuf/
extension_set.h 559 static inline void Set(int number, FieldType field_type,
570 static inline void Add(int number, FieldType field_type,
580 int number, FieldType field_type, TYPE value, ExtensionSet* set) { \
581 set->Set##METHOD(number, field_type, value, NULL); \
593 int number, FieldType field_type, bool is_packed, \
595 set->Add##METHOD(number, field_type, is_packed, value, NULL); \
621 static inline void Set(int number, FieldType field_type,
623 set->SetString(number, field_type, value, NULL);
625 static inline string* Mutable(int number, FieldType field_type,
627 return set->MutableString(number, field_type, NULL)
    [all...]
descriptor.h 480 static inline bool IsTypePackable(Type field_type);
    [all...]
  /external/oprofile/libregex/
demangle_java_symbol.cpp 22 * field_type:
29 * [field_type
31 * ( field_type* ) return_descriptor
33 * field_type | V
71 bool field_type(string & result, function in namespace:__anon9151
94 if (field_type(result, begin, end)) {
111 if (!field_type(result, begin, end))
133 if (!field_type(temp, begin, end))
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 259 def IsTypePackable(field_type):
263 field_type: a FieldDescriptor::Type value.
268 return field_type not in NON_PACKABLE_TYPES
type_checkers.py 56 def GetTypeChecker(cpp_type, field_type):
61 field_type: Protocol message field type (see descriptor.py).
68 field_type == _FieldDescriptor.TYPE_STRING):
  /external/protobuf/src/google/protobuf/compiler/java/
java_extension.cc 47 const char* TypeName(FieldDescriptor::Type field_type) {
48 switch (field_type) {
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.h 110 JavaType GetJavaType(FieldDescriptor::Type field_type);
javamicro_helpers.cc 258 JavaType GetJavaType(FieldDescriptor::Type field_type) {
259 switch (field_type) {
  /external/e2fsprogs/ext2ed/
init.c 212 int field_type; member in struct:type_table
233 char field_type=FIELD_TYPE_INT; local
242 field_type = p->field_type;
249 field_type = FIELD_TYPE_CHAR;
257 ptr->field_types [ptr->fields_num] = field_type;
  /external/mesa3d/src/glsl/
glsl_types.h 364 const glsl_type *field_type(const char *name) const;
  /external/opencv/
cvjni.h 231 bool is_NULL_field_JavaObj(JNIEnv* env, jobject java_obj, const char* field_name, const char* field_type) {
239 jfieldID fid = env->GetFieldID(clazz, field_name, field_type);
  /external/openssl/crypto/ec/
ec_asn1.c 344 int field_type; local
358 field_type = EC_GROUP_get_basis_type(group);
360 if (field_type == 0)
366 if ((char_two->type = OBJ_nid2obj(field_type)) == NULL)
372 if (field_type == NID_X9_62_tpBasis)
392 else if (field_type == NID_X9_62_ppBasis)
411 else /* field_type == NID_X9_62_onBasis */
    [all...]

Completed in 616 milliseconds

1 2