Home
last modified time | relevance | path

Searched refs:outValue (Results 1 – 13 of 13) 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/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
DSettingsShadowResources.java210 public boolean resolveAttribute(int resid, TypedValue outValue, boolean resolveRefs) { in resolveAttribute() argument
218 outValue.type = TYPE_REFERENCE; in resolveAttribute()
219 outValue.data = preferenceThemeResId; in resolveAttribute()
220 outValue.resourceId = preferenceThemeResId; in resolveAttribute()
224 .resolveAttribute(resid, outValue, resolveRefs); in resolveAttribute()
/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.java73 TypedValue outValue = new TypedValue(); in initializeIfNeeded() local
75 outValue, true); in initializeIfNeeded()
76 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.java56 TypedValue outValue = new TypedValue(); in onBind() local
58 outValue, true); in onBind()
62 descriptionTextView.setLineSpacing(0, outValue.getFloat()); in onBind()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DIconUtils.java63 final TypedValue outValue = new TypedValue(); in applyTintAttr() local
64 context.getTheme().resolveAttribute(tintAttrId, outValue, true); in applyTintAttr()
65 return applyTintColor(context, drawableId, outValue.resourceId); in applyTintAttr()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java430 TypedValue outValue = new TypedValue();
432 R.dimen.pin_alpha_for_focused_number, outValue, true);
433 sAlphaForFocusedNumber = outValue.getFloat();
435 R.dimen.pin_alpha_for_adjacent_number, outValue, true);
436 sAlphaForAdjacentNumber = outValue.getFloat();
/packages/apps/TV/src/com/android/tv/menu/
DMenuRowView.java87 TypedValue outValue = new TypedValue(); in MenuRowView() local
88 res.getValue(R.dimen.menu_row_title_alpha_deselected, outValue, true); in MenuRowView()
89 mTitleViewAlphaDeselected = outValue.getFloat(); in MenuRowView()
/packages/apps/TV/src/com/android/tv/dialog/
DPinDialogFragment.java546 TypedValue outValue = new TypedValue();
548 R.dimen.pin_alpha_for_focused_number, outValue, true);
549 sAlphaForFocusedNumber = outValue.getFloat();
551 R.dimen.pin_alpha_for_adjacent_number, outValue, true);
552 sAlphaForAdjacentNumber = outValue.getFloat();
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDevicePreference.java70 TypedValue outValue = new TypedValue(); in BluetoothDevicePreference() local
71 context.getTheme().resolveAttribute(android.R.attr.disabledAlpha, outValue, true); in BluetoothDevicePreference()
72 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,