Home
last modified time | relevance | path

Searched refs:form_fields (Results 1 – 8 of 8) sorted by relevance

/external/chromium/chrome/browser/webdata/
Dweb_data_service_unittest.cc134 std::vector<webkit_glue::FormField>* form_fields) { in AppendFormField() argument
135 form_fields->push_back( in AppendFormField()
170 std::vector<webkit_glue::FormField> form_fields; in TEST_F() local
171 AppendFormField(name1_, value1_, &form_fields); in TEST_F()
172 AppendFormField(name2_, value2_, &form_fields); in TEST_F()
173 wds_->AddFormFields(form_fields); in TEST_F()
196 std::vector<webkit_glue::FormField> form_fields; in TEST_F() local
197 AppendFormField(name1_, value1_, &form_fields); in TEST_F()
198 wds_->AddFormFields(form_fields); in TEST_F()
227 std::vector<webkit_glue::FormField> form_fields; in TEST_F() local
[all …]
Dweb_data_service.cc926 const std::vector<FormField>& form_fields = request->GetArgument(); in AddFormElementsImpl() local
929 if (!db_->GetAutofillTable()->AddFormFieldValues(form_fields, &changes)) { in AddFormElementsImpl()
/external/chromium/testing/gmock/scripts/
Dupload.py681 form_fields = [("filename", filename),
688 form_fields.append(("file_too_large", "1"))
690 form_fields.append(("user", options.email))
691 ctype, body = EncodeMultipartFormData(form_fields,
1193 form_fields = [("filename", patch[0])]
1195 form_fields.append(("content_upload", "1"))
1197 ctype, body = EncodeMultipartFormData(form_fields, files)
1298 form_fields = [("subject", message)]
1300 form_fields.append(("base", base))
1302 form_fields.append(("issue", str(options.issue)))
[all …]
/external/chromium/testing/gtest/scripts/
Dupload.py681 form_fields = [("filename", filename),
688 form_fields.append(("file_too_large", "1"))
690 form_fields.append(("user", options.email))
691 ctype, body = EncodeMultipartFormData(form_fields,
1193 form_fields = [("filename", patch[0])]
1195 form_fields.append(("content_upload", "1"))
1197 ctype, body = EncodeMultipartFormData(form_fields, files)
1298 form_fields = [("subject", message)]
1300 form_fields.append(("base", base))
1302 form_fields.append(("issue", str(options.issue)))
[all …]
/external/regex-re2/lib/codereview/
Dcodereview.py331 form_fields = [
340 form_fields.append(("issue", self.name))
356 form_fields.append(("separate_patches", "1"))
363 form_fields.append(("subject", "diff -r " + vcs.base_rev + " " + getremote(ui, repo, {}).path))
366 form_fields.append(("subject", self.Subject()))
367 ctype, body = EncodeMultipartFormData(form_fields, uploaded_diff_file)
2265 form_fields = GetForm("/" + issue + "/edit")
2267 form_fields['subject'] = subject
2269 form_fields['description'] = desc
2271 form_fields['reviewers'] = reviewers
[all …]
/external/chromium/chrome/browser/autofill/
Dform_field.cc313 } form_fields[] = { in CheckECML() local
361 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(form_fields); ++i) { in CheckECML()
362 if (base::strncasecmp(name.c_str(), form_fields[i].name_, in CheckECML()
363 form_fields[i].length_) == 0) { in CheckECML()
Dautofill_manager.cc868 std::vector<AutofillFieldType> form_fields; local
869 form_fields.reserve(form->field_count());
876 form_fields.push_back((*iter)->type());
879 AutofillProfile::CreateInferredLabels(&matched_profiles, &form_fields,
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
DFormManagerAndroid.cpp474 ScopedVector<FormField> form_fields; in HTMLFormElementToFormData() local
502 form_fields.push_back(field); in HTMLFormElementToFormData()
511 if (form_fields.empty()) in HTMLFormElementToFormData()
538 …for (size_t i = 0, field_idx = 0; i < control_elements.size() && field_idx < form_fields.size(); +… in HTMLFormElementToFormData()
548 if (form_fields[field_idx]->label.empty()) in HTMLFormElementToFormData()
549 form_fields[field_idx]->label = InferLabelForElement(*control_element); in HTMLFormElementToFormData()
555 …for (ScopedVector<FormField>::const_iterator iter = form_fields.begin(); iter != form_fields.end()… in HTMLFormElementToFormData()