Searched defs:attrs (Results 351 - 375 of 512) sorted by relevance

<<11121314151617181920>>

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DResourcesWrapper.java223 public TypedArray obtainAttributes(AttributeSet set, int[] attrs) { argument
224 return mResources.obtainAttributes(set, attrs);
277 public void parseBundleExtra(String tagName, AttributeSet attrs, Bundle outBundle) argument
279 mResources.parseBundleExtra(tagName, attrs, outBundle);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteButton.java117 public MediaRouteButton(Context context, AttributeSet attrs) { argument
118 this(context, attrs, R.attr.mediaRouteButtonStyle);
121 public MediaRouteButton(Context context, AttributeSet attrs, int defStyleAttr) { argument
122 super(MediaRouterThemeHelper.createThemedContext(context), attrs, defStyleAttr);
128 TypedArray a = context.obtainStyledAttributes(attrs,
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp256 void *me, const char *name, const char **attrs) {
257 static_cast<MediaCodecList *>(me)->startElementHandler(name, attrs);
265 status_t MediaCodecList::includeXMLFile(const char **attrs) { argument
268 while (attrs[i] != NULL) {
269 if (!strcmp(attrs[i], "href")) {
270 if (attrs[i + 1] == NULL) {
273 href = attrs[i + 1];
307 const char *name, const char **attrs) {
315 mInitCheck = includeXMLFile(attrs);
339 addMediaCodecFromAttributes(false /* encoder */, attrs);
255 StartElementHandlerWrapper( void *me, const char *name, const char **attrs) argument
306 startElementHandler( const char *name, const char **attrs) argument
465 addMediaCodecFromAttributes( bool encoder, const char **attrs) argument
528 addQuirk(const char **attrs) argument
554 addTypeFromAttributes(const char **attrs) argument
645 addLimit(const char **attrs) argument
792 addFeature(const char **attrs) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNativeActivity.java122 public NativeContentView(Context context, AttributeSet attrs) { argument
123 super(context, attrs);
/frameworks/base/core/java/android/view/
H A DSurfaceView.java187 public SurfaceView(Context context, AttributeSet attrs) { argument
188 super(context, attrs);
192 public SurfaceView(Context context, AttributeSet attrs, int defStyleAttr) { argument
193 super(context, attrs, defStyleAttr);
197 public SurfaceView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
198 super(context, attrs, defStyleAttr, defStyleRes);
/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java79 public AbsSeekBar(Context context, AttributeSet attrs) { argument
80 super(context, attrs);
83 public AbsSeekBar(Context context, AttributeSet attrs, int defStyleAttr) { argument
84 this(context, attrs, defStyleAttr, 0);
87 public AbsSeekBar(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
88 super(context, attrs, defStyleAttr, defStyleRes);
91 attrs, com.android.internal.R.styleable.SeekBar, defStyleAttr, defStyleRes);
115 a = context.obtainStyledAttributes(attrs,
H A DActionMenuView.java70 public ActionMenuView(Context context, AttributeSet attrs) { argument
71 super(context, attrs);
555 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
556 return new LayoutParams(getContext(), attrs);
783 public LayoutParams(Context c, AttributeSet attrs) { argument
784 super(c, attrs);
H A DActivityChooserView.java194 * @param attrs A collection of attributes.
196 public ActivityChooserView(Context context, AttributeSet attrs) { argument
197 this(context, attrs, 0);
204 * @param attrs A collection of attributes.
209 public ActivityChooserView(Context context, AttributeSet attrs, int defStyleAttr) { argument
210 this(context, attrs, defStyleAttr, 0);
217 * @param attrs A collection of attributes.
226 public ActivityChooserView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
227 super(context, attrs, defStyleAttr, defStyleRes);
229 TypedArray attributesArray = context.obtainStyledAttributes(attrs,
[all...]
H A DAppSecurityPermissions.java146 public PermissionItemView(Context context, AttributeSet attrs) { argument
147 super(context, attrs);
H A DFrameLayout.java106 public FrameLayout(Context context, AttributeSet attrs) { argument
107 this(context, attrs, 0);
110 public FrameLayout(Context context, AttributeSet attrs, int defStyleAttr) { argument
111 this(context, attrs, defStyleAttr, 0);
114 public FrameLayout(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
115 super(context, attrs, defStyleAttr, defStyleRes);
118 attrs, com.android.internal.R.styleable.FrameLayout, defStyleAttr, defStyleRes);
684 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
685 return new FrameLayout.LayoutParams(getContext(), attrs);
740 public LayoutParams(Context c, AttributeSet attrs) { argument
[all...]
H A DMediaController.java103 public MediaController(Context context, AttributeSet attrs) { argument
104 super(context, attrs);
H A DTabHost.java79 public TabHost(Context context, AttributeSet attrs) { argument
80 this(context, attrs, com.android.internal.R.attr.tabWidgetStyle);
83 public TabHost(Context context, AttributeSet attrs, int defStyleAttr) { argument
84 this(context, attrs, defStyleAttr, 0);
87 public TabHost(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
88 super(context, attrs);
91 attrs, com.android.internal.R.styleable.TabWidget, defStyleAttr, defStyleRes);
H A DTableLayout.java102 * @param attrs a collection of attributes
104 public TableLayout(Context context, AttributeSet attrs) { argument
105 super(context, attrs);
107 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TableLayout);
639 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
640 return new TableLayout.LayoutParams(getContext(), attrs);
691 public LayoutParams(Context c, AttributeSet attrs) { argument
692 super(c, attrs);
H A DVideoView.java126 public VideoView(Context context, AttributeSet attrs) { argument
127 this(context, attrs, 0);
131 public VideoView(Context context, AttributeSet attrs, int defStyleAttr) { argument
132 this(context, attrs, defStyleAttr, 0);
135 public VideoView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { argument
136 super(context, attrs, defStyleAttr, defStyleRes);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java128 public IconMenuView(Context context, AttributeSet attrs) { argument
129 super(context, attrs);
132 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.IconMenuView, 0, 0);
140 a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.MenuView, 0, 0);
472 public LayoutParams generateLayoutParams(AttributeSet attrs) { argument
473 return new IconMenuView.LayoutParams(getContext(), attrs);
753 public LayoutParams(Context c, AttributeSet attrs) { argument
754 super(c, attrs);
/frameworks/base/core/java/com/android/internal/widget/
H A DRotarySelector.java177 public RotarySelector(Context context, AttributeSet attrs) { argument
178 super(context, attrs);
181 context.obtainStyledAttributes(attrs, R.styleable.RotarySelector);
H A DWaveView.java115 public WaveView(Context context, AttributeSet attrs) { argument
116 super(context, attrs);
118 // TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.WaveView);
/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 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 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 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 DShapeDrawable.java358 AttributeSet attrs) {
361 TypedArray a = r.obtainAttributes(attrs,
380 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs, Theme theme) argument
382 super.inflate(r, parser, attrs, theme);
384 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ShapeDrawable);
398 if (!inflateTag(name, r, parser, attrs)) {
357 inflateTag(String name, Resources r, XmlPullParser parser, AttributeSet attrs) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardTransportControlView.java270 public KeyguardTransportControlView(Context context, AttributeSet attrs) { argument
271 super(context, attrs);
H A DKeyguardWidgetFrame.java94 public KeyguardWidgetFrame(Context context, AttributeSet attrs) { argument
95 this(context, attrs, 0);
98 public KeyguardWidgetFrame(Context context, AttributeSet attrs, int defStyle) { argument
99 super(context, attrs, defStyle);

Completed in 478 milliseconds

<<11121314151617181920>>