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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/widget/src/android/widget/cts/
TableLayout_LayoutParamsTest.java 127 AttributeSet attrs = getAttrs("base_attr_pixel"); local
128 TypedArray a = mTargetContext.obtainStyledAttributes(attrs, R.styleable.ViewGroup_Layout);
142 attrs = getAttrs("base_attr_fillwrap");
143 a = mTargetContext.obtainStyledAttributes(attrs, R.styleable.ViewGroup_Layout);
157 attrs = getAttrs("base_attr_noheight");
158 a = mTargetContext.obtainStyledAttributes(attrs, R.styleable.ViewGroup_Layout);
190 AttributeSet attrs = null; local
219 attrs = Xml.asAttributeSet(parser);
232 return attrs;
ButtonTest.java 61 AttributeSet attrs = Xml.asAttributeSet(parser); local
63 new Button(mContext, attrs, 0);
64 new Button(mContext, attrs);
  /external/dbus/tools/
dbus-monitor.c 115 struct timeval *t, ProfileAttributeFlags attrs)
119 if (attrs & PROFILE_ATTRIBUTE_FLAG_SERIAL)
122 if (attrs & PROFILE_ATTRIBUTE_FLAG_REPLY_SERIAL)
125 if (attrs & PROFILE_ATTRIBUTE_FLAG_SENDER)
128 if (attrs & PROFILE_ATTRIBUTE_FLAG_DESTINATION)
131 if (attrs & PROFILE_ATTRIBUTE_FLAG_PATH)
134 if (attrs & PROFILE_ATTRIBUTE_FLAG_INTERFACE)
137 if (attrs & PROFILE_ATTRIBUTE_FLAG_MEMBER)
140 if (attrs & PROFILE_ATTRIBUTE_FLAG_ERROR_NAME)
  /packages/apps/Contacts/src/com/android/contacts/widget/
InterpolatingLayout.java 48 public InterpolatingLayout(Context context, AttributeSet attrs) {
49 super(context, attrs);
52 public InterpolatingLayout(Context context, AttributeSet attrs, int defStyle) {
53 super(context, attrs, defStyle);
81 public LayoutParams(Context c, AttributeSet attrs) {
82 super(c, attrs);
83 TypedArray a = c.obtainStyledAttributes(attrs, R.styleable.InterpolatingLayout_Layout);
194 public LayoutParams generateLayoutParams(AttributeSet attrs) {
195 return new LayoutParams(getContext(), attrs);
  /cts/tests/src/android/graphics/drawable/cts/
DrawableTestUtils.java 54 AttributeSet attrs = null; local
78 attrs = Xml.asAttributeSet(parser);
86 return attrs;
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 63 var attrs = node.attributes;
64 for (var i = 0; i < attrs.length; i++) {
65 assertAttribute(attrs[i], node);
  /external/collada/src/dae/
domAny.cpp 76 return (daeChar*)&((domAny*)e)->attrs[_offset];
89 attrs.append("");
93 ma->setOffset((daeInt)attrs.getCount()-1);
  /external/kernel-headers/original/linux/nfsd/
xdr.h 20 struct iattr attrs; member in struct:nfsd_sattrargs
49 struct iattr attrs; member in struct:nfsd_createargs
79 struct iattr attrs; member in struct:nfsd_symlinkargs
  /frameworks/base/core/java/android/preference/
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/
TextSwitcher.java 48 * @param attrs a collection of attributes
50 public TextSwitcher(Context context, AttributeSet attrs) {
51 super(context, attrs);
  /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/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);
  /bionic/libc/kernel/common/linux/
attribute_container.h 24 struct class_device_attribute **attrs; member in struct:attribute_container
  /cts/tests/src/android/widget/cts/
MockTextView.java 44 public MockTextView(Context context, AttributeSet attrs) {
45 super(context, attrs);
48 public MockTextView(Context context, AttributeSet attrs, int defStyle) {
49 super(context, attrs, defStyle);
  /cts/tests/tests/view/src/android/view/cts/
ViewGroup_LayoutParamsTest.java 82 int[] attrs = R.styleable.style1; local
83 TypedArray array = mContext.getTheme().obtainStyledAttributes(R.style.Whatever, attrs);
95 public MockLayoutParams(Context c, AttributeSet attrs) {
96 super(c, attrs);
  /development/ndk/platforms/android-3/include/linux/
attribute_container.h 24 struct class_device_attribute **attrs; member in struct:attribute_container
  /external/clang/lib/Analysis/
Android.mk 10 Attrs.inc \
  /external/clang/lib/Index/
Android.mk 14 Attrs.inc \
  /external/clang/lib/Parse/
Android.mk 10 Attrs.inc \
  /external/clang/lib/Rewrite/
Android.mk 14 Attrs.inc \
  /external/clang/lib/Serialization/
Android.mk 18 Attrs.inc \
  /external/clang/lib/StaticAnalyzer/Frontend/
Android.mk 8 Attrs.inc \
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IElement.java 33 public static IElement create (final Tag tag, final AttributeSet attrs)
35 return new ElementImpl (tag, attrs);
110 ElementImpl (final Tag tag, final AttributeSet attrs)
112 super (tag, attrs);
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLCanvasElementCustom.cpp 57 RefPtr<CanvasContextAttributes> attrs; local
60 attrs = WebGLContextAttributes::create();
61 WebGLContextAttributes* webGLAttrs = static_cast<WebGLContextAttributes*>(attrs.get());
85 CanvasRenderingContext* context = canvas->getContext(ustringToString(contextId), attrs.get());
  /frameworks/base/core/java/android/inputmethodservice/
ExtractEditText.java 37 public ExtractEditText(Context context, AttributeSet attrs) {
38 super(context, attrs, com.android.internal.R.attr.editTextStyle);
41 public ExtractEditText(Context context, AttributeSet attrs, int defStyle) {
42 super(context, attrs, defStyle);

Completed in 2160 milliseconds

1 2 3 4 5 6 7 8 91011>>