Home
last modified time | relevance | path

Searched refs:outValue (Results 1 – 7 of 7) sorted by relevance

/appcompat/appcompat-resources/src/main/java/androidx/appcompat/widget/
DResourcesWrapper.java231 public void getValue(int id, TypedValue outValue, boolean resolveRefs) in getValue() argument
233 mResources.getValue(id, outValue, resolveRefs); in getValue()
237 public void getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs) in getValueForDensity() argument
239 mResources.getValueForDensity(id, density, outValue, resolveRefs); in getValueForDensity()
243 public void getValue(String name, TypedValue outValue, boolean resolveRefs) in getValue() argument
245 mResources.getValue(name, outValue, resolveRefs); in getValue()
/appcompat/appcompat/src/main/java/androidx/appcompat/app/
DAppCompatDialog.java199 TypedValue outValue = new TypedValue(); in getThemeResId() local
200 context.getTheme().resolveAttribute(R.attr.dialogTheme, outValue, true); in getThemeResId()
201 themeId = outValue.resourceId; in getThemeResId()
DAppCompatDelegateImpl.java945 TypedValue outValue = new TypedValue();
946 mContext.getTheme().resolveAttribute(R.attr.actionBarTheme, outValue, true);
949 if (outValue.resourceId != 0) {
950 themedContext = new ContextThemeWrapper(mContext, outValue.resourceId);
1312 final TypedValue outValue = new TypedValue();
1314 baseTheme.resolveAttribute(R.attr.actionBarTheme, outValue, true);
1317 if (outValue.resourceId != 0) {
1320 actionBarTheme.applyStyle(outValue.resourceId, true);
1337 R.attr.actionBarSize, outValue, true);
1338 final int height = TypedValue.complexToDimensionPixelSize(outValue.data,
[all …]
DAlertDialog.java115 TypedValue outValue = new TypedValue(); in resolveDialogTheme() local
116 context.getTheme().resolveAttribute(R.attr.alertDialogTheme, outValue, true); in resolveDialogTheme()
117 return outValue.resourceId; in resolveDialogTheme()
DAlertController.java178 final TypedValue outValue = new TypedValue(); in shouldCenterSingleButton() local
179 context.getTheme().resolveAttribute(R.attr.alertDialogCenterButtons, outValue, true); in shouldCenterSingleButton()
180 return outValue.data != 0; in shouldCenterSingleButton()
DWindowDecorActionBar.java917 TypedValue outValue = new TypedValue(); in getThemedContext() local
919 currentTheme.resolveAttribute(R.attr.actionBarWidgetTheme, outValue, true); in getThemedContext()
920 final int targetThemeRes = outValue.resourceId; in getThemedContext()
/appcompat/appcompat/src/main/java/androidx/appcompat/widget/
DTintTypedArray.java222 public boolean getValue(int index, TypedValue outValue) { in getValue() argument
223 return mWrapped.getValue(index, outValue); in getValue()