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

1 2

  /frameworks/support/compat/honeycomb_mr2/android/support/v4/content/res/
ConfigurationHelperHoneycombMr2.java 26 return resources.getConfiguration().screenHeightDp;
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 44 jfieldID screenHeightDp;
70 out->screenHeightDp = env->GetIntField(clazz, gConfigurationClassInfo.screenHeightDp);
93 gConfigurationClassInfo.screenHeightDp = GetFieldIDOrDie(env, clazz, "screenHeightDp", "I");
android_util_AssetManager.cpp 631 env->SetIntField(result, gConfigurationOffsets.mScreenHeightDpOffset, config.screenHeightDp);
679 jint screenWidthDp, jint screenHeightDp,
709 config.screenHeightDp = (uint16_t)screenHeightDp;
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
ActionBarPolicy.java 50 final int height = config.screenHeightDp;
83 final int height = configuration.screenHeightDp;
  /cts/hostsidetests/services/activitymanager/app/src/android/server/app/
AbstractLifecycleLogActivity.java 58 " size=" + buildCoordString(config.screenWidthDp, config.screenHeightDp) +
  /frameworks/base/core/java/android/content/res/
Configuration.java 602 * Default value for {@link #screenHeightDp} indicating that no width
614 public int screenHeightDp;
627 * This is the smallest value of both screenWidthDp and screenHeightDp
    [all...]
AssetManager.java 758 int smallestScreenWidthDp, int screenWidthDp, int screenHeightDp,
CompatibilityInfo.java 460 inoutConfig.screenHeightDp = inoutConfig.compatScreenHeightDp;
ResourcesImpl.java 415 mConfiguration.screenWidthDp, mConfiguration.screenHeightDp,
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderAction.java 352 config.screenHeightDp = hardwareConfig.getScreenHeight() / density.getDpiValue();
353 if (config.screenHeightDp < config.screenWidthDp) {
355 config.smallestScreenWidthDp = config.screenHeightDp;
363 config.compatScreenHeightDp = config.screenHeightDp;
  /frameworks/base/native/android/
configuration.cpp 123 return config->screenHeightDp;
220 config->screenHeightDp = value;
  /frameworks/base/core/java/com/android/internal/widget/
ButtonBarLayout.java 50 context.getResources().getConfiguration().screenHeightDp
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
InCallActivity.java 368 newConfig.screenWidthDp, newConfig.screenHeightDp,
369 oldConfig.screenWidthDp, oldConfig.screenHeightDp));
372 if (oldConfig.screenHeightDp < SCREEN_HEIGHT_RESIZE_THRESHOLD &&
373 newConfig.screenHeightDp > SCREEN_HEIGHT_RESIZE_THRESHOLD ||
374 oldConfig.screenHeightDp > SCREEN_HEIGHT_RESIZE_THRESHOLD &&
375 newConfig.screenHeightDp < SCREEN_HEIGHT_RESIZE_THRESHOLD) {
    [all...]
  /frameworks/base/tools/aapt2/
ConfigDescription.cpp 534 out->screenHeightDp = out->SCREENWIDTH_ANY;
547 out->screenHeightDp = (uint16_t)atoi(xName.c_str());
766 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
  /frameworks/base/core/java/android/app/
ResourcesManager.java 176 config.screenHeightDp = (int) (dm.heightPixels / dm.density);
181 config.screenWidthDp, config.screenHeightDp);
185 config.screenHeightDp, config.screenWidthDp);
189 config.compatScreenHeightDp = config.screenHeightDp;
    [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 542 && configuration.screenHeightDp != Configuration.SCREEN_HEIGHT_DP_UNDEFINED)
543 ? (int)((configuration.screenHeightDp * outMetrics.density) + 0.5f) : height;
  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 107 final int height = configuration.screenHeightDp;
  /frameworks/base/tools/aapt/
AaptConfig.cpp 258 || config->screenHeightDp != ResTable_config::SCREENHEIGHT_ANY) {
773 out->screenHeightDp = out->SCREENWIDTH_ANY;
786 out->screenHeightDp = (uint16_t)atoi(xName.string());
  /frameworks/base/services/core/java/com/android/server/am/
TaskRecord.java     [all...]
ActivityStack.java     [all...]
  /packages/apps/DevCamera/src/com/android/devcamera/
CameraDeviceReport.java 379 Log.v(TAG, "screen height dp = " + activity.getResources().getConfiguration().screenHeightDp);
  /frameworks/base/include/androidfw/
ResourceTypes.h     [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 212 config.screenHeightDp = (int)
    [all...]
  /frameworks/base/core/java/android/widget/
SearchView.java     [all...]

Completed in 1096 milliseconds

1 2