Searched defs:FormControlState (Results 1 – 4 of 4) sorted by relevance
31 class FormControlState; variable42 virtual void restoreFormControlState(const FormControlState&) { } in restoreFormControlState()
41 FormControlState() : m_type(TypeSkip) { } in FormControlState() function42 explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } in FormControlState() function44 …FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_val… in FormControlState() function55 explicit FormControlState(Type type) : m_type(type) { } in FormControlState() function
111 void PasswordInputType::restoreFormControlState(const FormControlState&) in restoreFormControlState()
33 class FormControlState; variable