Home
last modified time | relevance | path

Searched refs:hasSelection (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/chrome/browser/resources/print_preview/data/
Ddocument_info.js111 get hasSelection() { getter in DocumentInfo
166 init: function(isModifiable, title, hasSelection) { argument
169 this.hasSelection_ = hasSelection;
/external/chromium/webkit/glue/
Dwebframe_unittest.cc88 EXPECT_FALSE(frame->hasSelection()); in TEST_F()
90 EXPECT_TRUE(frame->hasSelection()); in TEST_F()
92 EXPECT_FALSE(frame->hasSelection()); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGInlineTextBox.cpp205 bool hasSelection = selectionState() != RenderObject::SelectionNone; in paintSelectionBackground() local
206 if (!hasSelection || paintSelectedTextOnly) in paintSelectionBackground()
222 if (hasSelection) { in paintSelectionBackground()
274 …bool hasSelection = !parentRenderer->document().printing() && selectionState() != RenderObject::Se… in paint() local
275 if (!hasSelection && paintSelectedTextOnly) in paint()
293 if (hasSelection) { in paint()
336 …paintText(paintInfo.context, style, selectionStyle, fragment, hasSelection, paintSelectedTextOnly); in paint()
343 …paintText(paintInfo.context, style, selectionStyle, fragment, hasSelection, paintSelectedTextOnly); in paint()
666 …e, RenderStyle* selectionStyle, const SVGTextFragment& fragment, bool hasSelection, bool paintSele… in paintText() argument
673 if (hasSelection) { in paintText()
[all …]
DSVGInlineTextBox.h77 …nderStyle*, RenderStyle* selectionStyle, const SVGTextFragment&, bool hasSelection, bool paintSele…
DSVGRootInlineBox.cpp45 bool hasSelection = !isPrinting && selectionState() != RenderObject::SelectionNone; in paint() local
48 if (hasSelection) { in paint()
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
Dselection_only.js36 this.getDocumentInfoInternal().hasSelection;
/external/chromium_org/chrome/browser/resources/options/
Dbrowser_options.js1046 var hasSelection = selectedProfile != null;
1049 $('profiles-manage').disabled = !hasSelection ||
1051 if (hasSelection && !selectedProfile.isCurrentProfile)
1056 (!hasSelection && !hasSingleProfile);
1058 $('profiles-app-list-switch').disabled = !hasSelection ||
1063 importData.disabled = $('import-data').disabled = hasSelection &&
/external/chromium_org/third_party/WebKit/public/web/
DWebPlugin.h127 virtual bool hasSelection() const { return false; } in hasSelection() function
DWebFrame.h464 virtual bool hasSelection() const = 0;
/external/chromium_org/content/renderer/pepper/
Dpepper_webplugin_impl.h69 virtual bool hasSelection() const;
Dpepper_webplugin_impl.cc237 bool PepperWebPluginImpl::hasSelection() const { in hasSelection() function in content::PepperWebPluginImpl
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebPluginContainerTest.cpp82 virtual bool hasSelection() const { return true; } in hasSelection() function in __anon8d7cc9530111::TestPlugin
DWebFrameTest.cpp3013 EXPECT_FALSE(frame->hasSelection()); in TEST_F()
3015 EXPECT_TRUE(frame->hasSelection()); in TEST_F()
3017 EXPECT_FALSE(frame->hasSelection()); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/web/
DWebPluginContainerImpl.cpp341 if (!m_webPlugin->hasSelection()) in copy()
767 && m_webPlugin->hasSelection()) { in handleKeyboardEvent()
DWebFrameImpl.h183 virtual bool hasSelection() const;
DWebFrameImpl.cpp1265 bool WebFrameImpl::hasSelection() const in hasSelection() function in blink::WebFrameImpl
1269 return pluginContainer->plugin()->hasSelection(); in hasSelection()
2052 return hasSelection() ? WebRect(IntRect(frame()->selection().bounds(false))) : WebRect(); in selectionBoundsRect()
/external/chromium_org/chrome/renderer/printing/
Dprint_web_view_helper.cc861 *frame = focusedFrame->hasSelection() ? focusedFrame : webView->mainFrame(); in GetPrintFrame()
1510 params.has_selection = frame->hasSelection(); in GetPrintSettingsFromUser()
1897 return IsModifiable() && source_frame()->hasSelection(); in HasSelection()
/external/chromium_org/android_webview/renderer/
Dprint_web_view_helper.cc870 *frame = focusedFrame->hasSelection() ? focusedFrame : webView->mainFrame(); in GetPrintFrame()
1530 params.has_selection = frame->hasSelection(); in GetPrintSettingsFromUser()
1916 return IsModifiable() && source_frame()->hasSelection(); in HasSelection()
/external/chromium_org/content/renderer/
Drender_view_impl.cc1683 if (!frame->hasSelection()) in OnReplace()
1694 if (!frame->hasSelection()) in OnReplaceMisspelling()
1761 if (frame->hasSelection()) { in OnCopyToFindPboard()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
Dcodemirror.js1473 …if (!cm.state.focused || hasSelection(input) || isReadOnly(cm) || cm.state.disableInput) return fa…