Searched defs:input_element (Results 1 - 11 of 11) sorted by relevance

/external/chromium/webkit/glue/
H A Dform_field.cc45 const WebInputElement& input_element = element.toConst<WebInputElement>(); local
46 value = input_element.value();
47 max_length = input_element.size();
48 is_autofilled = input_element.isAutofilled();
H A Dwebaccessibility.cc355 WebKit::WebInputElement input_element = local
358 input_element.selectionStart());
360 input_element.selectionEnd());
/external/chromium_org/components/autofill/content/renderer/
H A Dpage_click_tracker.cc84 const WebInputElement input_element = local
86 if (input_element.isNull())
90 listener_->InputElementClicked(input_element, was_focused_, is_focused);
H A Dpassword_generation_agent.cc44 blink::WebInputElement* input_element = local
47 if (input_element &&
48 input_element->isTextField() &&
49 input_element->hasNonEmptyBoundingBox()) {
51 if (input_element->isPasswordField())
52 passwords->push_back(*input_element);
H A Dform_cache.cc117 const WebInputElement input_element = local
119 if (IsCheckableElement(&input_element)) {
121 std::make_pair(input_element, input_element.isChecked()));
198 WebInputElement* input_element = toWebInputElement(&control_element); local
199 if (IsTextInput(input_element) || IsMonthInput(input_element)) {
200 input_element->setValue(base::string16(), true);
204 if (element == *input_element) {
205 int length = input_element
223 WebInputElement input_element = control_element.to<WebInputElement>(); local
[all...]
H A Dpassword_autofill_agent.cc84 blink::WebInputElement input_element = local
86 if (input_element.isPasswordField() !=
95 result->input_elements[data.fields[j].name] = input_element;
H A Dform_autofill_util.cc88 const WebInputElement* input_element = toWebInputElement(&element); local
89 return IsAutofillableInputElement(input_element) ||
95 bool SatisfiesRequireAutocomplete(const WebInputElement& input_element) { argument
96 return input_element.autoComplete();
508 const WebInputElement* input_element = toWebInputElement(element); local
510 ((IsAutofillableInputElement(input_element) &&
511 !input_element->value().isEmpty()) ||
536 WebInputElement* input_element = toWebInputElement(field); local
537 if (IsTextInput(input_element) || IsMonthInput(input_element)) {
735 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local
769 const WebInputElement* input_element = toWebInputElement(&element); local
878 const WebInputElement* input_element = toWebInputElement(&control_element); local
1053 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local
1099 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local
[all...]
/external/chromium_org/content/renderer/
H A Dinput_tag_speech_dispatcher.cc135 blink::WebInputElement* input_element = blink::toWebInputElement(&element); local
136 if (!input_element)
138 if (!input_element->isSpeechInputEnabled())
141 if (input_element->getSpeechInputState() == WebInputElement::Idle) {
142 input_element->startSpeechInput();
144 input_element->stopSpeechInput();
/external/chromium_org/chrome/renderer/autofill/
H A Dpassword_generation_agent_browsertest.cc81 void SimulateClickOnDecoration(blink::WebInputElement* input_element) { argument
84 input_element->decorationElementFor(generation_manager_.get());
88 bool DecorationIsVisible(blink::WebInputElement* input_element) { argument
90 input_element->decorationElementFor(generation_manager_.get());
H A Dform_autofill_browsertest.cc183 WebInputElement input_element = element.to<WebInputElement>(); local
189 FindFormAndFieldForInputElement(input_element,
218 fill_form_function(form_data, input_element);
241 WebInputElement input_element = GetMainFrame()->document().getElementById( local
243 value = (input_element.*get_value_function)();
669 WebInputElement input_element = element.to<WebInputElement>(); local
674 input_element,
748 WebInputElement input_element = element.to<WebInputElement>(); local
753 input_element,
1012 WebInputElement input_element local
2081 WebInputElement input_element = element.to<WebInputElement>(); local
2174 WebInputElement input_element = element.to<WebInputElement>(); local
2251 WebInputElement input_element = element.to<WebInputElement>(); local
2337 WebInputElement input_element = element.to<WebInputElement>(); local
2553 WebInputElement input_element = element.to<WebInputElement>(); local
[all...]
/external/chromium_org/content/renderer/accessibility/
H A Drenderer_accessibility_complete.cc590 blink::WebInputElement* input_element = local
592 if (input_element && input_element->isTextField())
593 input_element->setSelectionRange(start_offset, end_offset);

Completed in 298 milliseconds