HomeSort by relevance Sort by last modified time
    Searched refs:attrs (Results 276 - 300 of 1321) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/com/android/internal/view/menu/
ExpandedMenuView.java 44 public ExpandedMenuView(Context context, AttributeSet attrs) {
45 super(context, attrs);
47 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.MenuView, 0, 0);
  /frameworks/base/services/java/com/android/server/am/
AppWaitingForDebuggerDialog.java 56 WindowManager.LayoutParams attrs = getWindow().getAttributes(); local
57 attrs.setTitle("Waiting For Debugger: " + app.info.processName);
58 getWindow().setAttributes(attrs);
BaseErrorDialog.java 36 WindowManager.LayoutParams attrs = getWindow().getAttributes(); local
37 attrs.setTitle("Error Dialog");
38 getWindow().setAttributes(attrs);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
attrcreatedocumentfragment.java 68 Attr attrs; local
78 attrs = (Attr) domesticAttr.item(0);
79 attrName = attrs.getName();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
CenteredLinearLayout.java 31 public CenteredLinearLayout(Context context, AttributeSet attrs) {
32 super(context, attrs);
33 TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.CenteredLinearLayout);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
ImageButtonTitle.java 47 public ImageButtonTitle(Context context, AttributeSet attrs) {
48 super(context, attrs);
50 attrs, R.styleable.ImageButtonTitle);
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 43 public SliderPreference(Context context, AttributeSet attrs) {
44 this(context, attrs, android.R.attr.preferenceStyle);
49 public SliderPreference(Context context, AttributeSet attrs, int defStyle) {
50 super(context, attrs, defStyle);
52 TypedArray a = context.obtainStyledAttributes(attrs,
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 244 def findNext(self, name=None, attrs={}, text=None, **kwargs):
247 return self._findOne(self.findAllNext, name, attrs, text, **kwargs)
249 def findAllNext(self, name=None, attrs={}, text=None, limit=None,
253 return self._findAll(name, attrs, text, limit, self.nextGenerator,
256 def findNextSibling(self, name=None, attrs={}, text=None, **kwargs):
259 return self._findOne(self.findNextSiblings, name, attrs, text,
262 def findNextSiblings(self, name=None, attrs={}, text=None, limit=None,
266 return self._findAll(name, attrs, text, limit,
270 def findPrevious(self, name=None, attrs={}, text=None, **kwargs):
273 return self._findOne(self.findAllPrevious, name, attrs, text, **kwargs
    [all...]
  /frameworks/base/core/java/android/preference/
SwitchPreference.java 62 * @param attrs Style attributes that differ from the default
65 public SwitchPreference(Context context, AttributeSet attrs, int defStyle) {
66 super(context, attrs, defStyle);
68 TypedArray a = context.obtainStyledAttributes(attrs,
85 * @param attrs Style attributes that differ from the default
87 public SwitchPreference(Context context, AttributeSet attrs) {
88 this(context, attrs, com.android.internal.R.attr.switchPreferenceStyle);
PreferenceInflater.java 70 AttributeSet attrs) throws XmlPullParserException {
77 intent = Intent.parseIntent(getContext().getResources(), parser, attrs);
91 getContext().getResources().parseBundleExtra(EXTRA_TAG_NAME, attrs,
  /frameworks/base/core/java/android/widget/
ToggleButton.java 50 public ToggleButton(Context context, AttributeSet attrs, int defStyle) {
51 super(context, attrs, defStyle);
55 attrs, com.android.internal.R.styleable.ToggleButton, defStyle, 0);
63 public ToggleButton(Context context, AttributeSet attrs) {
64 this(context, attrs, com.android.internal.R.attr.buttonStyleToggle);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationLinearLayout.java 48 public NotificationLinearLayout(Context context, AttributeSet attrs) {
49 this(context, attrs, 0);
52 public NotificationLinearLayout(Context context, AttributeSet attrs, int defStyle) {
53 super(context, attrs, defStyle);
59 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NotificationLinearLayout,
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
NumPadKey.java 64 public NumPadKey(Context context, AttributeSet attrs) {
65 this(context, attrs, 0);
68 public NumPadKey(Context context, AttributeSet attrs, int defStyle) {
69 super(context, attrs, defStyle);
71 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NumPadKey);
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 88 int[] attrs = { local
95 attrArray = testTheme.obtainStyledAttributes(attrs);
143 int[] attrs = android.R.styleable.DatePicker; local
145 attrs);
147 assertEquals(attrs.length, testTypedArray.length());
152 attrs, 0, 0);
154 assertEquals(attrs.length, testTypedArray.length());
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SimpleInflater.java 51 AttributeSet attrs = Xml.asAttributeSet(parser); local
53 parseMenu(parser, attrs);
63 private void parseMenu(XmlPullParser parser, AttributeSet attrs)
95 readItem(attrs);
97 parseMenu(parser, attrs);
123 public void readItem(AttributeSet attrs) {
124 TypedArray a = mContext.obtainStyledAttributes(attrs,
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 52 XmlPullParser parser, View parent, final AttributeSet attrs,
64 thisInflater.rInflate_Original(parser, parent, attrs, finishInflate);
79 XmlPullParser parser, View parent, AttributeSet attrs)
85 final int layout = attrs.getAttributeResourceValue(null, "layout", 0);
87 final String value = attrs.getAttributeValue(null, "layout");
135 params = group.generateLayoutParams(attrs);
158 TypedArray a = thisInflater.mContext.obtainStyledAttributes(attrs,
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 118 AttributeSet attrs = Xml.asAttributeSet(parser); local
129 return createFromXmlInner(r, parser, attrs);
137 AttributeSet attrs) throws XmlPullParserException, IOException {
150 colorStateList.inflate(r, parser, attrs);
173 private void inflate(Resources r, XmlPullParser parser, AttributeSet attrs)
203 final int numAttrs = attrs.getAttributeCount();
206 final int stateResId = attrs.getAttributeNameResource(i);
209 colorRes = attrs.getAttributeResourceValue(i, 0);
212 color = attrs.getAttributeIntValue(i, color);
216 stateSpec[j++] = attrs.getAttributeBooleanValue(i, false
    [all...]
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 37 int add(IWindow window, int seq, in WindowManager.LayoutParams attrs,
40 int addToDisplay(IWindow window, int seq, in WindowManager.LayoutParams attrs,
43 int addWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
45 int addToDisplayWithoutInputChannel(IWindow window, int seq, in WindowManager.LayoutParams attrs,
58 * @param attrs If non-null, new attributes to apply to the window.
85 int relayout(IWindow window, int seq, in WindowManager.LayoutParams attrs,
WindowManagerPolicy.java 495 * @param attrs The window's LayoutParams.
501 public int checkAddPermission(WindowManager.LayoutParams attrs);
506 * @param attrs The window's LayoutParams.
511 public boolean checkShowToOwnerOnly(WindowManager.LayoutParams attrs);
518 * @param attrs The window layout parameters to be modified. These values
521 public void adjustWindowParamsLw(WindowManager.LayoutParams attrs);
618 public boolean doesForceHide(WindowState win, WindowManager.LayoutParams attrs);
627 public boolean canBeForceHidden(WindowState win, WindowManager.LayoutParams attrs);
680 * @param attrs The window's LayoutParams.
686 WindowManager.LayoutParams attrs);
    [all...]
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 62 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);
  /bionic/libc/kernel/common/linux/nfsd/
xdr.h 31 struct iattr attrs; member in struct:nfsd_sattrargs
62 struct iattr attrs; member in struct:nfsd_createargs
95 struct iattr attrs; member in struct:nfsd_symlinkargs
  /cts/tests/src/android/graphics/drawable/cts/
DrawableTestUtils.java 54 AttributeSet attrs = null; local
78 attrs = Xml.asAttributeSet(parser);
86 return attrs;
  /development/ndk/platforms/android-3/include/linux/nfsd/
xdr.h 25 struct iattr attrs; member in struct:nfsd_sattrargs
54 struct iattr attrs; member in struct:nfsd_createargs
84 struct iattr attrs; member in struct:nfsd_symlinkargs
  /development/samples/Snake/src/com/example/android/snake/
BackgroundView.java 42 public BackgroundView(Context context, AttributeSet attrs) {
43 super(context, attrs);
47 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.BackgroundView);
  /frameworks/base/core/java/com/android/internal/widget/
WeightedLinearLayout.java 42 public WeightedLinearLayout(Context context, AttributeSet attrs) {
43 super(context, attrs);
46 context.obtainStyledAttributes(attrs, styleable.WeightedLinearLayout);

Completed in 997 milliseconds

<<11121314151617181920>>