OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextStore
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/win8/metro_driver/ime/
text_store.cc
22
TextStore
::
TextStore
()
36
TextStore
::~
TextStore
() {
40
scoped_refptr<
TextStore
>
TextStore
::Create(
46
return scoped_refptr<
TextStore
>();
52
return scoped_refptr<
TextStore
>();
58
return scoped_refptr<
TextStore
>();
64
return scoped_refptr<
TextStore
>();
[
all
...]
text_store.h
28
//
TextStore
is used to interact with the input method via TSF manager.
29
//
TextStore
have a string buffer which is manipulated by TSF manager through
31
// When the input method updates the composition,
TextStore
calls
33
// composition,
TextStore
calls TextInputClient::InsertText() and clears the
36
// How
TextStore
works:
39
// - TSF manager calls
TextStore
::RequestLock().
40
// -
TextStore
callbacks ITextStoreACPSink::OnLockGranted().
42
// -
TextStore
::OnStartComposition()
43
// -
TextStore
::SetText()
45
// -
TextStore
::OnUpdateComposition(
[
all
...]
text_service.cc
212
// -
TextStore
: a COM object that abstracts text buffer. This object is
215
// TSF runtime and works as a container of
TextStore
.
217
// TSF runtime and
TextStore
is unregistered when this object is destroyed.
241
// instantiate
TextStore
.
244
scoped_refptr<
TextStore
> text_store;
246
text_store =
TextStore
::Create(window_handle, input_scopes, delegate);
248
LOG(ERROR) << "Failed to create
TextStore
.";
266
// If null-
TextStore
is used or |input_scopes| looks like a password field,
297
scoped_refptr<
TextStore
> text_store() const {
302
DocumentBinding(scoped_refptr<
TextStore
> text_store
[
all
...]
Completed in 48 milliseconds