/frameworks/base/core/tests/coretests/src/android/content/res/ |
ConfigurationBoundResourceCacheTest.java | 87 final Configuration cfg = res.getConfiguration(); 88 Configuration newCnf = new Configuration(cfg); 89 newCnf.orientation = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE ? 90 Configuration.ORIENTATION_PORTRAIT 91 : Configuration.ORIENTATION_LANDSCAPE; 110 final Configuration cfg = res.getConfiguration(); 111 Configuration newCnf = new Configuration(cfg); 112 newCnf.orientation = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE [all...] |
/external/testng/src/test/java/test/ |
Test2.java | 4 import org.testng.annotations.Configuration; 16 @Configuration(beforeTestMethod = true) 23 @Configuration(beforeTestMethod = true, groups = "excludeThisGroup")
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
RotationUtils.java | 18 import android.content.res.Configuration; 29 Configuration config = context.getResources().getConfiguration(); 42 Configuration config = context.getResources().getConfiguration();
|
/packages/apps/Camera2/src/com/android/camera/app/ |
OrientationManager.java | 3 import android.content.res.Configuration; 10 PORTRAIT(Configuration.ORIENTATION_PORTRAIT), 11 LANDSCAPE(Configuration.ORIENTATION_LANDSCAPE);
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
ConfigMonitor.java | 23 import android.content.res.Configuration; 27 * {@link BroadcastReceiver} which watches configuration changes and 39 Configuration config = context.getResources().getConfiguration(); 46 Configuration config = context.getResources().getConfiguration(); 48 Log.d("ConfigMonitor", "Configuration changed, restarting launcher");
|
/cts/tests/tests/media/src/android/media/cts/ |
VolumeShaperTest.java | 71 private static final VolumeShaper.Configuration SILENCE = 72 new VolumeShaper.Configuration.Builder() 73 .setInterpolatorType(VolumeShaper.Configuration.INTERPOLATOR_TYPE_LINEAR) 80 private static final VolumeShaper.Configuration LINEAR_DUCK = 81 new VolumeShaper.Configuration.Builder() 82 .setInterpolatorType(VolumeShaper.Configuration.INTERPOLATOR_TYPE_LINEAR) 89 private static final VolumeShaper.Configuration LINEAR_RAMP = 90 new VolumeShaper.Configuration.Builder(VolumeShaper.Configuration.LINEAR_RAMP) 94 private static final VolumeShaper.Configuration CUBIC_RAMP 912 final VolumeShaper.Configuration configuration = STEP_RAMP; local [all...] |
/external/deqp/external/vulkancts/scripts/ |
build_mustpass.py | 31 from mustpass import Project, Package, Mustpass, Configuration, include, exclude, genMustpassLists, parseBuildConfigFromCmdLineArgs 56 Configuration(name = "default", 64 Configuration(name = "default", 72 Configuration(name = "default", 80 Configuration(name = "default", 86 Configuration(name = "default-no-waivers",
|
/external/libunwind_llvm/test/libunwind/test/ |
config.py | 12 from libcxx.test.config import Configuration as LibcxxConfiguration 15 class Configuration(LibcxxConfiguration): 18 super(Configuration, self).__init__(lit_config, config) 34 super(Configuration, self).configure_obj_root() 40 super(Configuration, self).configure_features() 54 super(Configuration, self).configure_compile_flags()
|
/build/make/core/combo/arch/arm/ |
armv7-a-neon.mk | 0 # Configuration for Linux on ARM.
|
/build/make/core/combo/arch/mips/ |
mips32r2dsp-fp.mk | 0 # Configuration for Android on MIPS.
|
mips32r2dspr2-fp.mk | 0 # Configuration for Android on MIPS.
|
/build/make/core/combo/arch/mips64/ |
mips64r2.mk | 0 # Configuration for Android on mips64r2.
|
/build/make/core/combo/arch/x86/ |
haswell.mk | 0 # Configuration for Linux on x86.
|
ivybridge.mk | 0 # Configuration for Linux on x86.
|
sandybridge.mk | 0 # Configuration for Linux on x86.
|
/build/make/core/combo/arch/x86_64/ |
haswell.mk | 0 # Configuration for Linux on x86_64.
|
ivybridge.mk | 0 # Configuration for Linux on x86_64.
|
sandybridge.mk | 0 # Configuration for Linux on x86_64.
|
/cts/tests/app/app/src/android/app/stubs/ |
DisplayTestActivity.java | 21 import android.content.res.Configuration; 39 public void onConfigurationChanged(Configuration newConfig) {
|
/cts/tests/tests/widget/src/android/widget/cts/ |
PopupWindowCtsActivity.java | 22 import android.content.res.Configuration; 36 public void onConfigurationChanged(Configuration c) {
|
/developers/build/prebuilts/gradle/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/activities/ |
CustomConfigurationChangeActivity.java | 21 import android.content.res.Configuration; 26 * This activity handles configuration changes itself. The list of configuration changes that are 27 * supported is defined in its AndroidManifest definition. Each configuration change triggers a 28 * call to {@link #onConfigurationChanged(Configuration)}, which is logged in the {@link 45 public void onConfigurationChanged(Configuration newConfig) { 49 Note: The implementation in LoggingActivity logs the output o the new configuration. 50 This callback is received whenever the configuration is updated, for example when the
|
/developers/samples/android/ui/window/MultiWindowPlayground/Application/src/main/java/com/android/multiwindowplayground/activities/ |
CustomConfigurationChangeActivity.java | 21 import android.content.res.Configuration; 26 * This activity handles configuration changes itself. The list of configuration changes that are 27 * supported is defined in its AndroidManifest definition. Each configuration change triggers a 28 * call to {@link #onConfigurationChanged(Configuration)}, which is logged in the {@link 45 public void onConfigurationChanged(Configuration newConfig) { 49 Note: The implementation in LoggingActivity logs the output o the new configuration. 50 This callback is received whenever the configuration is updated, for example when the
|
/development/samples/browseable/MultiWindowPlayground/src/com/android.multiwindowplayground/activities/ |
CustomConfigurationChangeActivity.java | 21 import android.content.res.Configuration; 26 * This activity handles configuration changes itself. The list of configuration changes that are 27 * supported is defined in its AndroidManifest definition. Each configuration change triggers a 28 * call to {@link #onConfigurationChanged(Configuration)}, which is logged in the {@link 45 public void onConfigurationChanged(Configuration newConfig) { 49 Note: The implementation in LoggingActivity logs the output o the new configuration. 50 This callback is received whenever the configuration is updated, for example when the
|
/development/tools/idegen/src/ |
Main.java | 37 Configuration configuration = new Configuration(); local 38 IntelliJ.generateFrom(configuration); 39 Eclipse.generateFrom(configuration);
|
/frameworks/support/work/workmanager-test/src/main/java/androidx/work/test/ |
TestWorkManagerImpl.java | 23 import androidx.work.Configuration; 40 @NonNull Configuration configuration) { 44 super(context, configuration, true);
|