/external/webkit/Source/WebKit2/UIProcess/API/C/ |
D | WKPreferences.h | 45 WK_EXPORT void WKPreferencesSetJavaScriptEnabled(WKPreferencesRef preferences, bool javaScriptEnabl… 46 WK_EXPORT bool WKPreferencesGetJavaScriptEnabled(WKPreferencesRef preferences); 49 WK_EXPORT void WKPreferencesSetLoadsImagesAutomatically(WKPreferencesRef preferences, bool loadsIma… 50 WK_EXPORT bool WKPreferencesGetLoadsImagesAutomatically(WKPreferencesRef preferences); 53 …rencesSetLoadsSiteIconsIgnoringImageLoadingPreference(WKPreferencesRef preferences, bool loadsSite… 54 …RT bool WKPreferencesGetLoadsSiteIconsIgnoringImageLoadingPreference(WKPreferencesRef preferences); 57 WK_EXPORT void WKPreferencesSetOfflineWebApplicationCacheEnabled(WKPreferencesRef preferences, bool… 58 WK_EXPORT bool WKPreferencesGetOfflineWebApplicationCacheEnabled(WKPreferencesRef preferences); 61 WK_EXPORT void WKPreferencesSetLocalStorageEnabled(WKPreferencesRef preferences, bool localStorageE… 62 WK_EXPORT bool WKPreferencesGetLocalStorageEnabled(WKPreferencesRef preferences); [all …]
|
D | WKPreferencesPrivate.h | 92 WK_EXPORT void WKPreferencesSetForceFTPDirectoryListings(WKPreferencesRef preferences, bool force); 93 WK_EXPORT bool WKPreferencesGetForceFTPDirectoryListings(WKPreferencesRef preferences); 96 WK_EXPORT void WKPreferencesSetFTPDirectoryTemplatePath(WKPreferencesRef preferences, WKStringRef p… 97 WK_EXPORT WKStringRef WKPreferencesCopyFTPDirectoryTemplatePath(WKPreferencesRef preferences); 100 WK_EXPORT void WKPreferencesSetWebArchiveDebugModeEnabled(WKPreferencesRef preferences, bool enable… 101 WK_EXPORT bool WKPreferencesGetWebArchiveDebugModeEnabled(WKPreferencesRef preferences); 104 WK_EXPORT void WKPreferencesSetLocalFileContentSniffingEnabled(WKPreferencesRef preferences, bool e… 105 WK_EXPORT bool WKPreferencesGetLocalFileContentSniffingEnabled(WKPreferencesRef preferences); 108 WK_EXPORT void WKPreferencesSetPageCacheEnabled(WKPreferencesRef preferences, bool enabled); 109 WK_EXPORT bool WKPreferencesGetPageCacheEnabled(WKPreferencesRef preferences); [all …]
|
D | WKPreferences.cpp | 45 RefPtr<WebPreferences> preferences = WebPreferences::create(); in WKPreferencesCreate() local 46 return toAPI(preferences.release().leakRef()); in WKPreferencesCreate() 51 RefPtr<WebPreferences> preferences = WebPreferences::create(toWTFString(identifierRef)); in WKPreferencesCreateWithIdentifier() local 52 return toAPI(preferences.release().releaseRef()); in WKPreferencesCreateWithIdentifier()
|
D | WKPageGroup.h | 41 WK_EXPORT void WKPageGroupSetPreferences(WKPageGroupRef pageGroup, WKPreferencesRef preferences);
|
/external/webkit/Tools/DumpRenderTree/win/ |
D | LayoutTestControllerWin.cpp | 146 COMPtr<IWebPreferences> preferences; in disableImageLoading() local 147 if (FAILED(webView->preferences(&preferences))) in disableImageLoading() 150 preferences->setLoadsImagesAutomatically(FALSE); in disableImageLoading() 366 COMPtr<IWebPreferences> preferences; in setAuthorAndUserStylesEnabled() local 367 if (FAILED(webView->preferences(&preferences))) in setAuthorAndUserStylesEnabled() 370 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences); in setAuthorAndUserStylesEnabled() 471 COMPtr<IWebPreferences> preferences; in setPrivateBrowsingEnabled() local 472 if (FAILED(webView->preferences(&preferences))) in setPrivateBrowsingEnabled() 475 preferences->setPrivateBrowsingEnabled(privateBrowsingEnabled); in setPrivateBrowsingEnabled() 484 COMPtr<IWebPreferences> preferences; in setXSSAuditorEnabled() local [all …]
|
D | DumpRenderTree.cpp | 816 static void resetDefaultsToConsistentValues(IWebPreferences* preferences) in resetDefaultsToConsistentValues() argument 832 preferences->setStandardFontFamily(standardFamily); in resetDefaultsToConsistentValues() 833 preferences->setFixedFontFamily(fixedFamily); in resetDefaultsToConsistentValues() 834 preferences->setSerifFontFamily(standardFamily); in resetDefaultsToConsistentValues() 835 preferences->setSansSerifFontFamily(sansSerifFamily); in resetDefaultsToConsistentValues() 836 preferences->setCursiveFontFamily(cursiveFamily); in resetDefaultsToConsistentValues() 837 preferences->setFantasyFontFamily(fantasyFamily); in resetDefaultsToConsistentValues() 839 preferences->setAutosaves(FALSE); in resetDefaultsToConsistentValues() 840 preferences->setDefaultFontSize(16); in resetDefaultsToConsistentValues() 841 preferences->setDefaultFixedFontSize(13); in resetDefaultsToConsistentValues() [all …]
|
/external/webkit/Tools/WebKitTestRunner/ |
D | TestController.cpp | 357 WKPreferencesRef preferences = WKPageGroupGetPreferences(m_pageGroup.get()); in resetStateToConsistentValues() local 358 WKPreferencesSetOfflineWebApplicationCacheEnabled(preferences, true); in resetStateToConsistentValues() 359 WKPreferencesSetFontSmoothingLevel(preferences, kWKFontSmoothingLevelNoSubpixelAntiAliasing); in resetStateToConsistentValues() 360 WKPreferencesSetXSSAuditorEnabled(preferences, false); in resetStateToConsistentValues() 361 WKPreferencesSetDeveloperExtrasEnabled(preferences, true); in resetStateToConsistentValues() 362 WKPreferencesSetJavaScriptCanOpenWindowsAutomatically(preferences, true); in resetStateToConsistentValues() 363 WKPreferencesSetJavaScriptCanAccessClipboard(preferences, true); in resetStateToConsistentValues() 364 WKPreferencesSetDOMPasteAllowed(preferences, true); in resetStateToConsistentValues() 365 WKPreferencesSetUniversalAccessFromFileURLsAllowed(preferences, true); in resetStateToConsistentValues() 366 WKPreferencesSetFileAccessFromFileURLsAllowed(preferences, true); in resetStateToConsistentValues() [all …]
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
D | WebInspectorClient.cpp | 121 COMPtr<WebPreferences> preferences(Query, iPreferences); in openInspectorFrontend() local 122 if (!preferences) in openInspectorFrontend() 124 if (FAILED(preferences->setAutosaves(FALSE))) in openInspectorFrontend() 126 if (FAILED(preferences->setLoadsImagesAutomatically(TRUE))) in openInspectorFrontend() 128 if (FAILED(preferences->setAuthorAndUserStylesEnabled(TRUE))) in openInspectorFrontend() 130 if (FAILED(preferences->setAllowsAnimatedImages(TRUE))) in openInspectorFrontend() 132 if (FAILED(preferences->setLoadsImagesAutomatically(TRUE))) in openInspectorFrontend() 134 if (FAILED(preferences->setPlugInsEnabled(FALSE))) in openInspectorFrontend() 136 if (FAILED(preferences->setJavaEnabled(FALSE))) in openInspectorFrontend() 138 if (FAILED(preferences->setUserStyleSheetEnabled(FALSE))) in openInspectorFrontend() [all …]
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebPageGroup.cpp | 94 void WebPageGroup::setPreferences(WebPreferences* preferences) in setPreferences() argument 96 if (preferences == m_preferences) in setPreferences() 100 m_preferences = preferences; in setPreferences() 104 m_preferences = preferences; in setPreferences() 111 WebPreferences* WebPageGroup::preferences() const in preferences() function in WebKit::WebPageGroup
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebInspectorClient.mm | 222 …// Keep preferences separate from the rest of the client, making sure we are using expected prefer… 224 WebPreferences *preferences = [[WebPreferences alloc] init]; 225 [preferences setAutosaves:NO]; 226 [preferences setLoadsImagesAutomatically:YES]; 227 [preferences setAuthorAndUserStylesEnabled:YES]; 228 [preferences setJavaScriptEnabled:YES]; 229 [preferences setAllowsAnimatedImages:YES]; 230 [preferences setPlugInsEnabled:NO]; 231 [preferences setJavaEnabled:NO]; 232 [preferences setUserStyleSheetEnabled:NO]; [all …]
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | DumpRenderTree.mm | 426 WebPreferences *preferences = [WebPreferences standardPreferences]; 428 [preferences setAllowUniversalAccessFromFileURLs:YES]; 429 [preferences setAllowFileAccessFromFileURLs:YES]; 430 [preferences setStandardFontFamily:@"Times"]; 431 [preferences setFixedFontFamily:@"Courier"]; 432 [preferences setSerifFontFamily:@"Times"]; 433 [preferences setSansSerifFontFamily:@"Helvetica"]; 434 [preferences setCursiveFontFamily:@"Apple Chancery"]; 435 [preferences setFantasyFontFamily:@"Papyrus"]; 436 [preferences setDefaultFontSize:16]; [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/ |
D | shell.js | 386 var preferences = Components.classes['@mozilla.org/preferences;1']; 387 if (!preferences) 392 var prefService = preferences. 443 var preferences = Components.classes['@mozilla.org/preferences;1']; 444 if (!preferences) 449 var prefService = preferences.
|
/external/chromium/chrome/browser/autofill/ |
D | autofill_download.cc | 64 PrefService* preferences = profile_->GetPrefs(); in AutofillDownloadManager() 66 preferences->GetDouble(prefs::kAutofillPositiveUploadRate); in AutofillDownloadManager() 68 preferences->GetDouble(prefs::kAutofillNegativeUploadRate); in AutofillDownloadManager() 178 PrefService* preferences = profile_->GetPrefs(); in SetPositiveUploadRate() local 179 preferences->SetDouble(prefs::kAutofillPositiveUploadRate, rate); in SetPositiveUploadRate() 191 PrefService* preferences = profile_->GetPrefs(); in SetNegativeUploadRate() local 192 preferences->SetDouble(prefs::kAutofillNegativeUploadRate, rate); in SetNegativeUploadRate()
|
/external/chromium/chrome/browser/policy/ |
D | configuration_policy_provider_mac.cc | 38 MacPreferences* preferences, in MacPreferencesPolicyProviderDelegate() argument 42 preferences_(preferences) { in MacPreferencesPolicyProviderDelegate() 134 MacPreferences* preferences) in ConfigurationPolicyProviderMac() argument 136 new MacPreferencesPolicyProviderDelegate(preferences, in ConfigurationPolicyProviderMac()
|
D | configuration_policy_provider_mac.h | 22 MacPreferences* preferences, 53 MacPreferences* preferences);
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebView.mm | 685 _private->preferences = [standardPreferences retain]; 740 …_private->page->settings()->setLocalStorageDatabasePath([[self preferences] _localStorageDatabaseP… 777 WebPreferences *prefs = [self preferences]; 781 [self _preferencesChanged:[self preferences]]; 782 [[self preferences] _postPreferencesChangedAPINotification]; 1029 …esentationClass:rClass forMIMEType:MIMEType allowingPlugins:[_private->preferences arePlugInsEnabl… 1208 WebPreferences *preferences = _private->preferences; 1209 _private->preferences = nil; 1210 [preferences didRemoveFromWebView]; 1211 [preferences release]; [all …]
|
/external/chromium/chrome/browser/notifications/ |
D | balloon_host.cc | 189 RendererPreferences preferences; in GetRendererPrefs() local 190 renderer_preferences_util::UpdateFromSystemSettings(&preferences, profile); in GetRendererPrefs() 191 return preferences; in GetRendererPrefs()
|
/external/chromium/chrome/browser/tab_contents/ |
D | background_contents.cc | 198 RendererPreferences preferences; in GetRendererPrefs() local 199 renderer_preferences_util::UpdateFromSystemSettings(&preferences, profile); in GetRendererPrefs() 200 return preferences; in GetRendererPrefs()
|
/external/webkit/Source/WebKit/win/ |
D | WebView.cpp | 232 COMPtr<IWebPreferences> preferences(Query, unkPrefs); in onNotify() local 233 if (!preferences) in onNotify() 237 hr = preferences->cacheModel(&cacheModel); in onNotify() 638 if (FAILED((*it)->preferences(&pref))) in maxCacheModelInAnyInstance() 714 if (COMPtr<WebPreferences> preferences = m_preferences) { in close() local 716 preferences->identifier(&identifier); in close() 719 preferences->didRemoveFromWebView(); in close() 721 preferences = 0; in close() 3171 HRESULT STDMETHODCALLTYPE WebView::preferences( in preferences() function in WebView 4030 if (SUCCEEDED(preferences(&prefs))) in setContinuousSpellCheckingEnabled() [all …]
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/workspace/HelloLicense/.settings/ |
D | com.google.gwt.eclipse.core.prefs | 2 eclipse.preferences.version=1
|
D | com.google.gdt.eclipse.core.prefs | 2 eclipse.preferences.version=1
|
/external/jsr305/ri/.settings/ |
D | org.eclipse.jdt.ui.prefs | 2 eclipse.preferences.version=1
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | LayoutTestController.cpp | 697 …m_shell->preferences()->userStyleSheetLocation = arguments[0].value.boolValue ? m_userStyleSheetLo… in setUserStyleSheetEnabled() 708 m_shell->preferences()->userStyleSheetLocation = m_userStyleSheetLocation; in setUserStyleSheetLocation() 717 m_shell->preferences()->authorAndUserStylesEnabled = arguments[0].value.boolValue; in setAuthorAndUserStylesEnabled() 756 m_shell->preferences()->javaScriptCanOpenWindowsAutomatically = !blockPopups; in setPopupBlockingEnabled() 1055 m_shell->preferences()->loadsImagesAutomatically = false; in disableImageLoading() 1200 m_shell->preferences()->javaScriptCanAccessClipboard = arguments[0].value.boolValue; in setJavaScriptCanAccessClipboard() 1209 m_shell->preferences()->XSSAuditorEnabled = arguments[0].value.boolValue; in setXSSAuditorEnabled() 1229 m_shell->preferences()->allowUniversalAccessFromFileURLs = arguments[0].value.boolValue; in setAllowUniversalAccessFromFileURLs() 1238 m_shell->preferences()->allowFileAccessFromFileURLs = arguments[0].value.boolValue; in setAllowFileAccessFromFileURLs() 1296 WebPreferences* prefs = m_shell->preferences(); in overridePreference() [all …]
|
/external/webkit/Source/WebKit2/UIProcess/API/qt/ |
D | qwkpage.cpp | 93 , preferences(0) in QWKPagePrivate() 604 QWKPreferences* QWKPage::preferences() const in preferences() function in QWKPage 606 if (!d->preferences) { in preferences() 608 d->preferences = QWKPreferencesPrivate::createPreferences(pageGroupRef); in preferences() 611 return d->preferences; in preferences()
|
/external/webkit/Source/WebKit2/UIProcess/API/mac/ |
D | PDFViewController.mm | 166 WebPreferences *preferences = _pdfViewController->page()->pageGroup()->preferences(); 168 CGFloat scaleFactor = preferences->pdfScaleFactor(); 175 [_pdfView setDisplayMode:preferences->pdfDisplayMode()]; 185 WebPreferences* preferences = _pdfViewController->page()->pageGroup()->preferences(); 188 preferences->setPDFScaleFactor(scaleFactor); 189 preferences->setPDFDisplayMode([_pdfView displayMode]);
|