HomeSort by relevance Sort by last modified time
    Searched refs:Configuration (Results 26 - 50 of 688) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/tests/view/src/android/view/cts/
MockApplication.java 20 import android.content.res.Configuration;
49 public void onConfigurationChanged(Configuration newConfig) {
  /cts/tests/tests/widget/src/android/widget/cts/
MockApplication.java 20 import android.content.res.Configuration;
49 public void onConfigurationChanged(Configuration newConfig) {
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoActivity.java 23 import android.content.res.Configuration;
131 Configuration con = getResources().getConfiguration();
133 if (con.touchscreen == Configuration.TOUCHSCREEN_UNDEFINED) {
135 } else if (con.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH) {
137 } else if (con.touchscreen == Configuration.TOUCHSCREEN_STYLUS) {
139 } else if (con.touchscreen == Configuration.TOUCHSCREEN_FINGER) {
148 if (con.navigation == Configuration.NAVIGATION_UNDEFINED) {
150 } else if (con.navigation == Configuration.NAVIGATION_NONAV) {
152 } else if (con.navigation == Configuration.NAVIGATION_DPAD) {
154 } else if (con.navigation == Configuration.NAVIGATION_TRACKBALL)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ConfigurationTest.java 6 import android.content.res.Configuration;
20 private Configuration configuration; field in class:ConfigurationTest
25 configuration = new Configuration();
26 shConfiguration = Robolectric.shadowOf( configuration );
31 configuration.setToDefaults();
32 assertThat(configuration.screenLayout, equalTo(Configuration.SCREENLAYOUT_LONG_NO | Configuration.SCREENLAYOUT_SIZE_NORMAL))
    [all...]
  /frameworks/base/core/java/android/app/
UiModeManager.java 20 import android.content.res.Configuration;
34 * the UiModeManager switches the system {@link android.content.res.Configuration}
99 public static final int MODE_NIGHT_AUTO = Configuration.UI_MODE_NIGHT_UNDEFINED >> 4;
104 public static final int MODE_NIGHT_NO = Configuration.UI_MODE_NIGHT_NO >> 4;
109 public static final int MODE_NIGHT_YES = Configuration.UI_MODE_NIGHT_YES >> 4;
179 * {@link Configuration#UI_MODE_TYPE_NORMAL Configuration.UI_MODE_TYPE_NORMAL},
180 * {@link Configuration#UI_MODE_TYPE_DESK Configuration.UI_MODE_TYPE_DESK},
181 * {@link Configuration#UI_MODE_TYPE_CAR Configuration.UI_MODE_TYPE_CAR}
    [all...]
ResourcesManager.java 24 import android.content.res.Configuration;
53 Configuration mResConfiguration;
54 final Configuration mTmpConfig = new Configuration();
65 public Configuration getConfiguration() {
113 DisplayMetrics dm, Configuration config) {
114 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
118 int sl = Configuration.resetScreenLayout(config.screenLayout);
120 config.orientation = Configuration.ORIENTATION_LANDSCAPE;
121 config.screenLayout = Configuration.reduceScreenLayout(sl
    [all...]
  /external/chromium_org/chromeos/accelerometer/
accelerometer_reader.h 26 // Configuration structure for accelerometer device.
38 typedef base::RefCountedData<ConfigurationData> Configuration;
53 // Dispatched when initialization is complete. If |success|, |configuration|
55 void OnInitialized(scoped_refptr<Configuration> configuration, bool success);
72 // The accelerometer configuration.
73 scoped_refptr<Configuration> configuration_;
  /build/core/combo/arch/mips/
mips32-fp.mk 0 # Configuration for Android on MIPS.
mips32r2-fp.mk 0 # Configuration for Android on MIPS.
mips32r6.mk 0 # Configuration for Android on MIPS.
mips32r2dsp-fp.mk 0 # Configuration for Android on MIPS.
mips32r2dspr2-fp.mk 0 # Configuration for Android on MIPS.
  /build/core/combo/arch/mips64/
mips64r2.mk 0 # Configuration for Android on mips64r2.
  /build/core/combo/arch/x86_64/
sandybridge.mk 0 # Configuration for Linux on x86_64.
  /development/tools/idegen/src/
Main.java 37 Configuration configuration = new Configuration(); local
38 IntelliJ.generateFrom(configuration);
39 Eclipse.generateFrom(configuration);
  /external/chromium_org/chrome/browser/task_manager/
task_manager_util_unittest.cc 16 struct Configuration {
24 const Configuration configs[] = {
  /external/chromium_org/chrome/browser/policy/
device_management_service_configuration.h 16 // The real implementation of the device management service configuration that
19 : public DeviceManagementService::Configuration {
  /frameworks/base/core/java/android/content/res/
ResourcesKey.java 29 public final Configuration mOverrideConfiguration = new Configuration();
31 public ResourcesKey(String resDir, int displayId, Configuration overrideConfiguration,
51 return !Configuration.EMPTY.equals(mOverrideConfiguration);
Configuration.java 37 * This class describes all device configuration information that can
39 * user-specified configuration options (locale and scaling) as well
44 * <pre>Configuration config = getResources().getConfiguration();</pre>
46 public final class Configuration implements Parcelable, Comparable<Configuration> {
48 public static final Configuration EMPTY = new Configuration();
208 // configuration. DO NOT CHANGE!
253 curLayout |= Configuration.SCREENLAYOUT_COMPAT_NEEDED;
263 * Check if the Configuration's current {@link #screenLayout} is a
    [all...]
  /packages/apps/Mms/src/com/android/mms/layout/
LayoutManager.java 23 import android.content.res.Configuration;
44 private void initLayoutParameters(Configuration configuration) {
46 configuration.orientation == Configuration.ORIENTATION_PORTRAIT
86 public void onConfigurationChanged(Configuration newConfig) {
  /packages/apps/Camera2/src/com/android/camera/
CaptureModuleUtil.java 20 import android.content.res.Configuration;
37 Configuration config = context.getResources().getConfiguration();
41 config.orientation == Configuration.ORIENTATION_LANDSCAPE) ||
43 config.orientation == Configuration.ORIENTATION_PORTRAIT)) {
44 return Configuration.ORIENTATION_LANDSCAPE;
46 return Configuration.ORIENTATION_PORTRAIT;
104 == Configuration.ORIENTATION_PORTRAIT) {
  /frameworks/base/core/java/android/content/pm/
ActivityInfo.java 20 import android.content.res.Configuration;
546 * not a core resource configuration, but a higher-level value, so its
557 Configuration.NATIVE_CONFIG_MNC, // MNC
558 Configuration.NATIVE_CONFIG_MCC, // MCC
559 Configuration.NATIVE_CONFIG_LOCALE, // LOCALE
560 Configuration.NATIVE_CONFIG_TOUCHSCREEN, // TOUCH SCREEN
561 Configuration.NATIVE_CONFIG_KEYBOARD, // KEYBOARD
562 Configuration.NATIVE_CONFIG_KEYBOARD_HIDDEN, // KEYBOARD HIDDEN
563 Configuration.NATIVE_CONFIG_NAVIGATION, // NAVIGATION
564 Configuration.NATIVE_CONFIG_ORIENTATION, // ORIENTATIO
    [all...]
  /external/chromium_org/chrome/installer/mini_installer/
configuration_test.cc 7 #include "chrome/installer/mini_installer/configuration.h"
10 using mini_installer::Configuration;
12 class TestConfiguration : public Configuration {
14 explicit TestConfiguration(const wchar_t* command_line) : Configuration() {
25 EXPECT_EQ(Configuration::INSTALL_PRODUCT,
27 EXPECT_EQ(Configuration::INSTALL_PRODUCT,
29 EXPECT_EQ(Configuration::INSTALL_PRODUCT,
32 EXPECT_EQ(Configuration::CLEANUP,
34 EXPECT_EQ(Configuration::CLEANUP,
39 EXPECT_TRUE(NULL == mini_installer::Configuration().program())
    [all...]
  /development/apps/Development/src/com/android/development/
AppHwPref.java 30 import android.content.res.Configuration;
47 /* This activity displays the hardware configuration details
172 case Configuration.TOUCHSCREEN_FINGER:
174 case Configuration.TOUCHSCREEN_NOTOUCH:
176 case Configuration.TOUCHSCREEN_STYLUS:
178 case Configuration.TOUCHSCREEN_UNDEFINED:
191 case Configuration.KEYBOARD_12KEY:
193 case Configuration.KEYBOARD_NOKEYS:
195 case Configuration.KEYBOARD_QWERTY:
197 case Configuration.KEYBOARD_UNDEFINED
    [all...]
  /build/core/combo/arch/x86/
haswell.mk 0 # Configuration for Linux on x86.

Completed in 3556 milliseconds

12 3 4 5 6 7 8 91011>>