HomeSort by relevance Sort by last modified time
    Searched refs:attrs (Results 226 - 250 of 607) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/drawable/
Drawable.java 716 AttributeSet attrs = Xml.asAttributeSet(parser); local
728 Drawable drawable = createFromXmlInner(r, parser, attrs);
742 public static Drawable createFromXmlInner(Resources r, XmlPullParser parser, AttributeSet attrs)
787 drawable.inflate(r, parser, attrs);
808 public void inflate(Resources r, XmlPullParser parser, AttributeSet attrs)
811 TypedArray a = r.obtainAttributes(attrs, com.android.internal.R.styleable.Drawable);
817 TypedArray attrs, int visibleAttr)
820 mVisible = attrs.getBoolean(visibleAttr, mVisible);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
RSSurfaceView.java 55 public RSSurfaceView(Context context, AttributeSet attrs) {
56 super(context, attrs);
  /packages/apps/Camera/src/com/android/camera/
PreviewFrameLayout.java 43 public PreviewFrameLayout(Context context, AttributeSet attrs) {
44 super(context, attrs);
  /packages/apps/DeskClock/src/com/android/deskclock/
RepeatPreference.java 36 public RepeatPreference(Context context, AttributeSet attrs) {
37 super(context, attrs);
  /packages/apps/Launcher2/src/com/android/launcher2/
LiveFolderIcon.java 29 public LiveFolderIcon(Context context, AttributeSet attrs) {
30 super(context, attrs);
AllApps2D.java 74 public HomeButton(Context context, AttributeSet attrs) {
75 super(context, attrs);
118 public AllApps2D(Context context, AttributeSet attrs) {
119 super(context, attrs);
154 public AllApps2D(Context context, AttributeSet attrs, int defStyle) {
155 this(context, attrs);
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportListItem.java 52 public DeliveryReportListItem(Context context, AttributeSet attrs) {
53 super(context, attrs);
ImageAttachmentView.java 45 public ImageAttachmentView(Context context, AttributeSet attrs) {
46 super(context, attrs);
VideoAttachmentView.java 48 public VideoAttachmentView(Context context, AttributeSet attrs) {
49 super(context, attrs);
  /external/clearsilver/python/examples/base/
SafeHtml.py 62 def cleanup_attrs (self, tag, attrs):
67 for name, value in attrs:
85 def unknown_starttag(self, tag, attrs):
99 self.write_starttag (tag, self.cleanup_attrs(tag, attrs))
102 self.write_starttag (tag, self.cleanup_attrs(tag, attrs))
105 self.write_starttag (tag, self.cleanup_attrs(tag, attrs))
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 56 public AbsSeekBar(Context context, AttributeSet attrs) {
57 super(context, attrs);
60 public AbsSeekBar(Context context, AttributeSet attrs, int defStyle) {
61 super(context, attrs, defStyle);
63 TypedArray a = context.obtainStyledAttributes(attrs,
73 a = context.obtainStyledAttributes(attrs,
FrameLayout.java 83 public FrameLayout(Context context, AttributeSet attrs) {
84 this(context, attrs, 0);
87 public FrameLayout(Context context, AttributeSet attrs, int defStyle) {
88 super(context, attrs, defStyle);
90 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.FrameLayout,
422 public LayoutParams generateLayoutParams(AttributeSet attrs) {
423 return new FrameLayout.LayoutParams(getContext(), attrs);
456 public LayoutParams(Context c, AttributeSet attrs) {
457 super(c, attrs);
459 TypedArray a = c.obtainStyledAttributes(attrs, com.android.internal.R.styleable.FrameLayout_Layout)
    [all...]
TableRow.java 68 * @param attrs a collection of attributes
70 public TableRow(Context context, AttributeSet attrs) {
71 super(context, attrs);
348 public LayoutParams generateLayoutParams(AttributeSet attrs) {
349 return new TableRow.LayoutParams(getContext(), attrs);
407 public LayoutParams(Context c, AttributeSet attrs) {
408 super(c, attrs);
411 c.obtainStyledAttributes(attrs,
AnalogClock.java 61 public AnalogClock(Context context, AttributeSet attrs) {
62 this(context, attrs, 0);
65 public AnalogClock(Context context, AttributeSet attrs,
67 super(context, attrs, defStyle);
71 attrs, com.android.internal.R.styleable.AnalogClock, defStyle, 0);
CompoundButton.java 62 public CompoundButton(Context context, AttributeSet attrs) {
63 this(context, attrs, 0);
66 public CompoundButton(Context context, AttributeSet attrs, int defStyle) {
67 super(context, attrs, defStyle);
71 attrs, com.android.internal.R.styleable.CompoundButton, defStyle, 0);
QuickContactBadge.java 87 public QuickContactBadge(Context context, AttributeSet attrs) {
88 this(context, attrs, 0);
91 public QuickContactBadge(Context context, AttributeSet attrs, int defStyle) {
92 super(context, attrs, defStyle);
95 context.obtainStyledAttributes(attrs,
Spinner.java 51 public Spinner(Context context, AttributeSet attrs) {
52 this(context, attrs, com.android.internal.R.attr.spinnerStyle);
55 public Spinner(Context context, AttributeSet attrs, int defStyle) {
56 super(context, attrs, defStyle);
58 TypedArray a = context.obtainStyledAttributes(attrs,
  /cts/tests/tests/view/src/android/view/cts/
WindowTest.java 130 final WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
131 assertEquals(0, attrs.flags);
134 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags);
138 | WindowManager.LayoutParams.FLAG_DITHER, attrs.flags);
141 assertEquals(WindowManager.LayoutParams.FLAG_DITHER, attrs.flags);
143 assertEquals(0, attrs.flags);
151 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags);
966 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
990 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
1015 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
1069 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local
    [all...]
LayoutInflaterTest.java 54 AttributeSet attrs) {
160 AttributeSet attrs = null; local
185 attrs = Xml.asAttributeSet(parser);
192 return attrs;
203 AttributeSet attrs = getAttrs(); local
208 .createView("testthrow", "com.android", attrs);
227 "com.android.app.", attrs);
239 MockActivity.class.getPackage().toString(), attrs);
251 null, attrs);
259 MockActivity.class.getPackage().toString(), attrs);
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeContext.java 191 public final TypedArray obtainStyledAttributes(int[] attrs) {
192 return createStyleBasedTypedArray(mThemeValues, attrs);
196 public final TypedArray obtainStyledAttributes(int resid, int[] attrs)
209 mTypedArrayCache.put(attrs, map);
211 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs);
218 Map<Integer, TypedArray> map = mTypedArrayCache.get(attrs);
221 mTypedArrayCache.put(attrs, map);
228 ta = createStyleBasedTypedArray(style, attrs);
236 public final TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs) {
237 return obtainStyledAttributes(set, attrs, 0, 0)
    [all...]
  /development/apps/Development/src/com/android/development/
EnterURL.java 49 public UrlEditText(Context context, AttributeSet attrs)
51 super(context, attrs);
72 public DisplayEditText(Context context, AttributeSet attrs)
74 super(context, attrs);
89 public View onCreateView(String name, Context context, AttributeSet attrs)
92 return new UrlEditText(this, attrs);
95 return new DisplayEditText(this, attrs);
  /external/bluetooth/glib/gio/
gfileinfo.c 227 GFileAttribute *attrs; local
231 attrs = (GFileAttribute *)info->attributes->data;
233 _g_file_attribute_value_clear (&attrs[i].value);
397 GFileAttribute *attrs; local
402 attrs = (GFileAttribute *)info->attributes->data;
404 attrs[i].value.status = G_FILE_ATTRIBUTE_STATUS_UNSET;
412 GFileAttribute *attrs; local
419 attrs = (GFileAttribute *)info->attributes->data;
424 if (attrs[med].attribute == attribute)
429 else if (attrs[med].attribute < attribute
442 GFileAttribute *attrs; local
503 GFileAttribute *attrs; local
563 GFileAttribute *attrs; local
877 GFileAttribute *attrs; local
    [all...]
  /external/openssl/crypto/store/
store.h 390 int STORE_ATTR_INFO_free(STORE_ATTR_INFO *attrs);
393 char *STORE_ATTR_INFO_get0_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
394 unsigned char *STORE_ATTR_INFO_get0_sha1str(STORE_ATTR_INFO *attrs,
396 X509_NAME *STORE_ATTR_INFO_get0_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
397 BIGNUM *STORE_ATTR_INFO_get0_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code);
398 int STORE_ATTR_INFO_set_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
400 int STORE_ATTR_INFO_set_sha1str(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
402 int STORE_ATTR_INFO_set_dn(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
404 int STORE_ATTR_INFO_set_number(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code,
406 int STORE_ATTR_INFO_modify_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code
    [all...]
  /frameworks/base/core/java/android/preference/
CheckBoxPreference.java 54 public CheckBoxPreference(Context context, AttributeSet attrs, int defStyle) {
55 super(context, attrs, defStyle);
57 TypedArray a = context.obtainStyledAttributes(attrs,
69 public CheckBoxPreference(Context context, AttributeSet attrs) {
70 this(context, attrs, com.android.internal.R.attr.checkBoxPreferenceStyle);
DialogPreference.java 68 public DialogPreference(Context context, AttributeSet attrs, int defStyle) {
69 super(context, attrs, defStyle);
71 TypedArray a = context.obtainStyledAttributes(attrs,
89 public DialogPreference(Context context, AttributeSet attrs) {
90 this(context, attrs, com.android.internal.R.attr.dialogPreferenceStyle);

Completed in 612 milliseconds

1 2 3 4 5 6 7 8 91011>>