HomeSort by relevance Sort by last modified time
    Searched full:fields (Results 151 - 175 of 10872) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/components/autofill/core/browser/
credit_card_field.cc 30 // Credit card fields can appear in many different orders.
31 // We loop until no more credit card related fields are found, see |break| at
33 for (int fields = 0; !scanner->IsEnd(); ++fields) {
34 // Ignore gift card fields.
40 // name (not cardholder name) field before or after credit card fields. So
46 if (fields == 0 || credit_card_field->expiration_month_) {
57 // and ExpediaBilling.html in our test suite), recognize separate fields
101 // First try to parse split month/year expiration fields.
119 // We allow <select> fields, because they're used e.g. on qvc.com
    [all...]
autofill_test_utils.cc 62 form->fields.push_back(field);
64 form->fields.push_back(field);
66 form->fields.push_back(field);
68 form->fields.push_back(field);
70 form->fields.push_back(field);
72 form->fields.push_back(field);
74 form->fields.push_back(field);
76 form->fields.push_back(field);
78 form->fields.push_back(field);
80 form->fields.push_back(field)
    [all...]
form_field.cc 37 void FormField::ParseFormFields(const std::vector<AutofillField*>& fields,
39 // Set up a working copy of the fields to be processed.
40 std::vector<const AutofillField*> remaining_fields(fields.size());
41 std::copy(fields.begin(), fields.end(), remaining_fields.begin());
43 // Ignore checkable fields as they interfere with parsers assuming context.
103 // Several fields are optional.
150 std::vector<const AutofillField*>* fields,
152 // Store unmatched fields for further processing by the caller.
155 AutofillScanner scanner(*fields);
    [all...]
autofill_metrics_unittest.cc 213 for (size_t i = 0; i < empty_form.fields.size(); ++i) {
214 empty_form.fields[i].value = base::string16();
341 form.fields.push_back(field);
348 form.fields.push_back(field);
354 form.fields.push_back(field);
360 form.fields.push_back(field);
366 form.fields.push_back(field);
372 form.fields.push_back(field);
551 form.fields.push_back(field);
604 form.fields.push_back(field)
    [all...]
autofill_profile.h 81 // textual contents of the fields.
84 // fields.
103 // Profile. Or, for multi-valued fields append the new values.
123 // resulting label fields are drawn from |suggested_fields|, except excluding
124 // |excluded_field|. Otherwise, the label fields are drawn from a default set,
127 // least |minimal_fields_shown| fields, if possible.
158 // fields in |label_fields|. Uses as many fields as possible if there are not
159 // enough non-empty fields.
166 // |labels|. These labels include enough fields to differentiate among th
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailcap.py 76 key, fields = parseline(line)
77 if not (key and fields):
86 caps[key].append(fields)
88 caps[key] = [fields]
95 and the rest of the fields produce key-value pairs in the dict.
97 fields = []
101 fields.append(field)
103 if len(fields) < 2:
105 key, view, rest = fields[0], fields[1], fields[2:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailcap.py 76 key, fields = parseline(line)
77 if not (key and fields):
86 caps[key].append(fields)
88 caps[key] = [fields]
95 and the rest of the fields produce key-value pairs in the dict.
97 fields = []
101 fields.append(field)
103 if len(fields) < 2:
105 key, view, rest = fields[0], fields[1], fields[2:
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
FieldListParser.java 28 * Parser for lists of fields in a class file.
32 private final StdFieldList fields; field in class:FieldListParser
45 fields = new StdFieldList(getCount());
55 return fields;
83 fields.set(n, field);
  /external/chromium/chrome/browser/autofill/
phone_field.h 49 // Separator of the area code in the case fields are formatted without
50 // any text indicating what fields are (e.g. field1 "(" field2 ")" field3 "-"
61 // fields.
82 // after parsed fields.
97 // Parsed fields.
  /external/chromium/chrome/browser/chromeos/login/
account_creation_view.cc 53 for (size_t i = 0; i < form.fields.size(); i++) {
54 std::string name = UTF16ToASCII(form.fields[i].name);
56 user_name = UTF16ToASCII(form.fields[i].value);
58 domain = UTF16ToASCII(form.fields[i].value);
62 // We don't have password here because all password fields were
  /external/chromium/chrome/browser/sync/engine/
process_commit_response_command.h 67 // Update the SERVER_ fields to reflect the server state after committing.
75 // are returned as fields in the CommitResponse_EntryResponse. This method
76 // stores the fields back in the client-visible (i.e. not the SERVER_* fields)
77 // fields of the entry. This should only be done if the item did not change
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
MessageLiteOrBuilder.java 41 * Get an instance of the type with no fields set. Because no fields are set,
42 * all getters for singular fields will return default values and repeated
43 * fields will appear empty.
53 * Returns true if all required fields in the message and all embedded
  /external/chromium_org/v8/tools/
csvparser.js 51 * Parses a line of CSV-encoded values. Returns an array of fields.
60 var fields = [];
67 fields.push(field.replace(doubleQuoteRe, '"'));
73 fields.push(field);
77 return fields;
  /external/v8/tools/
csvparser.js 51 * Parses a line of CSV-encoded values. Returns an array of fields.
60 var fields = [];
67 fields.push(field.replace(doubleQuoteRe, '"'));
73 fields.push(field);
77 return fields;
  /external/chromium_org/third_party/mesa/src/src/glsl/
glsl_types.cpp 63 memset(& fields, 0, sizeof(fields));
78 memset(& fields, 0, sizeof(fields));
81 glsl_type::glsl_type(const glsl_struct_field *fields, unsigned num_fields,
93 this->fields.structure = ralloc_array(this->mem_ctx,
96 this->fields.structure[i].type = fields[i].type;
97 this->fields.structure[i].name = ralloc_strdup(this->fields.structure
    [all...]
  /external/mesa3d/src/glsl/
glsl_types.cpp 63 memset(& fields, 0, sizeof(fields));
78 memset(& fields, 0, sizeof(fields));
81 glsl_type::glsl_type(const glsl_struct_field *fields, unsigned num_fields,
93 this->fields.structure = ralloc_array(this->mem_ctx,
96 this->fields.structure[i].type = fields[i].type;
97 this->fields.structure[i].name = ralloc_strdup(this->fields.structure
    [all...]
  /external/chromium/testing/gmock/src/
gmock-matchers.cc 68 // Joins a vector of strings as if they are fields of a tuple; returns
70 string JoinAsTuple(const Strings& fields) {
71 switch (fields.size()) {
75 return fields[0];
77 string result = "(" + fields[0];
78 for (size_t i = 1; i < fields.size(); i++) {
80 result += fields[i];
  /external/chromium_org/chrome/renderer/autofill/
form_autocomplete_browsertest.cc 24 // with the form fields.
41 ASSERT_EQ(2U, forms.a.fields.size());
43 FormFieldData& form_field = forms.a.fields[0];
47 form_field = forms.a.fields[1];
70 // Tests that fields with autocomplete off are not submitted.
90 ASSERT_EQ(1U, forms.a.fields.size());
92 FormFieldData& form_field = forms.a.fields[0];
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
test_util_lite.h 55 // repeated fields of the messsage (which should already have been
56 // initialized with Set*Fields()). Set*Fields() itself only tests
65 // Check that all fields have the values that they should have after
66 // Set*Fields() is called.
76 // Modify*Fields().
86 // Check that all fields have their default values.
  /external/oprofile/
opev.py 35 fields = line.split(None, 1)
36 while (fields):
37 first = fields[0].split(':', 1)
41 line = fields[1]
45 dict['description'] = fields[1]
46 fields = None;
49 fields = line.split(None, 1)
  /external/protobuf/src/google/protobuf/
test_util_lite.h 55 // repeated fields of the messsage (which should already have been
56 // initialized with Set*Fields()). Set*Fields() itself only tests
65 // Check that all fields have the values that they should have after
66 // Set*Fields() is called.
76 // Modify*Fields().
86 // Check that all fields have their default values.
  /packages/apps/Settings/src/com/android/settings/net/
ChartDataLoader.java 42 private static final String KEY_FIELDS = "fields";
51 public static Bundle buildArgs(NetworkTemplate template, AppItem app, int fields) {
55 args.putInt(KEY_FIELDS, fields);
75 final int fields = mArgs.getInt(KEY_FIELDS); local
78 return loadInBackground(template, app, fields);
86 private ChartData loadInBackground(NetworkTemplate template, AppItem app, int fields)
89 data.network = mSession.getHistoryForNetwork(template, fields);
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 42 * A class which represents an arbitrary set of fields of some message type.
70 private Map<FieldDescriptorType, Object> fields; field in class:FieldSet
74 // Use a TreeMap because fields need to be in canonical order when
79 fields = new TreeMap<FieldDescriptorType, Object>();
87 this.fields = Collections.emptyMap();
109 fields.entrySet()) {
112 fields.put(entry.getKey(), Collections.unmodifiableList(value));
115 fields = Collections.unmodifiableMap(fields);
122 fields.clear()
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
udbgutil.cpp 18 4. Each enum type has three things in this section: a #define, a count_, and an array of Fields.
288 const Field *fields = _udbg_enumFields(type); local
289 if(fields == NULL) {
292 return fields[field].str + fields[field].prefix;
302 const Field *fields = _udbg_enumFields(type); local
303 if(fields == NULL) {
306 return fields[field].num;
315 const Field *fields = _udbg_enumFields(type); local
317 if(!strcmp(value, fields[field].str + fields[field].prefix))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 71 // Add the columns to the report based on the reported data fields
72 for (Iterator fields = dataForm.getReportedData().getFields(); fields.hasNext();) {
73 FormField field = (FormField)fields.next();
82 for (Iterator fields = item.getFields(); fields.hasNext();) {
83 field = (FormField) fields.next();
222 private List<Field> fields = new ArrayList<Field>(); field in class:ReportedData.Row
224 public Row(List<Field> fields) {
225 this.fields = fields
    [all...]

Completed in 1346 milliseconds

1 2 3 4 5 67 8 91011>>