HomeSort by relevance Sort by last modified time
    Searched refs:screenSize (Results 1 - 25 of 53) sorted by null

1 2 3

  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryClassTest.java 43 int screenSize = getScreenSize();
44 assertMemoryForScreenDensity(memoryClass, screenDensity, screenSize);
72 private void assertMemoryForScreenDensity(int memoryClass, int screenDensity, int screenSize) {
74 boolean isXLarge = screenSize == Configuration.SCREENLAYOUT_SIZE_XLARGE;
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DeviceInfoInstrument.java 89 String screenSize = getScreenSize();
90 addResult(SCREEN_SIZE, screenSize);
174 String screenSize = String.format("0x%x", screenLayout);
177 screenSize = "small";
181 screenSize = "normal";
185 screenSize = "large";
189 screenSize = "xlarge";
193 screenSize = "undefined";
196 return screenSize;
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 207 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
209 frame.setLocation((screenSize.width - frameSize.width) / 2,
210 (screenSize.height - frameSize.height) / 2);
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocvideo.cpp 409 const TSize screenSize = EpocSdlEnv::WindowSize(TSize(width, height));
410 if(width > screenSize.iWidth || height > screenSize.iHeight)
414 width = screenSize.iWidth;
415 height = screenSize.iHeight;
433 if(width == screenSize.iWidth && height == screenSize.iHeight)
486 Private->iScreenPos.iX = Max(0, (screenSize.iWidth - width) / 2);
487 Private->iScreenPos.iY = Max(0, (screenSize.iHeight - height) / 2);
  /external/jmonkeyengine/engine/src/test/jme3test/
TestChooser.java 424 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
426 if (frameSize.height > screenSize.height) {
427 frameSize.height = screenSize.height;
429 if (frameSize.width > screenSize.width) {
430 frameSize.width = screenSize.width;
432 this.setLocation((screenSize.width - frameSize.width) / 2,
433 (screenSize.height - frameSize.height) / 2);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderAction.java 34 import com.android.resources.ScreenSize;
315 ScreenSize screenSize = hardwareConfig.getScreenSize();
316 if (screenSize != null) {
317 switch (screenSize) {
  /frameworks/base/native/android/
configuration.cpp 185 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize) {
187 | (screenSize&ResTable_config::MASK_SCREENSIZE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationDescription.java 39 import com.android.resources.ScreenSize;
328 ScreenSize screenSize = null;
335 screenSize = qualifier.getValue();
344 String defaultTheme = manifest.getDefaultTheme(target, screenSize);
  /development/ndk/platforms/android-9/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/5/platforms/android-9/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/6/platforms/android-9/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/android/
configuration.h 256 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /frameworks/native/include/android/
configuration.h 274 void AConfiguration_setScreenSize(AConfiguration* config, int32_t screenSize);
  /frameworks/base/tools/aapt/
AaptAssets.cpp 294 *value = config.screenSize;
340 return config.screenSize;
697 this->screenSize = size;
746 s += screenSize;
864 if (this->screenSize != "") {
868 s += screenSize;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java     [all...]

Completed in 405 milliseconds

1 2 3