OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InputMethodBase
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/ime/
input_method_base.h
25
class VIEWS_EXPORT
InputMethodBase
: public InputMethod,
28
InputMethodBase
();
29
virtual ~
InputMethodBase
();
74
DISALLOW_COPY_AND_ASSIGN(
InputMethodBase
);
input_method_base.cc
15
InputMethodBase
::
InputMethodBase
() : delegate_(NULL), widget_(NULL) {}
17
InputMethodBase
::~
InputMethodBase
() {
21
void
InputMethodBase
::SetDelegate(internal::InputMethodDelegate* delegate) {
26
void
InputMethodBase
::Init(Widget* widget) {
39
views::View*
InputMethodBase
::GetFocusedView() const {
43
void
InputMethodBase
::OnTextInputTypeChanged(View* view) {}
45
ui::TextInputClient*
InputMethodBase
::GetTextInputClient() const {
50
ui::TextInputType
InputMethodBase
::GetTextInputType() const
[
all
...]
/external/chromium_org/ui/base/ime/
input_method_base.h
27
class UI_EXPORT
InputMethodBase
29
public base::SupportsWeakPtr<
InputMethodBase
> {
31
InputMethodBase
();
32
virtual ~
InputMethodBase
();
111
DISALLOW_COPY_AND_ASSIGN(
InputMethodBase
);
input_method_base.cc
17
InputMethodBase
::
InputMethodBase
()
23
InputMethodBase
::~
InputMethodBase
() {
29
void
InputMethodBase
::SetDelegate(internal::InputMethodDelegate* delegate) {
33
void
InputMethodBase
::Init(bool focused) {
38
void
InputMethodBase
::OnFocus() {
43
void
InputMethodBase
::OnBlur() {
48
void
InputMethodBase
::SetFocusedTextInputClient(TextInputClient* client) {
52
void
InputMethodBase
::DetachTextInputClient(TextInputClient* client)
[
all
...]
Completed in 959 milliseconds