OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HasSelection
(Results
1 - 14
of
14
) sorted by null
/external/chromium_org/ui/views/controls/textfield/
textfield_views_model.cc
358
if (
HasSelection
()) {
379
if (
HasSelection
()) {
512
if (!HasCompositionText() &&
HasSelection
() && !render_text_->obscured()) {
530
if (!HasCompositionText() &&
HasSelection
() && !render_text_->obscured()) {
550
bool TextfieldViewsModel::
HasSelection
() const {
556
DCHECK(
HasSelection
());
585
else if (
HasSelection
())
662
} else if (
HasSelection
()) {
674
} else if (!
HasSelection
()) {
textfield_views_model.h
192
bool
HasSelection
() const;
textfield.h
122
bool
HasSelection
() const;
native_textfield_views.cc
757
return editable && model_->
HasSelection
() && !textfield_->IsObscured();
759
return model_->
HasSelection
() && !textfield_->IsObscured();
765
return editable && model_->
HasSelection
();
[
all
...]
textfield_views_model_unittest.cc
820
EXPECT_FALSE(model.
HasSelection
());
835
EXPECT_FALSE(model.
HasSelection
());
[
all
...]
textfield.cc
204
bool Textfield::
HasSelection
() const {
/external/chromium_org/ppapi/examples/ime/
ime.cc
148
if (composition_.empty() &&
HasSelection
()) {
238
if (
HasSelection
() && !text.empty())
310
if (!shift &&
HasSelection
())
324
if (!shift &&
HasSelection
())
337
if (
HasSelection
()) {
349
if (
HasSelection
()) {
380
bool
HasSelection
() const {
/external/chromium_org/ui/views/touchui/
touch_selection_controller_impl_unittest.cc
162
if (textfield_->
HasSelection
()) { \
482
EXPECT_FALSE(textfield_->
HasSelection
());
492
EXPECT_TRUE(textfield_->
HasSelection
());
/external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.cc
579
if (textfield_->
HasSelection
())
590
(!textfield_->
HasSelection
() &&
/external/chromium_org/android_webview/renderer/
print_web_view_helper.h
413
bool
HasSelection
();
print_web_view_helper.cc
870
*frame = focusedFrame->
hasSelection
() ? focusedFrame : webView->mainFrame();
[
all
...]
/external/chromium_org/chrome/renderer/printing/
print_web_view_helper.h
411
bool
HasSelection
();
print_web_view_helper.cc
861
*frame = focusedFrame->
hasSelection
() ? focusedFrame : webView->mainFrame();
[
all
...]
/external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc
710
HasSelection
() || GetCursorPosition() != 0)
718
(!
HasSelection
() && GetCursorPosition() == text().length());
[
all
...]
Completed in 786 milliseconds