/external/chromium_org/components/autofill/content/renderer/ |
form_autofill_util.cc | 86 const WebInputElement* input_element = toWebInputElement(&element); local 87 return IsAutofillableInputElement(input_element) || IsSelectElement(element); 100 bool SatisfiesRequireAutocomplete(const WebInputElement& input_element) { 101 return input_element.autoComplete() || IsAutocheckoutEnabled(); 513 const WebInputElement* input_element = toWebInputElement(element); local 514 if (!force_override && IsTextInput(input_element) && 515 !is_initiating_element && !input_element->value().isEmpty()) 536 WebInputElement* input_element = toWebInputElement(field); 537 if (IsTextInput(input_element)) { 540 input_element->setValue 688 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local 722 const WebInputElement* input_element = toWebInputElement(&element); local 827 const WebInputElement* input_element = toWebInputElement(&control_element); local 1002 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local 1048 WebInputElement* input_element = toWebInputElement(&control_elements[i]); local [all...] |
form_cache.cc | 113 const WebInputElement input_element = local 115 if (IsCheckableElement(&input_element)) { 117 std::make_pair(input_element, input_element.isChecked())); 188 WebInputElement* input_element = toWebInputElement(&control_element); local 189 if (IsTextInput(input_element)) { 191 if (!input_element->isEnabled()) 194 input_element->setValue(base::string16(), true); 195 input_element->setAutofilled(false); 199 if (element == *input_element) { 214 WebInputElement input_element = control_element.to<WebInputElement>(); local [all...] |
password_generation_manager.cc | 39 WebKit::WebInputElement* input_element = local 42 if (input_element && 43 input_element->isTextField() && 44 input_element->hasNonEmptyBoundingBox()) { 46 if (input_element->isPasswordField()) 47 passwords->push_back(*input_element);
|
page_click_tracker.cc | 84 const WebInputElement input_element = local 86 if (input_element.isNull()) 90 listener_->InputElementClicked(input_element, was_focused_, is_focused);
|
password_autofill_agent.cc | 80 WebKit::WebInputElement input_element = local 82 if (input_element.isPasswordField() != 91 result->input_elements[data.fields[j].name] = input_element;
|
/external/chromium_org/content/renderer/ |
input_tag_speech_dispatcher.cc | 135 WebKit::WebInputElement* input_element = WebKit::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/webkit/glue/ |
form_field.cc | 45 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();
|
webaccessibility.cc | 355 WebKit::WebInputElement input_element = local 358 input_element.selectionStart()); 360 input_element.selectionEnd());
|
dom_operations.cc | 294 WebInputElement input_element = element.to<WebInputElement>(); 295 return input_element.autoComplete();
|
/external/chromium_org/chrome/renderer/autofill/ |
password_generation_manager_browsertest.cc | 76 void SimulateClickOnDecoration(WebKit::WebInputElement* input_element) { 78 input_element->decorationElementFor(generation_manager_.get()); 82 bool DecorationIsVisible(WebKit::WebInputElement* input_element) { 84 input_element->decorationElementFor(generation_manager_.get());
|
form_autofill_browsertest.cc | 167 WebInputElement input_element = element.to<WebInputElement>(); local 173 FindFormAndFieldForInputElement(input_element, 201 fill_form_function(form_data, input_element); 214 WebInputElement input_element = GetMainFrame()->document().getElementById( local 216 EXPECT_EQ(field_case.should_be_autofilled, input_element.isAutofilled()); 219 (input_element.*get_value_function)()); 223 EXPECT_TRUE((input_element.*get_value_function)().isEmpty()); 225 EXPECT_EQ(expected_value, (input_element.*get_value_function)()); 571 WebInputElement input_element = element.to<WebInputElement>(); local 576 input_element, 636 WebInputElement input_element = element.to<WebInputElement>(); local 900 WebInputElement input_element = element.to<WebInputElement>(); local 1958 WebInputElement input_element = element.to<WebInputElement>(); local 2051 WebInputElement input_element = element.to<WebInputElement>(); local 2128 WebInputElement input_element = element.to<WebInputElement>(); local 2214 WebInputElement input_element = element.to<WebInputElement>(); local 2430 WebInputElement input_element = element.to<WebInputElement>(); local [all...] |
/external/chromium_org/content/renderer/accessibility/ |
renderer_accessibility_complete.cc | 669 WebKit::WebInputElement* input_element = local 671 if (input_element && input_element->isTextField()) 672 input_element->setSelectionRange(start_offset, end_offset);
|
/external/chromium_org/chrome/browser/autofill/ |
autofill_interactive_uitest.cc | 759 " var input_element = document.createElement('input');" 760 " input_element.setAttribute('id', name);" 761 " input_element.setAttribute('name', name);" 765 " input_element.setAttribute(" 769 " form.appendChild(input_element);" [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/ |
HTML4.java | 213 INPUT_ELEMENT = addElement("INPUT", "E", HTML.Element.Flow.INLINE),
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HTML4.java | 214 INPUT_ELEMENT = addElement("INPUT", "E", HTML.Element.Flow.INLINE),
|