Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
DKeyboardIconsSet.java98 final Integer attrId = (Integer)NAMES_AND_ATTR_IDS[i + 1];
99 if (attrId != ATTR_UNDEFINED) {
100 ATTR_ID_TO_ICON_ID.put(attrId, iconId); in ATTR_ID_TO_ICON_ID.put() argument
111 final int attrId = ATTR_ID_TO_ICON_ID.keyAt(index); in loadIcons() local
113 final Drawable icon = keyboardAttrs.getDrawable(attrId); in loadIcons()
115 final Integer iconId = ATTR_ID_TO_ICON_ID.get(attrId); in loadIcons()
117 mIconResourceIds[iconId] = keyboardAttrs.getResourceId(attrId, 0); in loadIcons()
120 + keyboardAttrs.getResources().getResourceEntryName(attrId) in loadIcons()
DKeyVisualAttributes.java79 for (final int attrId : VISUAL_ATTRIBUTE_IDS) {
80 sVisualAttributeIds.put(attrId, ATTR_DEFINED); in sVisualAttributeIds.put() argument
87 final int attrId = keyAttr.getIndex(i); in newInstance() local
88 if (sVisualAttributeIds.get(attrId, ATTR_NOT_FOUND) == ATTR_NOT_FOUND) { in newInstance()
/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/avrcp/
DAvrcp.java697 private String getAttributeString(int attrId) { in getAttributeString() argument
699 switch (attrId) { in getAttributeString()
722 if (DEBUG) Log.v(TAG, "getAttributeString:attrId=" + attrId + " str=" + attrStr); in getAttributeString()