Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardIconsSet.java101 final Integer attrId = (Integer)NAMES_AND_ATTR_IDS[i + 1];
102 if (attrId != ATTR_UNDEFINED) {
103 ATTR_ID_TO_ICON_ID.put(attrId, iconId); in ATTR_ID_TO_ICON_ID.put() argument
114 final int attrId = ATTR_ID_TO_ICON_ID.keyAt(index); in loadIcons() local
116 final Drawable icon = keyboardAttrs.getDrawable(attrId); in loadIcons()
118 final Integer iconId = ATTR_ID_TO_ICON_ID.get(attrId); in loadIcons()
120 mIconResourceIds[iconId] = keyboardAttrs.getResourceId(attrId, 0); in loadIcons()
123 + keyboardAttrs.getResources().getResourceEntryName(attrId) in loadIcons()
DKeyVisualAttributes.java83 for (final int attrId : VISUAL_ATTRIBUTE_IDS) {
84 sVisualAttributeIds.put(attrId, ATTR_DEFINED); in sVisualAttributeIds.put() argument
92 final int attrId = keyAttr.getIndex(i); in newInstance() local
93 if (sVisualAttributeIds.get(attrId, ATTR_NOT_FOUND) == ATTR_NOT_FOUND) { in newInstance()
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/
DPlayerApplicationSettings.java74 byte attrId = btAvrcpAttributeList[i++]; in makeSupportedSettings()
81 mapAttribIdValtoAvrcpPlayerSetting(attrId, btAvrcpAttributeList[i++])); in makeSupportedSettings()
83 newObj.mSupportedValues.put(attrId, supportedValues); in makeSupportedSettings()
95 byte attrId = btAvrcpAttributeList[i++]; in makeSettings()
97 newObj.mSettings.put(attrId, in makeSettings()
98 mapAttribIdValtoAvrcpPlayerSetting(attrId, btAvrcpAttributeList[i++])); in makeSettings()
/packages/apps/Contacts/src/com/android/contacts/util/
DThemeUtils.java29 public static int getAttribute(Theme theme, int attrId) { in getAttribute() argument
31 theme.resolveAttribute(attrId, outValue, true); in getAttribute()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DXmlParseUtils.java74 public static void checkAttributeExists(final TypedArray attr, final int attrId, in checkAttributeExists() argument
77 if (attr.hasValue(attrId)) { in checkAttributeExists()
/packages/apps/Bluetooth/src/com/android/bluetooth/
DAlertActivity.java92 protected void changeIconAttribute(int attrId) { in changeIconAttribute() argument
94 mAlert.setIconAttribute(attrId); in changeIconAttribute()
/packages/apps/Car/libs/car-ui-lib/src/com/android/car/ui/
DAlertDialogBuilder.java168 public AlertDialogBuilder setIconAttribute(@AttrRes int attrId) { in setIconAttribute() argument
169 mBuilder.setIconAttribute(attrId); in setIconAttribute()