/frameworks/base/core/java/android/content/ |
SyncAdaptersCache.java | 47 String packageName, AttributeSet attrs) { 48 TypedArray sa = res.obtainAttributes(attrs,
|
/frameworks/base/core/java/android/preference/ |
PreferenceInflater.java | 67 AttributeSet attrs) throws XmlPullParserException { 74 intent = Intent.parseIntent(getContext().getResources(), parser, attrs);
|
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);
|
/frameworks/base/core/java/android/widget/ |
DigitalClock.java | 56 public DigitalClock(Context context, AttributeSet attrs) { 57 super(context, attrs);
|
ZoomControls.java | 43 public ZoomControls(Context context, AttributeSet attrs) { 44 super(context, attrs);
|
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,
|
/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/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
CellBroadcastListItem.java | 51 public CellBroadcastListItem(Context context, AttributeSet attrs) { 52 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))
|
/cts/tests/tests/view/src/android/view/cts/ |
WindowTest.java | 131 final WindowManager.LayoutParams attrs = mWindow.getAttributes(); local 132 assertEquals(0, attrs.flags); 135 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags); 139 | WindowManager.LayoutParams.FLAG_DITHER, attrs.flags); 142 assertEquals(WindowManager.LayoutParams.FLAG_DITHER, attrs.flags); 144 assertEquals(0, attrs.flags); 152 assertEquals(WindowManager.LayoutParams.FLAG_FULLSCREEN, attrs.flags); 976 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local 1000 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local 1025 WindowManager.LayoutParams attrs = mWindow.getAttributes(); local 1079 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/android/ |
BridgeContext.java | 422 public final TypedArray obtainStyledAttributes(int[] attrs) { 423 return createStyleBasedTypedArray(mRenderResources.getCurrentTheme(), attrs); 427 public final TypedArray obtainStyledAttributes(int resid, int[] attrs) 440 mTypedArrayCache.put(attrs, map); 442 BridgeTypedArray ta = createStyleBasedTypedArray(style, attrs); 449 Map<Integer, TypedArray> map = mTypedArrayCache.get(attrs); 452 mTypedArrayCache.put(attrs, map); 459 ta = createStyleBasedTypedArray(style, attrs); 467 public final TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs) { 468 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...] |