• Home
  • Raw
  • Download

Lines Matching refs:HTMLInputElement

45     return constUnwrap<HTMLInputElement>()->isTextField();  in isTextField()
50 return constUnwrap<HTMLInputElement>()->isText(); in isText()
55 return constUnwrap<HTMLInputElement>()->isPasswordField(); in isPasswordField()
60 return constUnwrap<HTMLInputElement>()->isImageButton(); in isImageButton()
65 return constUnwrap<HTMLInputElement>()->autoComplete(); in autoComplete()
70 return constUnwrap<HTMLInputElement>()->maxLength(); in maxLength()
75 return constUnwrap<HTMLInputElement>()->isActivatedSubmit(); in isActivatedSubmit()
80 unwrap<HTMLInputElement>()->setActivatedSubmit(activated); in setActivatedSubmit()
85 return constUnwrap<HTMLInputElement>()->size(); in size()
90 unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent); in setValue()
95 return constUnwrap<HTMLInputElement>()->value(); in value()
100 unwrap<HTMLInputElement>()->setSuggestedValue(value); in setSuggestedValue()
105 return constUnwrap<HTMLInputElement>()->suggestedValue(); in suggestedValue()
110 unwrap<HTMLInputElement>()->setPlaceholder(value); in setPlaceholder()
115 return constUnwrap<HTMLInputElement>()->placeholder(); in placeholder()
120 return constUnwrap<HTMLInputElement>()->isAutofilled(); in isAutofilled()
125 unwrap<HTMLInputElement>()->setAutofilled(autoFilled); in setAutofilled()
130 unwrap<HTMLInputElement>()->setSelectionRange(start, end); in setSelectionRange()
135 return constUnwrap<HTMLInputElement>()->selectionStart(); in selectionStart()
140 return constUnwrap<HTMLInputElement>()->selectionEnd(); in selectionEnd()
145 return constUnwrap<HTMLInputElement>()->isValidValue(value); in isValidValue()
150 return constUnwrap<HTMLInputElement>()->checked(); in isChecked()
155 return HTMLInputElement::s_maximumLength; in defaultMaxLength()
158 WebInputElement::WebInputElement(const PassRefPtr<HTMLInputElement>& elem) in WebInputElement()
163 WebInputElement& WebInputElement::operator=(const PassRefPtr<HTMLInputElement>& elem) in operator =()
169 WebInputElement::operator PassRefPtr<HTMLInputElement>() const in operator PassRefPtr<HTMLInputElement>()
171 return static_cast<HTMLInputElement*>(m_private.get()); in operator PassRefPtr<HTMLInputElement>()