Home
last modified time | relevance | path

Searched refs:daj (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DDisplayAdjustments.java49 public DisplayAdjustments(@NonNull DisplayAdjustments daj) { in DisplayAdjustments() argument
50 setCompatibilityInfo(daj.mCompatInfo); in DisplayAdjustments()
51 mConfiguration.setTo(daj.getConfiguration()); in DisplayAdjustments()
52 mFixedRotationAdjustments = daj.mFixedRotationAdjustments; in DisplayAdjustments()
192 DisplayAdjustments daj = (DisplayAdjustments)o; in equals() local
193 return Objects.equals(daj.mCompatInfo, mCompatInfo) in equals()
194 && Objects.equals(daj.mConfiguration, mConfiguration) in equals()
195 && Objects.equals(daj.mFixedRotationAdjustments, mFixedRotationAdjustments); in equals()
DDisplay.java504 DisplayAdjustments daj) { in Display() argument
505 this(global, displayId, displayInfo, daj, null /*res*/); in Display()
521 /*@NotNull*/ DisplayInfo displayInfo, DisplayAdjustments daj, Resources res) { in Display() argument
528 : daj != null ? new DisplayAdjustments(daj) : new DisplayAdjustments(); in Display()
/frameworks/base/core/java/android/app/
DResourcesManager.java617 final DisplayAdjustments daj = new DisplayAdjustments(key.mOverrideConfiguration); in createResourcesImpl() local
618 daj.setCompatibilityInfo(key.mCompatInfo); in createResourcesImpl()
621 final DisplayMetrics displayMetrics = getDisplayMetrics(generateDisplayId(key), daj); in createResourcesImpl()
622 final ResourcesImpl impl = new ResourcesImpl(assets, displayMetrics, config, daj); in createResourcesImpl()
920 DisplayAdjustments daj = new DisplayAdjustments(key.mOverrideConfiguration); in rebaseKeyForDisplay() local
921 daj.setCompatibilityInfo(key.mCompatInfo); in rebaseKeyForDisplay()
923 final DisplayMetrics dm = getDisplayMetrics(overrideDisplay, daj); in rebaseKeyForDisplay()
1396 DisplayAdjustments daj = resourcesImpl.getDisplayAdjustments(); in applyConfigurationToResourcesLocked() local
1398 daj = new DisplayAdjustments(daj); in applyConfigurationToResourcesLocked()
1399 daj.setCompatibilityInfo(compat); in applyConfigurationToResourcesLocked()
[all …]
/frameworks/base/core/java/android/hardware/display/
DDisplayManagerGlobal.java251 public Display getCompatibleDisplay(int displayId, DisplayAdjustments daj) { in getCompatibleDisplay() argument
256 return new Display(this, displayId, displayInfo, daj); in getCompatibleDisplay()
/frameworks/base/core/tests/coretests/src/android/content/res/
DResourcesManagerTest.java84 protected DisplayMetrics getDisplayMetrics(int displayId, DisplayAdjustments daj) { in setUp()