Home
last modified time | relevance | path

Searched refs:isRtlSupported (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayout.java162 navBar = createNavBar(getContext(), density, isRtl, getParams().isRtlSupported(), in Layout()
167 statusBar = createStatusBar(getContext(), density, isRtl, getParams().isRtlSupported(), in Layout()
267 boolean isRtlSupported, int simulatedPlatformVersion) { in createStatusBar() argument
269 new StatusBar(context, density, isRtl, isRtlSupported, simulatedPlatformVersion); in createStatusBar()
346 boolean isRtlSupported, int simulatedPlatformVersion, boolean isQuickStepEnabled) { in createNavBar() argument
353 new NavigationBar(context, density, orientation, isRtl, isRtlSupported, in createNavBar()
H A DRenderAction.java132 mParams.getTargetSdkVersion(), mParams.isRtlSupported(), in init()
H A DRenderSessionImpl.java297 if (!params.isRtlSupported()) { in inflate()
/aosp12/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
H A DRemoteRenderParamsAdapter.java149 public boolean isRtlSupported() { in isRtlSupported() method in RemoteRenderParamsAdapter
150 return mDelegate.isRtlSupported(); in isRtlSupported()
/aosp12/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeContextTest.java59 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in basic()
106 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in checkNoErrorWhenUsingDefaults()
/aosp12/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
H A DRemoteRenderParams.java61 boolean isRtlSupported() throws RemoteException; in isRtlSupported() method
/aosp12/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
H A DRenderTests.java806 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in testGetResourceNameVariants()
848 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in testStringEscaping()
961 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in testTypedValue()
1039 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in testColorStateList()
1148 params.getTargetSdkVersion(), params.isRtlSupported(), true, true); in testResourcesGetIdentifier()
/aosp12/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/
H A DRemoteBridgeImpl.java85 params.setRtlSupport(remoteParams.isRtlSupported()); in setupRenderParams()