OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TSFBridge
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/ui/base/ime/win/
tsf_bridge.h
18
//
TSFBridge
provides high level IME related operations on top of Text Services
19
// Framework (TSF).
TSFBridge
is managed by TLS because TSF related stuff is
21
// To be consistent with IMM32 behavior,
TSFBridge
is shared in the same thread.
22
//
TSFBridge
is used by the web content text inputting field, for example
25
//
TSFBridge
also manages connectivity between TSFTextStore which is the backend
29
class UI_EXPORT
TSFBridge
{
31
virtual ~
TSFBridge
();
33
// Returns the thread local
TSFBridge
instance. Initialize() must be called
34
// first. Do not cache this pointer and use it after
TSFBridge
Shutdown().
35
static
TSFBridge
* GetInstance()
[
all
...]
tsf_bridge.cc
24
// We use thread local storage for
TSFBridge
lifespan management.
30
// A TLS implementation of
TSFBridge
.
31
class TSFBridgeDelegate : public
TSFBridge
{
38
//
TsfBridge
:
83
//
TSFBridge
::SetFocusedClient is called first then the target window
456
// This should be true as long as
TSFBridge
::Shutdown() is called late phase
490
//
TsfBridge
-----------------------------------------------------------------
492
TSFBridge
::
TSFBridge
() {
495
TSFBridge
::~TSFBridge()
[
all
...]
mock_tsf_bridge.h
17
class MockTSFBridge : public
TSFBridge
{
22
//
TSFBridge
:
/external/chromium_org/ui/base/ime/
input_method_tsf.cc
54
ui::
TSFBridge
::GetInstance()->GetThreadManager());
103
ui::
TSFBridge
::GetInstance()->CancelComposition();
104
ui::
TSFBridge
::GetInstance()->OnTextInputTypeChanged(client);
110
ui::
TSFBridge
::GetInstance()->OnTextLayoutChanged();
115
ui::
TSFBridge
::GetInstance()->CancelComposition();
120
ui::
TSFBridge
::GetInstance()->RemoveFocusedClient(client);
131
ui::
TSFBridge
::GetInstance()->RemoveFocusedClient(focused_before);
138
ui::
TSFBridge
::GetInstance()->SetFocusedClient(
155
ui::
TSFBridge
::GetInstance()->ConfirmComposition();
input_method_initializer.cc
42
TSFBridge
::Initialize();
55
TSFBridge
::Shutdown();
81
TSFBridge
::Initialize();
108
TSFBridge
::Shutdown();
/external/chromium_org/content/browser/renderer_host/
render_widget_host_view_win.cc
811
ui::
TSFBridge
::GetInstance()->RemoveFocusedClient(this);
[
all
...]
/external/chromium_org/ui/views/widget/desktop_aura/
desktop_root_window_host_win.cc
839
ui::
TSFBridge
::GetInstance()->CancelComposition();
[
all
...]
Completed in 40 milliseconds