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

/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAlertDialog.java268 * @param attrId ID of a theme attribute that points to a drawable resource.
270 public void setIconAttribute(int attrId) { argument
272 getContext().getTheme().resolveAttribute(attrId, out, true);
456 * @param attrId ID of a theme attribute that points to a drawable resource.
458 public Builder setIconAttribute(@AttrRes int attrId) { argument
460 P.mContext.getTheme().resolveAttribute(attrId, out, true);
H A DAlertController.java392 * @param attrId the attributeId of the theme-specific drawable
397 public int getIconAttributeResId(int attrId) { argument
399 mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/base/core/java/android/app/
H A DAlertDialog.java421 * @param attrId ID of a theme attribute that points to a drawable resource.
423 public void setIconAttribute(@AttrRes int attrId) { argument
425 mContext.getTheme().resolveAttribute(attrId, out, true);
606 * @param attrId ID of a theme attribute that points to a drawable resource.
608 public Builder setIconAttribute(@AttrRes int attrId) { argument
610 P.mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DGuidedActionsStylist.java966 int attrId = action.getCheckSetId() == GuidedAction.CHECKBOX_CHECK_SET_ID
972 if (context.getTheme().resolveAttribute(attrId, typedValue, true)) {
1503 private float getFloat(Context ctx, TypedValue typedValue, int attrId) { argument
1504 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
1509 private int getInteger(Context ctx, TypedValue typedValue, int attrId) { argument
1510 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
1514 private int getDimension(Context ctx, TypedValue typedValue, int attrId) { argument
1515 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java434 * @param attrId the attributeId of the theme-specific drawable
439 public int getIconAttributeResId(int attrId) { argument
441 mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4468 int ResourceTable::getPublicAttributeSdkLevel(uint32_t attrId) const {
4469 if (Res_GETPACKAGE(attrId) + 1 != 0x01 || Res_GETTYPE(attrId) + 1 != 0x01) {
4474 if (!mAssets->getIncludedResources().getResourceFlags(attrId, &specFlags)) {
4482 const size_t entryId = Res_GETENTRY(attrId);
4666 const uint32_t attrId = getResId(bag.keyAt(bi), &attr16); local
4667 const int sdkLevel = getPublicAttributeSdkLevel(attrId);
H A DResourceTable.h616 int getPublicAttributeSdkLevel(uint32_t attrId) const;

Completed in 484 milliseconds