Searched refs:isEnabled (Results 151 - 175 of 206) sorted by relevance

123456789

/macosx-10.9.5/WebKit-7537.78.2/qt/tests/qwebhistory/
H A Dtst_qwebhistory.cpp418 QVERIFY(actionBack->isEnabled());
423 QVERIFY(!actionBack->isEnabled());
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorInstrumentation.h159 static void scriptsEnabled(Page*, bool isEnabled);
363 static void scriptsEnabledImpl(InstrumentingAgents*, bool isEnabled);
986 inline void InspectorInstrumentation::scriptsEnabled(Page* page, bool isEnabled) argument
991 return scriptsEnabledImpl(instrumentingAgents, isEnabled);
994 UNUSED_PARAM(isEnabled);
H A DInspectorPageAgent.cpp1104 void InspectorPageAgent::scriptsEnabled(bool isEnabled) argument
1109 m_frontend->scriptsEnabled(isEnabled);
H A DInspectorInstrumentation.cpp453 void InspectorInstrumentation::scriptsEnabledImpl(InstrumentingAgents* instrumentingAgents, bool isEnabled) argument
456 pageAgent->scriptsEnabled(isEnabled);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitWebView.cpp2364 bool isEnabled; member in struct:ValidateEditingCommandAsyncData
2369 static void didValidateCommand(WKStringRef command, bool isEnabled, int32_t state, WKErrorRef, void* context) argument
2377 data->isEnabled = isEnabled;
2430 return data->isEnabled;
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DEditorCommand.cpp75 bool (*isEnabled)(Frame*, Event*, EditorCommandSource); member in class:WebCore::EditorInternalCommand
1700 if (!isEnabled(triggeringEvent)) {
1729 bool Editor::Command::isEnabled(Event* triggeringEvent) const function in class:WebCore::Editor::Command
1733 return m_command->isEnabled(m_frame.get(), triggeringEvent, m_source);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCPUProfileView.js55 if (WebInspector.experimentsSettings.cpuFlameChart.isEnabled()) {
H A DCodeMirrorTextEditor.js59 autoCloseBrackets: WebInspector.experimentsSettings.textEditorSmartBraces.isEnabled()
/macosx-10.9.5/WebCore-7537.78.1/loader/archive/cf/
H A DLegacyWebArchive.cpp575 if (nodesSize && nodes[0]->isDocumentNode() && iconDatabase().isEnabled()) {
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DRenderThemeQStyle.cpp555 if (!isEnabled(o)) {
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp287 return core(webView)->focusController()->focusedOrMainFrame()->editor().command(name).isEnabled();
/macosx-10.9.5/WebKit-7537.78.2/qt/WidgetApi/
H A Dqgraphicswebview.cpp413 if (!isEnabled())
H A Dqwebview.cpp696 if (!isEnabled())
H A Dqwebpage.cpp521 anyEnabledAction |= actions.at(i)->isEnabled();
570 bool enabled = a->isEnabled();
1094 actions can be be determined by checking \l{QAction::}{isEnabled()} on the
2728 originallyEnabledWebActions.setBit(action, a->isEnabled());
/macosx-10.9.5/CF-855.17/
H A DCFUtilities.c881 CF_PRIVATE void _CFSetSuddenTerminationEnabled(Boolean isEnabled) { argument
892 uint32_t notifyResult = notify_set_state(__CFProcessIsKillableNotifyToken, isEnabled);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityNodeObject.cpp596 bool AccessibilityNodeObject::isEnabled() const function in class:WebCore::AccessibilityNodeObject
1940 return isEnabled();
H A DAccessibilityObject.h464 virtual bool isEnabled() const { return false; } function in class:WebCore::AccessibilityObject
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderThemeSafari.cpp120 if (isEnabled(o) && !isReadOnlyControl(o))
332 if (!isEnabled(o))
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXMenu.c209 return [menuItem isEnabled];
257 if ([item isEnabled] && [[item keyEquivalent] compare:key] ==
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/
H A DWebPage.cpp796 return command.isSupported() && command.isEnabled();
1876 bool isEnabled = false; local
1881 isEnabled = pluginView->isEditingCommandEnabled(commandName);
1885 isEnabled = command.isSupported() && command.isEnabled();
1889 send(Messages::WebPageProxy::ValidateCommandCallback(commandName, isEnabled, state, callbackID));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKView.mm762 static void validateCommandCallback(WKStringRef commandName, bool isEnabled, int32_t state, WKErrorRef error, void* context)
771 [wkView _setUserInterfaceItemState:nsStringFromWebCoreString(toImpl(commandName)->string()) enabled:isEnabled state:state];
2456 - (void)_setUserInterfaceItemState:(NSString *)commandName enabled:(BOOL)isEnabled state:(int)newState
2463 [menuItem(item) setEnabled:isEnabled];
2464 [toolbarItem(item) setEnabled:isEnabled];
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLRenderingContext.cpp572 m_isErrorGeneratedOnOutOfBoundsAccesses = m_context->getExtensions()->isEnabled("GL_CHROMIUM_strict_attribs");
573 m_isResourceSafe = m_context->getExtensions()->isEnabled("GL_CHROMIUM_resource_safe");
575 m_isGLES2NPOTStrict = !m_context->getExtensions()->isEnabled("GL_OES_texture_npot");
576 m_isDepthStencilSupported = m_context->getExtensions()->isEnabled("GL_OES_packed_depth_stencil");
578 m_isGLES2NPOTStrict = !m_context->getExtensions()->isEnabled("GL_ARB_texture_non_power_of_two");
579 m_isDepthStencilSupported = m_context->getExtensions()->isEnabled("GL_EXT_packed_depth_stencil");
581 m_isRobustnessEXTSupported = m_context->getExtensions()->isEnabled("GL_EXT_robustness");
3268 GC3Dboolean WebGLRenderingContext::isEnabled(GC3Denum cap) function in class:WebCore::__anon5286::WebGLRenderingContext
3270 if (isContextLost() || !validateCapability("isEnabled", cap))
3274 return m_context->isEnabled(ca
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/icon/
H A DIconDatabase.cpp415 if (!isEnabled() || !documentCanHaveIcon(pageURL))
468 if (!isEnabled() || !documentCanHaveIcon(pageURL))
719 bool IconDatabase::isEnabled() const function in class:WebCore::IconDatabase
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperGL.cpp286 data().previousScissorState = m_context3D->isEnabled(GraphicsContext3D::SCISSOR_TEST);
287 data().previousDepthState = m_context3D->isEnabled(GraphicsContext3D::DEPTH_TEST);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DThemeMac.mm171 bool oldEnabled = [cell isEnabled];

Completed in 688 milliseconds

123456789