Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/util/
DThemeUtils.java30 final TypedValue outValue = new TypedValue(); in getAttribute() local
31 theme.resolveAttribute(attrId, outValue, true); in getAttribute()
32 return outValue.resourceId; in getAttribute()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DScrollBarView.java40 TypedValue outValue = new TypedValue(); in ScrollBarView() local
42 android.R.attr.scrollbarThumbHorizontal, outValue, true); in ScrollBarView()
44 context, outValue.resourceId); in ScrollBarView()
/packages/apps/Settings/src/com/android/settings/quicklaunch/
DShortcutPreference.java59 TypedValue outValue = new TypedValue(); in ShortcutPreference() local
60 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); in ShortcutPreference()
61 sDimAlpha = (int) (outValue.getFloat() * 255); in ShortcutPreference()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDevicePreference.java61 TypedValue outValue = new TypedValue(); in BluetoothDevicePreference() local
62 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); in BluetoothDevicePreference()
63 sDimAlpha = (int) (outValue.getFloat() * 255); in BluetoothDevicePreference()
/packages/apps/Browser/src/com/android/browser/
DBreadCrumbView.java173 TypedValue outValue = new TypedValue(); in addBackButton() local
175 android.R.attr.selectableItemBackground, outValue, true); in addBackButton()
176 int resid = outValue.resourceId; in addBackButton()