HomeSort by relevance Sort by last modified time
    Searched refs:input_element (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils.cc 87 WebInputElement* input_element = toWebInputElement(&control_element); local
88 if (!input_element || !input_element->isEnabled())
92 input_element->isPasswordField()) {
104 passwords.push_back(*input_element);
108 if (input_element->isTextField() && !input_element->isPasswordField()) {
109 latest_input_element = *input_element;
113 if (!input_element->value().isEmpty())
114 other_possible_usernames.push_back(input_element->value())
    [all...]
form_cache.cc 130 const WebInputElement input_element = local
132 if (IsCheckableElement(&input_element)) {
134 std::make_pair(input_element, input_element.isChecked()));
210 WebInputElement* input_element = toWebInputElement(&control_element); local
211 if (IsTextInput(input_element) || IsMonthInput(input_element)) {
212 input_element->setValue(base::string16(), true);
216 if (element == *input_element) {
217 int length = input_element->value().length()
232 WebInputElement input_element = control_element.to<WebInputElement>(); local
    [all...]
form_autofill_util.cc 88 const WebInputElement* input_element = toWebInputElement(&element); local
89 return IsAutofillableInputElement(input_element) ||
95 bool SatisfiesRequireAutocomplete(const WebInputElement& input_element) {
96 return input_element.autoComplete();
515 const WebInputElement* input_element = toWebInputElement(element); local
517 ((IsAutofillableInputElement(input_element) ||
545 WebInputElement* input_element = toWebInputElement(field); local
546 if (IsCheckableElement(input_element)) {
547 input_element->setChecked(data.is_checked, true);
550 if (IsTextInput(input_element) || IsMonthInput(input_element))
746 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local
780 const WebInputElement* input_element = toWebInputElement(&element); local
887 const WebInputElement* input_element = toWebInputElement(&control_element); local
1070 WebInputElement* input_element = toWebInputElement(&control_element); local
1123 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local
    [all...]
autofill_agent.cc 322 const WebInputElement* input_element = toWebInputElement(&element); local
323 if (!input_element && !IsTextAreaElement(element))
369 const WebInputElement* input_element = toWebInputElement(&element); local
370 if (input_element) {
372 password_generation_agent_->TextDidChangeInTextField(*input_element)) {
377 if (password_autofill_agent_->TextDidChangeInTextField(*input_element)) {
418 WebInputElement* input_element = toWebInputElement(&element_); local
419 DCHECK(input_element);
423 if (input_element->isMultiple() &&
424 input_element->formControlType() == WebString::fromUTF8("email"))
498 WebInputElement* input_element = toWebInputElement(&element_); local
504 WebInputElement* input_element = toWebInputElement(&element_); local
566 const WebInputElement* input_element = toWebInputElement(&element); local
651 const WebInputElement* input_element = toWebInputElement(&element); local
    [all...]
page_click_tracker.cc 101 const WebInputElement input_element = local
105 if (input_element.isNull() && textarea_element.isNull())
108 if (!input_element.isNull())
109 listener_->FormControlElementClicked(input_element, was_focused_);
password_generation_agent.cc 45 blink::WebInputElement* input_element = local
48 if (input_element &&
49 input_element->isTextField() &&
50 input_element->hasNonEmptyBoundingBox()) {
52 if (input_element->isPasswordField())
53 passwords->push_back(*input_element);
password_autofill_agent.cc 93 blink::WebInputElement input_element = local
95 if (input_element.isPasswordField() !=
104 result->input_elements[data.fields[j].name] = input_element;
    [all...]
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.cc 358 blink::WebInputElement* input_element = local
360 if (input_element && input_element->isTextField())
361 input_element->setSelectionRange(start_offset, end_offset);
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc 190 WebInputElement input_element = element.to<WebInputElement>(); local
196 FindFormAndFieldForFormControlElement(input_element,
227 fill_form_function(form_data, input_element);
718 WebInputElement input_element = element.to<WebInputElement>(); local
723 input_element,
797 WebInputElement input_element = element.to<WebInputElement>(); local
802 input_element,
1156 WebInputElement input_element = element.to<WebInputElement>(); local
2356 WebInputElement input_element = element.to<WebInputElement>(); local
2456 WebInputElement input_element = element.to<WebInputElement>(); local
2537 WebInputElement input_element = element.to<WebInputElement>(); local
2627 WebInputElement input_element = element.to<WebInputElement>(); local
2850 WebInputElement input_element = element.to<WebInputElement>(); local
    [all...]

Completed in 1335 milliseconds