OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:composition_range
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/base/ime/win/
tsf_event_router.h
36
// gfx::Range::InvalidRange is passed to |
composition_range
|.
37
virtual void OnTextUpdated(const gfx::Range&
composition_range
) {}
63
void OnTextUpdated(const gfx::Range&
composition_range
);
tsf_event_router.cc
128
const gfx::Range
composition_range
= GetCompositionRange(context);
local
130
if (!previous_composition_range_.IsValid() &&
composition_range
.IsValid())
136
router_->OnTextUpdated(
composition_range
);
138
if (previous_composition_range_.IsValid() && !
composition_range
.IsValid())
141
previous_composition_range_ =
composition_range
;
295
void TSFEventRouter::OnTextUpdated(const gfx::Range&
composition_range
) {
296
observer_->OnTextUpdated(
composition_range
);
/external/chromium_org/ui/gfx/
render_text.cc
565
void RenderText::SetCompositionRange(const Range&
composition_range
) {
566
CHECK(!
composition_range
.IsValid() ||
567
Range(0, text_.length()).Contains(
composition_range
));
568
composition_range_.set_end(
composition_range
.end());
569
composition_range_.set_start(
composition_range
.start());
[
all
...]
render_text.h
293
void SetCompositionRange(const Range&
composition_range
);
/external/chromium_org/ui/views/controls/textfield/
native_textfield_views.cc
1001
const gfx::Range&
composition_range
= GetRenderText()->GetCompositionRange();
local
1002
DCHECK(!
composition_range
.is_empty());
1004
size_t text_index =
composition_range
.start() + index;
1005
if (
composition_range
.end() <= text_index)
1011
if (text_index <
composition_range
.start())
[
all
...]
Completed in 3084 milliseconds