/frameworks/base/core/java/android/content/res/ |
D | Configuration.java | 533 public int smallestScreenWidthDp; field in Configuration 641 smallestScreenWidthDp = o.smallestScreenWidthDp; in setTo() 680 if (smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED) { in toString() 681 sb.append(" sw"); sb.append(smallestScreenWidthDp); sb.append("dp"); in toString() 806 smallestScreenWidthDp = compatSmallestScreenWidthDp = SMALLEST_SCREEN_WIDTH_DP_UNDEFINED; in setToDefaults() 929 if (delta.smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED in updateFrom() 930 && smallestScreenWidthDp != delta.smallestScreenWidthDp) { in updateFrom() 932 smallestScreenWidthDp = delta.smallestScreenWidthDp; in updateFrom() 1053 if (delta.smallestScreenWidthDp != SMALLEST_SCREEN_WIDTH_DP_UNDEFINED in diff() 1054 && smallestScreenWidthDp != delta.smallestScreenWidthDp) { in diff() [all …]
|
D | CompatibilityInfo.java | 461 inoutConfig.smallestScreenWidthDp = inoutConfig.compatSmallestScreenWidthDp; in applyToConfiguration()
|
D | AssetManager.java | 680 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp, in setConfiguration() argument
|
D | Resources.java | 1816 mConfiguration.smallestScreenWidthDp, in updateConfiguration()
|
/frameworks/base/core/jni/ |
D | android_content_res_Configuration.cpp | 43 jfieldID smallestScreenWidthDp; member 69 out->smallestScreenWidthDp = env->GetIntField(clazz, in android_Configuration_getFromJava() 70 gConfigurationClassInfo.smallestScreenWidthDp); in android_Configuration_getFromJava() 114 GET_FIELD_ID(gConfigurationClassInfo.smallestScreenWidthDp, clazz, in register_android_content_res_Configuration()
|
D | android_util_AssetManager.cpp | 601 jint smallestScreenWidthDp, in android_content_AssetManager_setConfiguration() argument 626 config.smallestScreenWidthDp = (uint16_t)smallestScreenWidthDp; in android_content_AssetManager_setConfiguration()
|
/frameworks/base/tools/aapt/ |
D | ResourceFilter.cpp | 80 if (config.smallestScreenWidthDp != 0 && in match() 81 config.smallestScreenWidthDp < entry.first.smallestScreenWidthDp) { in match()
|
D | AaptConfig.cpp | 243 if (config->smallestScreenWidthDp != ResTable_config::SCREENWIDTH_ANY in applyVersionForCompatibility() 697 out->smallestScreenWidthDp = out->SCREENWIDTH_ANY; in parseSmallestScreenWidthDp() 712 out->smallestScreenWidthDp = (uint16_t)atoi(xName.string()); in parseSmallestScreenWidthDp()
|
D | ResourceTable.cpp | 3010 config.smallestScreenWidthDp, in flatten() 3053 tHeader->config.smallestScreenWidthDp, in flatten() 3780 config->smallestScreenWidthDp, in getEntry()
|
D | Command.cpp | 619 config.smallestScreenWidthDp = 320; in doDump()
|
/frameworks/base/tools/aapt/tests/ |
D | ResourceFilter_test.cpp | 107 config.smallestScreenWidthDp = 600; in TEST() 120 config.smallestScreenWidthDp = 320; in TEST() 147 config.smallestScreenWidthDp = 600; in TEST()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | CompatModePackages.java | 173 mService.mConfiguration.smallestScreenWidthDp, in compatibilityInfoForPackageLocked() 183 mService.mConfiguration.smallestScreenWidthDp, enabled); in computeCompatModeLocked() 370 final int smallestScreenWidthDp = mService.mConfiguration.smallestScreenWidthDp; in saveCompatModes() local 388 smallestScreenWidthDp, false); in saveCompatModes()
|
/frameworks/base/native/android/ |
D | configuration.cpp | 123 return config->smallestScreenWidthDp; in AConfiguration_getSmallestScreenWidthDp() 215 config->smallestScreenWidthDp = value; in AConfiguration_setSmallestScreenWidthDp()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | RenderAction.java | 350 config.smallestScreenWidthDp = config.screenHeightDp; in getConfiguration() 352 config.smallestScreenWidthDp = config.screenWidthDp; in getConfiguration()
|
/frameworks/base/core/java/android/app/ |
D | ResourcesManager.java | 128 config.smallestScreenWidthDp = config.screenWidthDp; // assume screen does not rotate in applyNonDefaultDisplayMetricsToConfigurationLocked() 131 config.compatSmallestScreenWidthDp = config.smallestScreenWidthDp; in applyNonDefaultDisplayMetricsToConfigurationLocked()
|
D | ActivityManager.java | 2352 final int sw = res.getConfiguration().smallestScreenWidthDp; in getLauncherLargeIconDensity() 2392 final int sw = res.getConfiguration().smallestScreenWidthDp; in getLauncherLargeIconSizeInner()
|
/frameworks/base/libs/androidfw/ |
D | ResourceTypes.cpp | 1767 smallestScreenWidthDp = dtohs(smallestScreenWidthDp); in copyFromDtoH() 1781 smallestScreenWidthDp = htods(smallestScreenWidthDp); in swapHtoD() 1823 diff = (int32_t)(smallestScreenWidthDp - o.smallestScreenWidthDp); in compare() 1848 if (smallestScreenWidthDp != o.smallestScreenWidthDp) { in compareLogical() 1849 return smallestScreenWidthDp < o.smallestScreenWidthDp ? -1 : 1; in compareLogical() 1903 if (smallestScreenWidthDp != o.smallestScreenWidthDp) diffs |= CONFIG_SMALLEST_SCREEN_SIZE; in diff() 1977 if (smallestScreenWidthDp || o.smallestScreenWidthDp) { in isMoreSpecificThan() 1978 if (smallestScreenWidthDp != o.smallestScreenWidthDp) { in isMoreSpecificThan() 1979 if (!smallestScreenWidthDp) return false; in isMoreSpecificThan() 1980 if (!o.smallestScreenWidthDp) return true; in isMoreSpecificThan() [all …]
|
/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/ |
D | DpiTestActivity.java | 67 getResources().getConfiguration().smallestScreenWidthDp, false)); in init()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
D | WallpaperCropActivity.java | 354 return config.smallestScreenWidthDp >= 720; in isScreenLarge()
|
/frameworks/base/include/androidfw/ |
D | ResourceTypes.h | 1092 uint16_t smallestScreenWidthDp; member
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | providing-resources.jd | 407 android.content.res.Configuration#smallestScreenWidthDp} configuration field, which holds the
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowManagerService.java | 7041 outConfig.smallestScreenWidthDp = (int)(displayInfo.smallestNominalAppWidth / density); in computeSizeRangesAndScreenLayout()
|
/frameworks/base/api/ |
D | current.txt | 9136 field public int smallestScreenWidthDp;
|