Searched refs:suggestedValue (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFormControlElement.cpp126 WebString WebFormControlElement::suggestedValue() const function in class:blink::WebFormControlElement
129 return constUnwrap<HTMLInputElement>()->suggestedValue();
131 return constUnwrap<HTMLTextAreaElement>()->suggestedValue();
133 return constUnwrap<HTMLSelectElement>()->suggestedValue();
/external/chromium_org/chrome/renderer/autofill/
H A Dpassword_autofill_agent_browsertest.cc349 checkSuggestedValue ? password_element.suggestedValue().utf8()
1073 EXPECT_EQ(std::string(), username_element_.suggestedValue().utf8());
1075 EXPECT_EQ(std::string(), password_element_.suggestedValue().utf8());
1085 static_cast<std::string>(username_element_.suggestedValue().utf8()));
1089 static_cast<std::string>(password_element_.suggestedValue().utf8()));
1100 static_cast<std::string>(username_element_.suggestedValue().utf8()));
1104 static_cast<std::string>(password_element_.suggestedValue().utf8()));
1126 static_cast<std::string>(username_element_.suggestedValue().utf8()));
1130 static_cast<std::string>(password_element_.suggestedValue().utf8()));
1156 EXPECT_TRUE(username_element_.suggestedValue()
[all...]
H A Dform_autofill_browsertest.cc284 return element.to<WebTextAreaElement>().suggestedValue();
287 return element.to<WebSelectElement>().suggestedValue();
289 return element.to<WebInputElement>().suggestedValue();
3183 EXPECT_TRUE(firstname.suggestedValue().isEmpty());
3188 EXPECT_TRUE(lastname.suggestedValue().isEmpty());
3191 EXPECT_TRUE(email.suggestedValue().isEmpty());
3194 EXPECT_TRUE(email2.suggestedValue().isEmpty());
3197 EXPECT_TRUE(phone.suggestedValue().isEmpty());
3253 EXPECT_TRUE(firstname.suggestedValue().isEmpty());
3260 EXPECT_TRUE(lastname.suggestedValue()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseChooserOnlyDateAndTimeInputType.cpp75 if (!element().suggestedValue().isNull())
76 displayValue = element().suggestedValue();
H A DBaseMultipleFieldsDateAndTimeInputType.cpp517 if (!element().suggestedValue().isNull())
518 hasValue = parseToDateComponents(element().suggestedValue(), &date);
H A DTextFieldInputType.cpp525 if (!element().suggestedValue().isNull()) {
526 element().setInnerEditorValue(element().suggestedValue());
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFormControlElement.h87 BLINK_EXPORT WebString suggestedValue() const;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextAreaElement.h52 String suggestedValue() const;
84 virtual bool isEmptySuggestedValue() const OVERRIDE FINAL { return suggestedValue().isEmpty(); }
H A DHTMLSelectElement.h73 String suggestedValue() const;
H A DHTMLInputElement.h144 const String& suggestedValue() const;
345 virtual bool isEmptySuggestedValue() const OVERRIDE FINAL { return suggestedValue().isEmpty(); }
H A DHTMLTextAreaElement.cpp449 String HTMLTextAreaElement::suggestedValue() const function in class:WebCore::HTMLTextAreaElement
H A DHTMLInputElement.cpp938 const String& HTMLInputElement::suggestedValue() const function in class:WebCore::HTMLInputElement
H A DHTMLSelectElement.cpp271 String HTMLSelectElement::suggestedValue() const function in class:WebCore::HTMLSelectElement
/external/chromium_org/components/autofill/content/renderer/
H A Dpassword_autofill_agent.cc276 if (!element->isNull() && !element->suggestedValue().isNull())
277 element->setValue(element->suggestedValue(), true);
417 username_element.suggestedValue().length());
1064 if (!username->suggestedValue().isEmpty()) {
1070 if (!password->suggestedValue().isEmpty()) {
H A Dautofill_agent.cc570 if (!datalist_only && !input_element->suggestedValue().isEmpty())
574 if (!element.toConst<WebTextAreaElement>().suggestedValue().isEmpty())
688 node->suggestedValue().length());
H A Dform_autofill_util.cc599 int end = field->suggestedValue().length();
1086 control_element.suggestedValue().isEmpty())
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp959 String Internals::suggestedValue(Element* element, ExceptionState& exceptionState) function in class:WebCore::Internals
971 String suggestedValue; local
973 suggestedValue = toHTMLInputElement(*element).suggestedValue();
976 suggestedValue = toHTMLTextAreaElement(*element).suggestedValue();
979 suggestedValue = toHTMLSelectElement(*element).suggestedValue();
981 return suggestedValue;
H A DInternals.h159 String suggestedValue(Element*, ExceptionState&);
H A DInternals.idl115 [RaisesException] DOMString suggestedValue(Element inputElement);

Completed in 1177 milliseconds