OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SearchInputType
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
SearchInputType.h
42
class
SearchInputType
: public BaseTextInputType {
49
SearchInputType
(HTMLInputElement&);
62
void searchEventTimerFired(Timer<
SearchInputType
>*);
67
Timer<
SearchInputType
> m_searchEventTimer;
SearchInputType.cpp
32
#include "core/html/forms/
SearchInputType
.h"
49
inline
SearchInputType
::
SearchInputType
(HTMLInputElement& element)
51
, m_searchEventTimer(this, &
SearchInputType
::searchEventTimerFired)
55
PassRefPtr<InputType>
SearchInputType
::create(HTMLInputElement& element)
57
return adoptRef(new
SearchInputType
(element));
60
void
SearchInputType
::countUsage()
65
RenderObject*
SearchInputType
::createRenderer(RenderStyle*) const
70
const AtomicString&
SearchInputType
::formControlType() const
75
bool
SearchInputType
::shouldRespectSpeechAttribute(
[
all
...]
Completed in 34 milliseconds