HomeSort by relevance Sort by last modified time
    Searched refs:Settings (Results 251 - 275 of 306) sorted by null

<<111213

  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 97 import android.provider.Settings;
    [all...]
  /development/samples/Home/src/com/example/android/home/
Home.java 452 .setIntent(new Intent(android.provider.Settings.ACTION_SETTINGS));
  /external/webkit/WebCore/page/
Page.cpp 59 #include "Settings.h"
139 , m_settings(new Settings(this))
409 if (!settings()->arePluginsEnabled())
  /external/webkit/WebCore/xml/
XMLHttpRequest.cpp 40 #include "Settings.h"
192 Settings* settings = document()->settings();
193 return settings && settings->usesDashboardBackwardCompatibilityMode();
  /external/webkit/WebKit/wx/
WebView.cpp 57 #include "Settings.h"
326 // Default settings - we should have wxWebViewSettings class for this
328 WebCore::Settings* settings = m_impl->page->settings(); local
329 settings->setLoadsImagesAutomatically(true);
330 settings->setDefaultFixedFontSize(13);
331 settings->setDefaultFontSize(16);
332 settings->setSerifFontFamily("Times New Roman");
333 settings->setFixedFontFamily("Courier New")
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 39 import android.provider.Settings;
PackageManagerService.java 87 import android.provider.Settings;
259 final Settings mSettings;
720 mSettings = new Settings();
    [all...]
  /external/webkit/WebCore/html/
HTMLElement.cpp 45 #include "Settings.h"
960 Settings* settings = newChild->document() ? newChild->document()->settings() : 0; local
1014 Settings* settings = document()->settings(); local
    [all...]
  /external/webkit/WebCore/page/mac/
EventHandlerMac.mm 49 #include "Settings.h"
834 Settings* settings = m_frame->settings();
835 if (!settings)
839 if (settings->usesDashboardBackwardCompatibilityMode())
843 if (settings->needsKeyboardEventDisambiguationQuirks())
  /external/webkit/WebCore/rendering/
RenderTableSection.cpp 40 #include "Settings.h"
199 // we ignore height settings on rowspan cells
268 const Settings* settings = document()->settings(); local
269 ASSERT(settings);
270 if (settings->layoutAlgorithm() == Settings::kLayoutFitColumnToScreen)
    [all...]
RenderTheme.cpp 38 #include "Settings.h"
760 Settings* settings = o->document()->settings();
761 if (!settings || !settings->inApplicationChromeMode())
    [all...]
RenderThemeWin.cpp 30 #include "Settings.h"
129 Settings* settings = document->settings(); local
130 return settings && settings->inApplicationChromeMode();
627 // At different DPI settings on Windows, querying the theme gives you a larger size that accounts for
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java 93 * {@link Settings}, which contains visibility and sync settings for accounts
138 * A key in the {@link android.provider.Settings android.provider.Settings} provider
160 * A key in the {@link android.provider.Settings android.provider.Settings} provider
    [all...]
  /external/webkit/WebCore/css/
CSSStyleSelector.cpp 81 #include "Settings.h"
4226 Settings* settings = m_checker.m_document->settings(); local
4482 Settings* settings = m_checker.m_document->settings(); local
4511 Settings* settings = m_checker.m_document->settings(); local
5318 Settings* settings = m_checker.m_document->settings(); local
5854 Settings* settings = m_checker.m_document->settings(); local
5886 Settings* settings = document->settings(); local
5958 Settings* settings = document->settings(); local
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp 118 #include "Settings.h"
180 #include "Settings.h"
332 return page && (page->settings()->needsLeopardMailQuirks() || page->settings()->needsTigerMailQuirks());
474 m_shouldProcessNoScriptElement = settings() && !settings()->isJavaScriptEnabled();
609 f->settings()->setMetadataSettings("width", "device-width");
720 || (importedNode->isSVGElement() && page() && page()->settings()->usesDashboardBackwardCompatibilityMode())
964 if (Settings* settings = this->settings()
1278 Settings* Document::settings() const function in class:WebCore::Document
    [all...]
make_names.pl 636 #include "Settings.h"
701 Settings* settings = document->settings();
702 if (settings && settings->usesDashboardBackwardCompatibilityMode())
  /packages/apps/Email/src/com/android/exchange/adapter/
ContactsSyncAdapter.java 44 import android.provider.ContactsContract.Settings;
175 cv.put(Settings.UNGROUPED_VISIBLE, true);
176 client.insert(addCallerIsSyncAdapterParameter(Settings.CONTENT_URI), cv);
    [all...]
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.cpp 55 #include "Settings.h"
639 if (Settings* settings = canvas()->document()->settings())
640 if (settings->usesDashboardBackwardCompatibilityMode())
1164 if (Settings* settings = canvas()->document()->settings())
1165 if (settings->usesDashboardBackwardCompatibilityMode())
    [all...]
  /external/webkit/WebCore/bindings/js/
JSDOMBinding.cpp 50 #include "Settings.h"
759 Settings* settings = frame->settings();
760 if (!settings)
762 if (settings->privateBrowsingEnabled())
  /external/webkit/WebCore/bindings/v8/
V8Proxy.cpp 285 Settings* settings = frame->settings(); local
286 ASSERT(settings);
287 settings->setJavaScriptEnabled(false);
  /external/webkit/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 51 #include "Settings.h"
445 Settings* settings = frame->settings();
446 return settings && settings->javaScriptCanOpenWindowsAutomatically();
  /external/webkit/WebCore/platform/
ContextMenu.cpp 50 #include "Settings.h"
519 if (Settings* settings = page->settings()) {
520 bool includeTextDirectionSubmenu = settings->textDirectionSubmenuInclusionBehavior() == TextDirectionSubmenuAlwaysIncluded
521 || (settings->textDirectionSubmenuInclusionBehavior() == TextDirectionSubmenuAutomaticallyIncluded && frame->editor()->hasBidiSelection());
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 65 #include "Settings.h"
413 if (m_frame->settings() && m_frame->settings()->supportMultipleWindows())
764 (m_frame && m_frame->settings()
765 && m_frame->settings()->arePluginsEnabled()
872 CachedFramePlatformDataAndroid* platformData = new CachedFramePlatformDataAndroid(m_frame->settings());
879 platformData->restoreMetadata(m_frame->settings());
888 // reset metadata settings for the main frame as they are not preserved cross page
889 if (m_frame == m_frame->page()->mainFrame() && m_frame->settings())
890 m_frame->settings()->resetMetadataSettings()
1146 Settings* settings = m_frame->settings(); local
    [all...]
  /external/webkit/WebKit/gtk/WebCoreSupport/
FrameLoaderClientGtk.cpp 96 WebKitWebSettings* settings = webkit_web_view_get_settings(getViewFromFrame(m_frame)); local
97 return String::fromUTF8(webkit_web_settings_get_user_agent(settings));
530 Settings* settings = coreFrame->settings(); local
531 if (!settings || !settings->isJavaScriptEnabled())
    [all...]
  /external/webkit/WebKit/qt/Api/
qgraphicswebview.cpp 42 #include <Settings.h>
331 configuration of the browser can be obtained with the settings() function, enabling
866 Returns a pointer to the view/page specific settings object.
874 QWebSettings* QGraphicsWebView::settings() const function in class:QGraphicsWebView
876 return page()->settings();

Completed in 755 milliseconds

<<111213