Home
last modified time | relevance | path

Searched refs:WebInputElement (Results 1 – 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/web/
DWebInputElement.cpp50 bool WebInputElement::isTextField() const in isTextField()
55 bool WebInputElement::isText() const in isText()
60 bool WebInputElement::isPasswordField() const in isPasswordField()
65 bool WebInputElement::isImageButton() const in isImageButton()
70 bool WebInputElement::isRadioButton() const in isRadioButton()
75 bool WebInputElement::isCheckbox() const in isCheckbox()
80 bool WebInputElement::autoComplete() const in autoComplete()
85 int WebInputElement::maxLength() const in maxLength()
90 bool WebInputElement::isActivatedSubmit() const in isActivatedSubmit()
95 void WebInputElement::setActivatedSubmit(bool activated) in setActivatedSubmit()
[all …]
/external/chromium_org/components/autofill/content/renderer/
Dpassword_autofill_agent.h18 class WebInputElement; variable
36 bool TextFieldDidEndEditing(const blink::WebInputElement& element);
37 bool TextDidChangeInTextField(const blink::WebInputElement& element);
38 bool TextFieldHandlingKeyDown(const blink::WebInputElement& element,
51 bool ShowSuggestions(const blink::WebInputElement& element);
73 blink::WebInputElement password_field;
108 const blink::WebInputElement& user_input);
116 blink::WebInputElement username_element,
117 blink::WebInputElement password_element);
120 blink::WebInputElement* username_element,
[all …]
Dform_autofill_util.h18 class WebInputElement; variable
55 bool IsMonthInput(const blink::WebInputElement* element);
58 bool IsTextInput(const blink::WebInputElement* element);
67 bool IsCheckableElement(const blink::WebInputElement* element);
71 bool IsAutofillableInputElement(const blink::WebInputElement* element);
118 bool FindFormAndFieldForInputElement(const blink::WebInputElement& element,
126 const blink::WebInputElement& element);
143 const blink::WebInputElement& element);
149 bool ClearPreviewedFormWithElement(const blink::WebInputElement& element,
153 bool FormWithElementIsAutofilled(const blink::WebInputElement& element);
Dpassword_autofill_agent.cc41 typedef std::map<base::string16, blink::WebInputElement>
84 blink::WebInputElement input_element = in FindFormInputElements()
85 temp_elements[i].to<blink::WebInputElement>(); in FindFormInputElements()
164 bool IsElementEditable(const blink::WebInputElement& element) { in IsElementEditable()
168 void SetElementAutofilled(blink::WebInputElement* element, bool autofilled) { in SetElementAutofilled()
200 const blink::WebInputElement& element) { in TextFieldDidEndEditing()
213 blink::WebInputElement password = iter->second.password_field; in TextFieldDidEndEditing()
217 blink::WebInputElement username = element; // We need a non-const. in TextFieldDidEndEditing()
228 const blink::WebInputElement& element) { in TextDidChangeInTextField()
236 blink::WebInputElement username = element; // We need a non-const. in TextDidChangeInTextField()
[all …]
Dautofill_agent.h74 virtual void InputElementClicked(const blink::WebInputElement& element,
82 const blink::WebInputElement& element) OVERRIDE;
84 const blink::WebInputElement& element) OVERRIDE;
86 const blink::WebInputElement& element,
94 virtual void openTextDataListChooser(const blink::WebInputElement& element);
124 void TextFieldDidChangeImpl(const blink::WebInputElement& element);
140 void ShowSuggestions(const blink::WebInputElement& element,
148 void QueryAutofillSuggestions(const blink::WebInputElement& element,
171 void SetNodeText(const base::string16& value, blink::WebInputElement* node);
185 blink::WebInputElement element_;
Dpage_click_tracker.cc23 using blink::WebInputElement;
34 const WebInputElement GetTextWebInputElement(const WebNode& node) { in GetTextWebInputElement()
36 return WebInputElement(); in GetTextWebInputElement()
39 return WebInputElement(); in GetTextWebInputElement()
40 const WebInputElement* input = blink::toWebInputElement(&element); in GetTextWebInputElement()
42 return WebInputElement(); in GetTextWebInputElement()
84 const WebInputElement input_element = in DidHandleMouseEvent()
Dautofill_agent.cc50 using blink::WebInputElement;
70 void GetDataListSuggestions(const blink::WebInputElement& element, in GetDataListSuggestions()
118 gfx::RectF GetScaledBoundingBox(float scale, WebInputElement* element) { in GetScaledBoundingBox()
250 const WebInputElement* element = toWebInputElement(&web_element); in FocusedNodeChanged()
306 void AutofillAgent::InputElementClicked(const WebInputElement& element, in InputElementClicked()
333 void AutofillAgent::textFieldDidEndEditing(const WebInputElement& element) { in textFieldDidEndEditing()
339 void AutofillAgent::textFieldDidChange(const WebInputElement& element) { in textFieldDidChange()
359 void AutofillAgent::TextFieldDidChangeImpl(const WebInputElement& element) { in TextFieldDidChangeImpl()
380 void AutofillAgent::textFieldDidReceiveKeyDown(const WebInputElement& element, in textFieldDidReceiveKeyDown()
392 void AutofillAgent::openTextDataListChooser(const WebInputElement& element) { in openTextDataListChooser()
[all …]
Dform_autofill_util.cc41 using blink::WebInputElement;
88 const WebInputElement* input_element = toWebInputElement(&element); in IsAutofillableElement()
95 bool SatisfiesRequireAutocomplete(const WebInputElement& input_element) { in SatisfiesRequireAutocomplete()
508 const WebInputElement* input_element = toWebInputElement(element); in ForEachMatchingFormField()
536 WebInputElement* input_element = toWebInputElement(field); in FillFormField()
577 WebInputElement* input_element = toWebInputElement(field); in PreviewFormField()
632 bool IsMonthInput(const WebInputElement* element) { in IsMonthInput()
638 bool IsTextInput(const WebInputElement* element) { in IsTextInput()
654 bool IsCheckableElement(const WebInputElement* element) { in IsCheckableElement()
661 bool IsAutofillableInputElement(const WebInputElement* element) { in IsAutofillableInputElement()
[all …]
Dform_cache.cc31 using blink::WebInputElement;
117 const WebInputElement input_element = in ExtractFormsAndFormElements()
118 element.toConst<WebInputElement>(); in ExtractFormsAndFormElements()
182 bool FormCache::ClearFormWithElement(const WebInputElement& element) { in ClearFormWithElement()
198 WebInputElement* input_element = toWebInputElement(&control_element); in ClearFormWithElement()
223 WebInputElement input_element = control_element.to<WebInputElement>(); in ClearFormWithElement()
225 std::map<const WebInputElement, bool>::const_iterator it = in ClearFormWithElement()
Dform_cache.h18 class WebInputElement; variable
53 bool ClearFormWithElement(const blink::WebInputElement& element);
70 std::map<const blink::WebInputElement, bool> initial_checked_state_;
Dpassword_generation_agent.cc37 std::vector<blink::WebInputElement>* passwords) { in GetAccountCreationPasswordFields()
44 blink::WebInputElement* input_element = in GetAccountCreationPasswordFields()
152 std::vector<blink::WebInputElement> passwords; in DidFinishLoad()
182 blink::WebInputElement& element) { in openPasswordGenerator()
219 for (std::vector<blink::WebInputElement>::iterator it = passwords_.begin(); in OnPasswordAccepted()
Dpage_click_listener.h9 class WebInputElement; variable
22 virtual void InputElementClicked(const blink::WebInputElement& element,
Dpassword_generation_agent.h51 virtual void openPasswordGenerator(blink::WebInputElement& element) OVERRIDE;
77 std::vector<blink::WebInputElement> passwords_;
/external/chromium_org/third_party/WebKit/public/web/
DWebInputElement.h45 class WebInputElement : public WebFormControlElement {
53 WebInputElement() : WebFormControlElement() { } in WebInputElement() function
54 WebInputElement(const WebInputElement& element) : WebFormControlElement(element) { } in WebInputElement() function
56 WebInputElement& operator=(const WebInputElement& element)
61 void assign(const WebInputElement& element) { WebFormControlElement::assign(element); } in assign()
115 WebInputElement(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
116 WebInputElement& operator=(const WTF::PassRefPtr<WebCore::HTMLInputElement>&);
121 BLINK_EXPORT WebInputElement* toWebInputElement(WebElement*);
123 inline const WebInputElement* toWebInputElement(const WebElement* element) in toWebInputElement()
DWebAutofillClient.h38 class WebInputElement; variable
91 virtual void textFieldDidEndEditing(const WebInputElement&) { } in textFieldDidEndEditing() argument
92 virtual void textFieldDidChange(const WebInputElement&) { } in textFieldDidChange() argument
93 virtual void textFieldDidReceiveKeyDown(const WebInputElement&, const WebKeyboardEvent&) { } in textFieldDidReceiveKeyDown() argument
95 virtual void openTextDataListChooser(const WebInputElement&) { } in openTextDataListChooser() argument
DWebPasswordGeneratorClient.h36 class WebInputElement; variable
40 virtual void openPasswordGenerator(WebInputElement&) = 0;
DWebSearchableFormData.h47 …bSearchableFormData(const WebFormElement&, const WebInputElement& selectedInputElement = WebInputE…
/external/chromium_org/chrome/renderer/autofill/
Dautofill_renderer_browsertest.cc18 using blink::WebInputElement;
62 expected.max_length = WebInputElement::defaultMaxLength(); in TEST_F()
68 expected.max_length = WebInputElement::defaultMaxLength(); in TEST_F()
75 expected.max_length = WebInputElement::defaultMaxLength(); in TEST_F()
89 WebInputElement firstname = in TEST_F()
90 document.getElementById("firstname").to<WebInputElement>(); in TEST_F()
118 expected.max_length = WebInputElement::defaultMaxLength(); in TEST_F()
124 expected.max_length = WebInputElement::defaultMaxLength(); in TEST_F()
175 WebInputElement firstname = in TEST_F()
176 document.getElementById("firstname").to<WebInputElement>(); in TEST_F()
[all …]
Dform_autofill_browsertest.cc36 using blink::WebInputElement;
130 WebInputElement::defaultMaxLength() : 0; in ExpectLabelsAndTypes()
161 const WebInputElement& element);
163 typedef WebString (WebInputElement::*GetValueFunction)(void) const;
183 WebInputElement input_element = element.to<WebInputElement>(); in TestFormFillFunctions()
208 WebInputElement::defaultMaxLength() : 0; in TestFormFillFunctions()
241 WebInputElement input_element = GetMainFrame()->document().getElementById( in ValidteFilledField()
242 ASCIIToUTF16(field_case.name)).to<WebInputElement>(); in ValidteFilledField()
256 const WebInputElement& element) { in FillFormForAllFieldsWrapper()
262 const WebInputElement& element) { in FillFormIncludingNonFocusableElementsWrapper()
[all …]
Dpassword_generation_agent_browsertest.cc21 using blink::WebInputElement;
81 void SimulateClickOnDecoration(blink::WebInputElement* input_element) { in SimulateClickOnDecoration()
88 bool DecorationIsVisible(blink::WebInputElement* input_element) { in DecorationIsVisible()
117 WebInputElement target_element = element.to<WebInputElement>(); in ExpectPasswordGenerationIconShown()
208 WebInputElement first_password_element = element.to<WebInputElement>(); in TEST_F()
211 WebInputElement second_password_element = element.to<WebInputElement>(); in TEST_F()
Dpassword_autofill_agent_browsertest.cc31 using blink::WebInputElement;
203 username_element_ = element.to<blink::WebInputElement>(); in SetUp()
206 password_element_ = element.to<blink::WebInputElement>(); in SetUp()
225 WebInputElement& username_input) { in SimulateUsernameChangeForElement()
246 void SimulateKeyDownEvent(const WebInputElement& element, in SimulateKeyDownEvent()
253 void CheckTextFieldsStateForElements(const WebInputElement& username_element, in CheckTextFieldsStateForElements()
256 const WebInputElement& password_element, in CheckTextFieldsStateForElements()
290 WebInputElement username_element_;
291 WebInputElement password_element_;
345 username_element_ = element.to<blink::WebInputElement>(); in TEST_F()
[all …]
/external/chromium/webkit/glue/
Dform_field.cc18 using WebKit::WebInputElement;
45 const WebInputElement& input_element = element.toConst<WebInputElement>(); in FormField()
Ddom_operations.cc28 using WebKit::WebInputElement;
159 const WebInputElement input = element.toConst<WebInputElement>(); in GetSubResourceLinkFromElement()
294 WebInputElement input_element = element.to<WebInputElement>(); in ElementDoesAutoCompleteForElementWithId()
/external/chromium_org/content/renderer/
Dinput_tag_speech_dispatcher.cc24 using blink::WebInputElement;
135 blink::WebInputElement* input_element = blink::toWebInputElement(&element); in OnSpeechRecognitionToggleSpeechInput()
141 if (input_element->getSpeechInputState() == WebInputElement::Idle) { in OnSpeechRecognitionToggleSpeechInput()
Dsavable_resources.cc26 using blink::WebInputElement;
156 const WebInputElement input = element.toConst<WebInputElement>(); in GetSubResourceLinkFromElement()

123