Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/src/com/android/settings/core/
H A DPreferenceXmlParserUtils.java308 private static String getKey(TypedArray styledAttributes) { in getKey() argument
312 private static String getTitle(TypedArray styledAttributes) { in getTitle() argument
316 private static String getSummary(TypedArray styledAttributes) { in getSummary() argument
320 private static String getController(TypedArray styledAttributes) { in getController() argument
328 private static int getIcon(TypedArray styledAttributes) { in getIcon() argument
332 private static boolean isSearchable(TypedArray styledAttributes) { in isSearchable() argument
336 private static String getKeywords(TypedArray styledAttributes) { in getKeywords() argument
340 private static boolean isAppended(TypedArray styledAttributes) { in isAppended() argument
346 return styledAttributes.getString( in getUnavailableSliceSubtitle()
350 private static boolean isForWork(TypedArray styledAttributes) { in isForWork() argument
[all …]
/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DPreferenceXmlParser.java140 private static String getKey(TypedArray styledAttributes) { in getKey() argument
141 return styledAttributes.getString(com.android.internal.R.styleable.Preference_key); in getKey()
144 private static String getController(TypedArray styledAttributes) { in getController() argument
145 return styledAttributes.getString(R.styleable.Preference_controller); in getController()
148 private static boolean isSearchable(TypedArray styledAttributes) { in isSearchable() argument
149 return styledAttributes.getBoolean(R.styleable.Preference_searchable, true); in isSearchable()
/aosp12/frameworks/base/core/java/android/animation/
H A DAnimatorInflater.java275 TypedValue tvFrom = styledAttributes.peekValue(valueFromId); in getPVH()
278 TypedValue tvTo = styledAttributes.peekValue(valueToId); in getPVH()
296 String fromString = styledAttributes.getString(valueFromId); in getPVH()
297 String toString = styledAttributes.getString(valueToId); in getPVH()
354 valueTo = styledAttributes.getFloat(valueToId, 0f); in getPVH()
365 valueFrom = styledAttributes.getColor(valueFromId, 0); in getPVH()
367 valueFrom = styledAttributes.getInt(valueFromId, 0); in getPVH()
375 valueTo = styledAttributes.getInt(valueToId, 0); in getPVH()
388 valueTo = styledAttributes.getInt(valueToId, 0); in getPVH()
798 TypedValue tvFrom = styledAttributes.peekValue(valueFromId); in inferValueTypeFromValues()
[all …]
/aosp12/frameworks/base/core/java/android/widget/
H A DQuickContactBadge.java96 TypedArray styledAttributes = mContext.obtainStyledAttributes(R.styleable.Theme); in QuickContactBadge() local
97 mOverlay = styledAttributes.getDrawable( in QuickContactBadge()
99 styledAttributes.recycle(); in QuickContactBadge()
H A DEditor.java7064 TypedArray styledAttributes = mView.getContext().obtainStyledAttributes( in getResourceId() local
7066 currentId = styledAttributes.getResourceId(index, 0); in getResourceId()
7067 styledAttributes.recycle(); in getResourceId()