Searched refs:attrs (Results 151 - 175 of 373) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/animation/
H A DTranslateAnimation.java51 * @param attrs Attribute set from which to read values
53 public TranslateAnimation(Context context, AttributeSet attrs) { argument
54 super(context, attrs);
56 TypedArray a = context.obtainStyledAttributes(attrs,
/frameworks/base/core/java/android/widget/
H A DAdapterViewFlipper.java61 public AdapterViewFlipper(Context context, AttributeSet attrs) { argument
62 super(context, attrs);
64 TypedArray a = context.obtainStyledAttributes(attrs,
H A DViewFlipper.java59 public ViewFlipper(Context context, AttributeSet attrs) { argument
60 super(context, attrs);
62 TypedArray a = context.obtainStyledAttributes(attrs,
/frameworks/opt/mailcommon/java/com/android/mailcommon/
H A DMultiAdapterSpinner.java50 * "MultiAdapterSpinner" name as a "reference" format (see Gmail's attrs.xml file for an
97 public MultiAdapterSpinner(Context context, AttributeSet attrs) { argument
98 super(context, attrs);
101 mPopup = new ListPopupWindow(context, attrs);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DLinearLayoutICS.java43 public LinearLayoutICS(Context context, AttributeSet attrs) { argument
44 super(context, attrs);
46 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.LinearLayoutICS);
H A DActionBarOverlayLayout.java54 public ActionBarOverlayLayout(Context context, AttributeSet attrs) { argument
55 super(context, attrs);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DShapeDrawable.java302 AttributeSet attrs) {
305 TypedArray a = r.obtainAttributes(attrs,
324 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
326 super.inflate(r, parser, attrs);
328 TypedArray a = r.obtainAttributes(attrs, com.android.internal.R.styleable.ShapeDrawable);
354 if (!inflateTag(name, r, parser, attrs)) {
301 inflateTag(String name, Resources r, XmlPullParser parser, AttributeSet attrs) argument
H A DDrawable.java865 AttributeSet attrs = Xml.asAttributeSet(parser);
877 Drawable drawable = createFromXmlInner(r, parser, attrs);
891 public static Drawable createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs) argument
937 drawable.inflate(r, parser, attrs);
966 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
969 TypedArray a = r.obtainAttributes(attrs, com.android.internal.R.styleable.Drawable);
981 TypedArray attrs, int visibleAttr)
984 mVisible = attrs.getBoolean(visibleAttr, mVisible);
980 inflateWithAttributes(Resources r, XmlPullParser parser, TypedArray attrs, int visibleAttr) argument
H A DAnimationDrawable.java236 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
239 TypedArray a = r.obtainAttributes(attrs,
267 a = r.obtainAttributes(attrs, com.android.internal.R.styleable.AnimationDrawableItem);
292 dr = Drawable.createFromXmlInner(r, parser, attrs);
H A DClipDrawable.java75 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs) argument
77 super.inflate(r, parser, attrs);
81 TypedArray a = r.obtainAttributes(attrs, com.android.internal.R.styleable.ClipDrawable);
97 dr = Drawable.createFromXmlInner(r, parser, attrs);
/frameworks/base/core/java/android/app/
H A DAliasActivity.java89 AttributeSet attrs = Xml.asAttributeSet(parser);
114 Intent gotIntent = Intent.parseIntent(getResources(), parser, attrs);
/frameworks/base/core/java/android/content/
H A DContext.java388 int[] attrs) {
389 return getTheme().obtainStyledAttributes(attrs);
400 int resid, int[] attrs) throws Resources.NotFoundException {
401 return getTheme().obtainStyledAttributes(resid, attrs);
412 AttributeSet set, int[] attrs) {
413 return getTheme().obtainStyledAttributes(set, attrs, 0, 0);
424 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
426 set, attrs, defStyleAttr, defStyleRes);
387 obtainStyledAttributes( int[] attrs) argument
399 obtainStyledAttributes( int resid, int[] attrs) argument
411 obtainStyledAttributes( AttributeSet set, int[] attrs) argument
423 obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument
H A DSyncAdaptersCache.java47 String packageName, AttributeSet attrs) {
48 TypedArray sa = res.obtainAttributes(attrs,
46 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
/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/tests/coretests/src/android/view/
H A DInflateTest.java151 public ViewOne(Context context, AttributeSet attrs) { argument
152 super(context, attrs);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DEmergencyButton.java63 public EmergencyButton(Context context, AttributeSet attrs) { argument
64 super(context, attrs);
H A DKeyguardViewBase.java56 public KeyguardViewBase(Context context, AttributeSet attrs) { argument
57 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DDateView.java63 public DateView(Context context, AttributeSet attrs) { argument
64 super(context, attrs);
/frameworks/base/services/java/com/android/server/accounts/
H A DAccountAuthenticatorCache.java57 String packageName, AttributeSet attrs) {
58 TypedArray sa = res.obtainAttributes(attrs,
56 parseServiceAttributes(Resources res, String packageName, AttributeSet attrs) argument
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java71 public PhotoViewPager(Context context, AttributeSet attrs) { argument
72 super(context, attrs);
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java788 final AttributeSet attrs = parser;
792 packageLite = parsePackageLite(res, parser, attrs, flags, errors);
835 AttributeSet attrs, int flags, String[] outError)
854 String pkgName = attrs.getAttributeValue(null, "package");
870 AttributeSet attrs, int flags, String[] outError) throws IOException,
889 String pkgName = attrs.getAttributeValue(null, "package");
903 for (int i = 0; i < attrs.getAttributeCount(); i++) {
904 String attr = attrs.getAttributeName(i);
906 installLocation = attrs.getAttributeIntValue(i,
910 versionCode = attrs
834 parsePackageName(XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
869 parsePackageLite(Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
1433 parseUsesPermission(Package pkg, Resources res, XmlResourceParser parser, AttributeSet attrs, String[] outError) argument
1563 parseKeys(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, String[] outError) argument
1644 parsePermissionGroup(Package owner, int flags, Resources res, XmlPullParser parser, AttributeSet attrs, String[] outError) argument
1687 parsePermission(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, String[] outError) argument
1756 parsePermissionTree(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, String[] outError) argument
1803 parseInstrumentation(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, String[] outError) argument
1862 parseApplication(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
2257 parseActivity(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError, boolean receiver, boolean hardwareAccelerated) argument
2527 parseActivityAlias(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
2690 parseProvider(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
2813 parseProviderTags(Resources res, XmlPullParser parser, AttributeSet attrs, Provider outInfo, String[] outError) argument
2996 parseService(Package owner, Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
3116 parseAllMetaData(Resources res, XmlPullParser parser, AttributeSet attrs, String tag, Component outInfo, String[] outError) argument
3150 parseMetaData(Resources res, XmlPullParser parser, AttributeSet attrs, Bundle data, String[] outError) argument
3215 parseVerifier(Resources res, XmlPullParser parser, AttributeSet attrs, int flags, String[] outError) argument
3282 parseIntent(Resources res, XmlPullParser parser, AttributeSet attrs, boolean allowGlobs, IntentInfo outInfo, String[] outError) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DListPreference.java46 public ListPreference(Context context, AttributeSet attrs) { argument
47 super(context, attrs);
49 TypedArray a = context.obtainStyledAttributes(attrs,
58 a = context.obtainStyledAttributes(attrs,
H A DMultiCheckPreference.java44 public MultiCheckPreference(Context context, AttributeSet attrs) { argument
45 super(context, attrs);
47 TypedArray a = context.obtainStyledAttributes(attrs,
60 a = context.obtainStyledAttributes(attrs,
H A DTwoStatePreference.java46 public TwoStatePreference(Context context, AttributeSet attrs, int defStyle) { argument
47 super(context, attrs, defStyle);
50 public TwoStatePreference(Context context, AttributeSet attrs) { argument
51 this(context, attrs, 0);
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java53 public AbsActionBarView(Context context, AttributeSet attrs) { argument
54 super(context, attrs);
57 public AbsActionBarView(Context context, AttributeSet attrs, int defStyle) { argument
58 super(context, attrs, defStyle);

Completed in 1536 milliseconds

1234567891011>>