Searched defs:attrs (Results 201 - 225 of 512) sorted by path

1234567891011>>

/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java217 public GlowPadView(Context context, AttributeSet attrs) { argument
218 super(context, attrs);
221 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.GlowPadView);
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp1032 jintArray attrs,
1040 if (attrs == NULL) {
1041 jniThrowNullPointerException(env, "attrs");
1057 const jsize NI = env->GetArrayLength(attrs);
1064 jint* src = (jint*)env->GetPrimitiveArrayCritical(attrs, 0);
1075 env->ReleasePrimitiveArrayCritical(attrs, src, 0);
1212 env->ReleasePrimitiveArrayCritical(attrs, src, 0);
1222 jintArray attrs,
1230 if (attrs == NULL) {
1231 jniThrowNullPointerException(env, "attrs");
1027 android_content_AssetManager_resolveAttrs(JNIEnv* env, jobject clazz, jlong themeToken, jint defStyleAttr, jint defStyleRes, jintArray inValues, jintArray attrs, jintArray outValues, jintArray outIndices) argument
1217 android_content_AssetManager_applyStyle(JNIEnv* env, jobject clazz, jlong themeToken, jint defStyleAttr, jint defStyleRes, jlong xmlParserToken, jintArray attrs, jintArray outValues, jintArray outIndices) argument
1454 android_content_AssetManager_retrieveAttributes(JNIEnv* env, jobject clazz, jlong xmlParserToken, jintArray attrs, jintArray outValues, jintArray outIndices) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java72 public InternalSelectionView(Context context, AttributeSet attrs) { argument
73 super(context, attrs);
76 attrs, R.styleable.SelectableRowView);
/frameworks/base/core/tests/coretests/src/android/view/
H A DInflateTest.java151 public ViewOne(Context context, AttributeSet attrs) { argument
152 super(context, attrs);
H A DPreDrawListener.java45 public MyLinearLayout(Context context, AttributeSet attrs) { argument
46 super(context, attrs);
H A DViewAttachView.java35 public ViewAttachView(Context context, AttributeSet attrs, int defStyle) { argument
36 super(context, attrs, defStyle);
37 init(attrs, defStyle);
40 public ViewAttachView(Context context, AttributeSet attrs) { argument
41 super(context, attrs);
42 init(attrs, 0);
50 private void init(AttributeSet attrs, int defStyle) { argument
H A DVisibilityCallback.java85 public MonitoredTextView(Context context, AttributeSet attrs) { argument
86 super(context, attrs);
89 public MonitoredTextView(Context context, AttributeSet attrs, int defStyle) { argument
90 super(context, attrs, defStyle);
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DExceptionTextView.java40 public ExceptionTextView(Context context, AttributeSet attrs) { argument
41 super(context, attrs);
44 public ExceptionTextView(Context context, AttributeSet attrs, int defStyle) { argument
45 super(context, attrs, defStyle);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java266 @NonNull AttributeSet attrs, @Nullable Theme theme)
268 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.AnimatedRotateDrawable);
273 inflateChildElements(r, parser, attrs, theme);
340 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
353 if ((dr = Drawable.createFromXmlInner(r, parser, attrs, theme)) == null) {
265 inflate(@onNull Resources r, @NonNull XmlPullParser parser, @NonNull AttributeSet attrs, @Nullable Theme theme) argument
H A DAnimatedStateListDrawable.java376 @NonNull AttributeSet attrs, @Nullable Theme theme)
379 r, theme, attrs, R.styleable.AnimatedStateListDrawable);
384 inflateChildElements(r, parser, attrs, theme);
434 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
452 parseItem(r, parser, attrs, theme);
454 parseTransition(r, parser, attrs, theme);
460 @NonNull AttributeSet attrs, @Nullable Theme theme)
464 final TypedArray a = obtainAttributes(r, theme, attrs,
489 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
496 @NonNull AttributeSet attrs,
375 inflate(@onNull Resources r, @NonNull XmlPullParser parser, @NonNull AttributeSet attrs, @Nullable Theme theme) argument
459 parseTransition(@onNull Resources r, @NonNull XmlPullParser parser, @NonNull AttributeSet attrs, @Nullable Theme theme) argument
495 parseItem(@onNull Resources r, @NonNull XmlPullParser parser, @NonNull AttributeSet attrs, @Nullable Theme theme) argument
[all...]
H A DAnimatedVectorDrawable.java272 public void inflate(Resources res, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
281 final TypedArray a = obtainAttributes(res, theme, attrs,
298 final TypedArray a = obtainAttributes(res, theme, attrs,
H A DAnimationDrawable.java275 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
277 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.AnimationDrawable);
282 inflateChildElements(r, parser, attrs, theme);
287 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
303 final TypedArray a = obtainAttributes(r, theme, attrs,
325 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DBitmapDrawable.java713 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
715 super.inflate(r, parser, attrs, theme);
717 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.BitmapDrawable);
H A DClipDrawable.java82 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
84 super.inflate(r, parser, attrs, theme);
86 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ClipDrawable);
93 inflateChildElements(r, parser, attrs, theme);
98 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
108 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DColorDrawable.java229 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
231 super.inflate(r, parser, attrs, theme);
233 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ColorDrawable);
H A DDrawable.java1020 AttributeSet attrs = Xml.asAttributeSet(parser);
1032 Drawable drawable = createFromXmlInner(r, parser, attrs, theme);
1046 public static Drawable createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs) argument
1048 return createFromXmlInner(r, parser, attrs, null);
1057 public static Drawable createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs, argument
1128 drawable.inflate(r, parser, attrs, theme);
1159 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
1161 inflate(r, parser, attrs, null);
1169 * @param attrs Base set of attribute values
1174 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Them argument
1194 inflateWithAttributes(Resources r, XmlPullParser parser, TypedArray attrs, int visibleAttr) argument
1313 obtainAttributes( Resources res, Theme theme, AttributeSet set, int[] attrs) argument
[all...]
H A DGradientDrawable.java1012 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
1014 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.GradientDrawable);
1019 inflateChildElements(r, parser, attrs, theme);
1150 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
1171 a = obtainAttributes(r, theme, attrs, R.styleable.GradientDrawableSize);
1175 a = obtainAttributes(r, theme, attrs, R.styleable.GradientDrawableGradient);
1179 a = obtainAttributes(r, theme, attrs, R.styleable.GradientDrawableSolid);
1183 a = obtainAttributes(r, theme, attrs, R.styleable.GradientDrawableStroke);
1187 a = obtainAttributes(r, theme, attrs, R.styleable.DrawableCorners);
1191 a = obtainAttributes(r, theme, attrs,
[all...]
H A DInsetDrawable.java91 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
93 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.InsetDrawable);
101 inflateChildElements(r, parser, attrs, theme);
106 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
119 final Drawable dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DLayerDrawable.java137 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
139 super.inflate(r, parser, attrs, theme);
141 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.LayerDrawable);
145 inflateLayers(r, parser, attrs, theme);
174 private void inflateLayers(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
192 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.LayerDrawableItem);
204 layer.mDrawable = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DLevelListDrawable.java88 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
90 super.inflate(r, parser, attrs, theme);
109 TypedArray a = obtainAttributes(r, theme, attrs,
138 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DNinePatchDrawable.java397 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
399 super.inflate(r, parser, attrs, theme);
401 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.NinePatchDrawable);
H A DPaintDrawable.java74 AttributeSet attrs) {
76 TypedArray a = r.obtainAttributes(attrs,
105 return super.inflateTag(name, r, parser, attrs);
73 inflateTag(String name, Resources r, XmlPullParser parser, AttributeSet attrs) argument
H A DRippleDrawable.java361 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
363 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.RippleDrawable);
370 super.inflate(r, parser, attrs, theme);
H A DRotateDrawable.java406 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
408 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.RotateDrawable);
416 inflateChildElements(r, parser, attrs, theme);
448 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
458 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);
H A DScaleDrawable.java93 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
95 super.inflate(r, parser, attrs, theme);
97 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ScaleDrawable);
104 inflateChildElements(r, parser, attrs, theme);
135 private void inflateChildElements(Resources r, XmlPullParser parser, AttributeSet attrs, argument
145 dr = Drawable.createFromXmlInner(r, parser, attrs, theme);

Completed in 212 milliseconds

1234567891011>>