Searched refs:attrs (Results 76 - 100 of 347) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java495 * @param attrs The window's LayoutParams.
501 public int checkAddPermission(WindowManager.LayoutParams attrs); argument
506 * @param attrs The window's LayoutParams.
511 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs); argument
518 * @param attrs The window layout parameters to be modified. These values
521 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs); argument
618 public boolean doesForceHide(WindowState win, WindowManager.LayoutParams attrs); argument
627 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs); argument
680 * @param attrs The window's LayoutParams.
686 WindowManager.LayoutParams attrs);
685 prepareAddWindowLw(WindowState win, WindowManager.LayoutParams attrs) argument
817 layoutWindowLw(WindowState win, WindowManager.LayoutParams attrs, WindowState attached) argument
830 getContentInsetHintLw(WindowManager.LayoutParams attrs, Rect contentInset) argument
862 applyPostLayoutPolicyLw(WindowState win, WindowManager.LayoutParams attrs) argument
1120 canMagnifyWindowLw(WindowManager.LayoutParams attrs) argument
[all...]
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp62 EGLint attrs[] = { local
68 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
93 EGLint attrs[] = { local
102 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
124 EGLint attrs[] = { local
134 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
/frameworks/base/core/java/android/preference/
H A DPreferenceInflater.java70 AttributeSet attrs) throws XmlPullParserException {
77 intent = Intent.parseIntent(getContext().getResources(), parser, attrs);
91 getContext().getResources().parseBundleExtra(EXTRA_TAG_NAME, attrs,
69 onCreateCustomFromTag(XmlPullParser parser, Preference parentPreference, AttributeSet attrs) argument
H A DSeekBarDialogPreference.java35 public SeekBarDialogPreference(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
H A DEditTextPreference.java53 public EditTextPreference(Context context, AttributeSet attrs, int defStyle) { argument
54 super(context, attrs, defStyle);
56 mEditText = new EditText(context, attrs);
70 public EditTextPreference(Context context, AttributeSet attrs) { argument
71 this(context, attrs, com.android.internal.R.attr.editTextPreferenceStyle);
H A DPreferenceGroup.java59 public PreferenceGroup(Context context, AttributeSet attrs, int defStyle) { argument
60 super(context, attrs, defStyle);
64 TypedArray a = context.obtainStyledAttributes(attrs,
71 public PreferenceGroup(Context context, AttributeSet attrs) { argument
72 this(context, attrs, 0);
H A DRingtonePreference.java53 public RingtonePreference(Context context, AttributeSet attrs, int defStyle) { argument
54 super(context, attrs, defStyle);
56 TypedArray a = context.obtainStyledAttributes(attrs,
67 public RingtonePreference(Context context, AttributeSet attrs) { argument
68 this(context, attrs, com.android.internal.R.attr.ringtonePreferenceStyle);
/frameworks/base/core/java/com/android/internal/widget/
H A DWeightedLinearLayout.java42 public WeightedLinearLayout(Context context, AttributeSet attrs) { argument
43 super(context, attrs);
46 context.obtainStyledAttributes(attrs, styleable.WeightedLinearLayout);
H A DFaceUnlockView.java32 public FaceUnlockView(Context context, AttributeSet attrs) { argument
33 super(context, attrs);
/frameworks/base/graphics/java/android/graphics/drawable/
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
/frameworks/base/core/java/android/view/animation/
H A DBounceInterpolator.java31 public BounceInterpolator(Context context, AttributeSet attrs) { argument
H A DAnticipateOvershootInterpolator.java58 public AnticipateOvershootInterpolator(Context context, AttributeSet attrs) { argument
59 TypedArray a = context.obtainStyledAttributes(attrs, AnticipateOvershootInterpolator);
/frameworks/base/core/java/com/android/internal/preference/
H A DYesNoPreference.java35 public YesNoPreference(Context context, AttributeSet attrs, int defStyle) { argument
36 super(context, attrs, defStyle);
39 public YesNoPreference(Context context, AttributeSet attrs) { argument
40 this(context, attrs, com.android.internal.R.attr.yesNoPreferenceStyle);
/frameworks/base/services/java/com/android/server/am/
H A DAppErrorDialog.java76 WindowManager.LayoutParams attrs = getWindow().getAttributes();
77 attrs.setTitle("Application Error: " + app.info.processName);
78 attrs.privateFlags |= WindowManager.LayoutParams.PRIVATE_FLAG_SHOW_FOR_ALL_USERS;
79 getWindow().setAttributes(attrs);
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java50 * @param attrs An AttributeSet passed to our parent.
52 public WebView(Context context, AttributeSet attrs) { argument
53 this(context, attrs, com.android.internal.R.attr.webViewStyle);
59 * @param attrs An AttributeSet passed to our parent.
62 public WebView(Context context, AttributeSet attrs, int defStyle) { argument
63 super(context, attrs, defStyle);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCarrierLabel.java48 public CarrierLabel(Context context, AttributeSet attrs) { argument
49 this(context, attrs, 0);
52 public CarrierLabel(Context context, AttributeSet attrs, int defStyle) { argument
53 super(context, attrs, defStyle);
H A DPanelHolder.java29 public PanelHolder(Context context, AttributeSet attrs) { argument
30 super(context, attrs);
H A DTrackingPatternView.java35 public TrackingPatternView(Context context, AttributeSet attrs) { argument
36 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DEventHole.java48 public EventHole(Context context, AttributeSet attrs) { argument
49 this(context, attrs, 0);
52 public EventHole(Context context, AttributeSet attrs, int defStyle) { argument
53 super(context, attrs);
/frameworks/base/core/java/android/widget/
H A DImageSwitcher.java34 public ImageSwitcher(Context context, AttributeSet attrs) { argument
35 super(context, attrs);
H A DTextSwitcher.java50 * @param attrs a collection of attributes
52 public TextSwitcher(Context context, AttributeSet attrs) { argument
53 super(context, attrs);
/frameworks/base/core/tests/coretests/src/android/view/
H A DPreDrawListener.java45 public MyLinearLayout(Context context, AttributeSet attrs) { argument
46 super(context, attrs);
/frameworks/base/graphics/java/android/renderscript/
H A DRSSurfaceView.java64 public RSSurfaceView(Context context, AttributeSet attrs) { argument
65 super(context, attrs);
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNIView.java60 public GLJNIView(Context context, AttributeSet attrs) { argument
61 super(context, attrs);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java37 public AnimatedImageView(Context context, AttributeSet attrs) { argument
38 super(context, attrs);

Completed in 239 milliseconds

1234567891011>>