Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
Dheader_policy.cpp52 void HeaderPolicy::readHeaderValueOrQuestionMark(const char *const key, int *outValue, in readHeaderValueOrQuestionMark() argument
56 outValue[0] = '\0'; in readHeaderValueOrQuestionMark()
65 outValue[0] = '?'; in readHeaderValueOrQuestionMark()
66 outValue[1] = '\0'; in readHeaderValueOrQuestionMark()
71 outValue[i] = it->second[i]; in readHeaderValueOrQuestionMark()
73 outValue[terminalIndex] = '\0'; in readHeaderValueOrQuestionMark()
Dheader_policy.h199 int *outValue, int outValueSize) const;
/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/TV/src/com/android/tv/dvr/ui/
DDvrGuidedActionsStylist.java72 TypedValue outValue = new TypedValue(); in initializeIfNeeded() local
74 .getValue(R.dimen.dvr_settings_button_actions_list_width_weight, outValue, true); in initializeIfNeeded()
75 sWidthWeight = outValue.getFloat(); in initializeIfNeeded()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DScrollBarView.java43 TypedValue outValue = new TypedValue(); in ScrollBarView() local
45 android.R.attr.scrollbarThumbHorizontal, outValue, true); in ScrollBarView()
47 context, outValue.resourceId); in ScrollBarView()
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
DCheckBoxItem.java55 TypedValue outValue = new TypedValue(); in onBind() local
58 R.dimen.option_item_check_box_line_spacing_multiplier, outValue, true); in onBind()
62 descriptionTextView.setLineSpacing(0, outValue.getFloat()); in onBind()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DIconUtils.java71 final TypedValue outValue = new TypedValue(); in applyTintAttr() local
72 context.getTheme().resolveAttribute(tintAttrId, outValue, true); in applyTintAttr()
73 return applyTintColor(context, drawableId, outValue.resourceId); in applyTintAttr()
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/utils/
DCarUiUtils.java48 TypedValue outValue = new TypedValue(); in getFloat() local
49 res.getValue(resId, outValue, true); in getFloat()
50 return outValue.getFloat(); in getFloat()
/packages/apps/TV/src/com/android/tv/menu/
DMenuRowView.java85 TypedValue outValue = new TypedValue(); in MenuRowView() local
86 res.getValue(R.dimen.menu_row_title_alpha_deselected, outValue, true); in MenuRowView()
87 mTitleViewAlphaDeselected = outValue.getFloat(); in MenuRowView()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/widget/
DHighlightablePreferenceGroupAdapter.java101 final TypedValue outValue = new TypedValue(); in HighlightablePreferenceGroupAdapter() local
103 outValue, true /* resolveRefs */); in HighlightablePreferenceGroupAdapter()
104 mNormalBackgroundRes = outValue.resourceId; in HighlightablePreferenceGroupAdapter()
/packages/apps/Settings/src/com/android/settings/widget/
DHighlightablePreferenceGroupAdapter.java101 final TypedValue outValue = new TypedValue(); in HighlightablePreferenceGroupAdapter() local
103 outValue, true /* resolveRefs */); in HighlightablePreferenceGroupAdapter()
104 mNormalBackgroundRes = outValue.resourceId; in HighlightablePreferenceGroupAdapter()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java475 TypedValue outValue = new TypedValue();
477 R.dimen.pin_alpha_for_focused_number, outValue, true);
478 sAlphaForFocusedNumber = outValue.getFloat();
480 R.dimen.pin_alpha_for_adjacent_number, outValue, true);
481 sAlphaForAdjacentNumber = outValue.getFloat();
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/
DBluetoothDevicePreference.java76 TypedValue outValue = new TypedValue(); in BluetoothDevicePreference() local
77 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); in BluetoothDevicePreference()
78 sDimAlpha = (int) (outValue.getFloat() * 255); in BluetoothDevicePreference()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDevicePreference.java77 TypedValue outValue = new TypedValue(); in BluetoothDevicePreference() local
78 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); in BluetoothDevicePreference()
79 sDimAlpha = (int) (outValue.getFloat() * 255); in BluetoothDevicePreference()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
Ddictionary_header_structure_policy.h47 virtual void readHeaderValueOrQuestionMark(const char *const key, int *outValue,