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

<<111213

  /frameworks/base/cmds/pm/src/com/android/commands/pm/
Pm.java 38 import android.provider.Settings;
    [all...]
  /packages/apps/Phone/src/com/android/phone/
OtaUtils.java 35 import android.provider.Settings;
    [all...]
  /frameworks/base/services/java/com/android/server/
WindowManagerService.java 90 import android.provider.Settings;
632 mWindowAnimationScale = Settings.System.getFloat(context.getContentResolver(),
633 Settings.System.WINDOW_ANIMATION_SCALE, mWindowAnimationScale);
634 mTransitionAnimationScale = Settings.System.getFloat(context.getContentResolver(),
635 Settings.System.TRANSITION_ANIMATION_SCALE, mTransitionAnimationScale);
    [all...]
  /external/webkit/WebCore/editing/
EditorCommand.cpp 53 #include "Settings.h"
166 Settings* settings = frame->document()->settings(); local
168 if (settings && settings->editingBehavior() == EditingMacBehavior)
1079 Settings* settings = frame ? frame->settings() : 0; local
    [all...]
  /external/webkit/WebCore/rendering/
RenderBlockLineLayout.cpp 43 #include "Settings.h"
561 const Settings* settings = document()->settings(); local
562 bool doTextWrap = settings && settings->layoutAlgorithm() == Settings::kLayoutFitColumnToScreen;
    [all...]
RenderThemeSafari.cpp 25 #include "Settings.h"
79 // FIXME: This is called before Settings has been initialized by WebKit, so will return a
82 if (Settings::shouldPaintNativeControls()) {
    [all...]
RenderBlock.cpp 46 #include "Settings.h"
51 #include "Settings.h"
705 const Settings* settings = document()->settings(); local
706 ASSERT(settings);
708 && settings->layoutAlgorithm() == Settings::kLayoutFitColumnToScreen)
3513 Settings* settings = document()->settings(); local
    [all...]
  /external/webkit/WebKit/win/
WebFrame.cpp 94 #include <WebCore/Settings.h>
1772 Settings* settings = coreFrame->settings(); local
    [all...]
WebView.cpp 123 #include <WebCore/Settings.h>
    [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp 64 #include "Settings.h"
574 Settings* settings = m_parentFrame->settings(); local
577 if (!settings || !settings->isJavaScriptEnabled())
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp 235 WebKitWebSettings* settings = webkit_web_view_get_settings(webView); local
237 g_object_get(settings, "enable-default-context-menu", &enableDefaultContextMenu, NULL);
1152 Settings* settings = core(webView)->settings(); local
2546 Settings* settings = core(webView)->settings(); local
2641 Settings* settings = core(webView)->settings(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactsListActivity.java 68 import android.provider.Settings;
    [all...]
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /external/webkit/WebCore/
Android.mk 359 page/Settings.cpp \
  /external/webkit/WebCore/inspector/
InspectorController.cpp 82 #include "Settings.h"
204 return m_inspectedPage->settings()->developerExtrasEnabled();
209 Settings::iterator it = m_settings.find(key);
    [all...]
  /external/webkit/WebCore/inspector/front-end/
inspector.js 444 this.settings = new WebInspector.Settings();
    [all...]
  /external/webkit/WebCore/page/
Frame.cpp 74 #include "Settings.h"
307 Settings* Frame::settings() const function in class:WebCore::Frame
309 return m_page ? m_page->settings() : 0;
619 bool caretBrowsing = settings() && settings()->caretBrowsingEnabled();
670 return m_page->settings()->zoomsTextOnly();
707 m_page->settings()->setZoomsTextOnly(true); // We do this to avoid doing any scaling of CSS pixels, since the SVG has its own notion of zoom.
722 m_page->settings()->setZoomsTextOnly(isTextOnly);
800 m_doc->docLoader()->setAutoLoadImages(m_page && m_page->settings()->loadsImagesAutomatically())
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.cpp 91 #include "Settings.h"
1399 WebCore::Settings* settings = m_mainFrame->page()->settings(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 74 import android.provider.Settings;
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebView.mm 140 #import <WebCore/Settings.h>
633 _private->page->settings()->setLocalStorageDatabasePath([[self preferences] _localStorageDatabasePath]);
668 // Post a notification so the WebCore settings update.
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
cpp.py 367 "C:\Documents and Settings\..." or "/home/username/..." in them and thus
    [all...]
  /frameworks/base/core/java/android/app/
ContextImpl.java 92 import android.provider.Settings;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 1099 final Intent settings = new Intent(android.provider.Settings.ACTION_SETTINGS); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 33 import android.provider.Settings;
    [all...]

Completed in 2650 milliseconds

<<111213