Searched defs:attrId (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/app/
H A DAlertDialog.java408 * @param attrId ID of a theme attribute that points to a drawable resource.
410 public void setIconAttribute(@AttrRes int attrId) { argument
412 mContext.getTheme().resolveAttribute(attrId, out, true);
593 * @param attrId ID of a theme attribute that points to a drawable resource.
595 public Builder setIconAttribute(@AttrRes int attrId) { argument
597 P.mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertDialog.java247 * @param attrId ID of a theme attribute that points to a drawable resource.
249 public void setIconAttribute(int attrId) { argument
251 getContext().getTheme().resolveAttribute(attrId, out, true);
435 * @param attrId ID of a theme attribute that points to a drawable resource.
437 public Builder setIconAttribute(@AttrRes int attrId) { argument
439 P.mContext.getTheme().resolveAttribute(attrId, out, true);
H A DAlertController.java369 * @param attrId the attributeId of the theme-specific drawable
374 public int getIconAttributeResId(int attrId) { argument
376 mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java408 * @param attrId the attributeId of the theme-specific drawable
413 public int getIconAttributeResId(int attrId) { argument
415 mContext.getTheme().resolveAttribute(attrId, out, true);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGuidedActionsStylist.java830 int attrId = action.getCheckSetId() == GuidedAction.CHECKBOX_CHECK_SET_ID ?
836 if (context.getTheme().resolveAttribute(attrId, typedValue, true)) {
1229 private float getFloat(Context ctx, TypedValue typedValue, int attrId) { argument
1230 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
1235 private int getInteger(Context ctx, TypedValue typedValue, int attrId) { argument
1236 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
1240 private int getDimension(Context ctx, TypedValue typedValue, int attrId) { argument
1241 ctx.getTheme().resolveAttribute(attrId, typedValue, true);
1245 private static Animator createAnimator(View v, int attrId) { argument
1248 ctx.getTheme().resolveAttribute(attrId, typedValu
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp4455 int ResourceTable::getPublicAttributeSdkLevel(uint32_t attrId) const {
4456 if (Res_GETPACKAGE(attrId) + 1 != 0x01 || Res_GETTYPE(attrId) + 1 != 0x01) {
4461 if (!mAssets->getIncludedResources().getResourceFlags(attrId, &specFlags)) {
4469 const size_t entryId = Res_GETENTRY(attrId);
4653 const uint32_t attrId = getResId(bag.keyAt(bi), &attr16); local
4654 const int sdkLevel = getPublicAttributeSdkLevel(attrId);

Completed in 276 milliseconds