/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/ |
D | header_policy.cpp | 52 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()
|
D | header_policy.h | 199 int *outValue, int outValueSize) const;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/ |
D | SettingsShadowResources.java | 210 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/ |
D | ThemeUtils.java | 30 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/ |
D | DvrGuidedActionsStylist.java | 73 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/ |
D | ScrollBarView.java | 43 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/ |
D | CheckBoxItem.java | 56 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/ |
D | IconUtils.java | 63 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/ |
D | PinDialogFragment.java | 430 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/ |
D | MenuRowView.java | 87 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/ |
D | PinDialogFragment.java | 546 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/ |
D | BluetoothDevicePreference.java | 70 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/ |
D | dictionary_header_structure_policy.h | 47 virtual void readHeaderValueOrQuestionMark(const char *const key, int *outValue,
|