HomeSort by relevance Sort by last modified time
    Searched refs:attrs (Results 1076 - 1100 of 4096) sorted by null

<<41424344454647484950>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
SecureViewOverlay.java 36 public SecureViewOverlay(Context context, AttributeSet attrs) {
37 super(context, attrs);
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/ui/
RecyclingImageView.java 37 public RecyclingImageView(Context context, AttributeSet attrs) {
38 super(context, attrs);
  /development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/
MultiSwipeRefreshLayout.java 39 public MultiSwipeRefreshLayout(Context context, AttributeSet attrs) {
40 super(context, attrs);
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
ScaleTransition.java 23 public ScaleTransition(Context context, AttributeSet attrs) {
24 super(context, attrs);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/xml/
roundtrip.py 23 def startElement(self, name, attrs):
25 for (name, value) in attrs.items():
  /external/autotest/client/cros/cellular/mbim_compliance/
usb_descriptors.py 95 def __new__(mcs, name, bases, attrs):
100 return super(DescriptorMeta, mcs).__new__(mcs, name, bases, attrs)
102 if '_FIELDS' not in attrs:
106 field_formats, field_names = zip(*attrs['_FIELDS'])
131 descriptor_type = attrs.get('DESCRIPTOR_TYPE')
138 descriptor_subtype = attrs.get('DESCRIPTOR_SUBTYPE')
156 attrs['__new__'] = descriptor_class_new
163 attrs)
  /external/fonttools/Lib/fontTools/ttLib/tables/
F_F_T_M_.py 40 def fromXML(self, name, attrs, content, ttFont):
41 value = attrs["value"]
O_S_2f_2.py 32 def fromXML(self, name, attrs, content, ttFont):
33 setattr(self, name, safeEval(attrs["value"]))
172 def fromXML(self, name, attrs, content, ttFont):
177 name, attrs, content = element
178 panose.fromXML(name, attrs, content, ttFont)
183 setattr(self, name, binary2num(attrs["value"]))
185 setattr(self, name, safeEval("'''" + attrs["value"] + "'''"))
187 setattr(self, name, safeEval(attrs["value"]))
sbixBitmapSet.py 116 def fromXML(self, name, attrs, content, ttFont):
118 setattr(self, name, int(attrs["value"]))
120 if "format" in attrs:
121 myFormat = attrs["format"]
124 if "glyphname" in attrs:
125 myGlyphName = attrs["glyphname"]
132 name, attrs, content = element
133 myBitmap.fromXML(name, attrs, content, ttFont)
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
SignatureRemover.java 104 private void filterManifestEntryAttributes(final Attributes attrs) {
105 for (final Iterator<Object> i = attrs.keySet().iterator(); i.hasNext();) {
  /external/libxml2/python/tests/
pushSAX.py 19 def startElement(self, tag, attrs):
21 log = log + "startElement %s %s:" % (tag, attrs)
pushSAXhtml.py 19 def startElement(self, tag, attrs):
21 log = log + "startElement %s %s:" % (tag, attrs)
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
EncodingPreference.java 14 public EncodingPreference(Context context, AttributeSet attrs) {
15 super(context, attrs);
  /external/syslinux/gpxe/src/hci/mucurses/
kb.c 42 _wputch( win, (chtype) ( c | win->attrs ), WRAP );
71 _wputch( win, (chtype)( c | win->attrs ), WRAP );
  /frameworks/base/core/java/android/preference/
ListPreference.java 47 public ListPreference(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
48 super(context, attrs, defStyleAttr, defStyleRes);
51 attrs, com.android.internal.R.styleable.ListPreference, defStyleAttr, defStyleRes);
59 a = context.obtainStyledAttributes(attrs,
65 public ListPreference(Context context, AttributeSet attrs, int defStyleAttr) {
66 this(context, attrs, defStyleAttr, 0);
69 public ListPreference(Context context, AttributeSet attrs) {
70 this(context, attrs, com.android.internal.R.attr.dialogPreferenceStyle);
MultiCheckPreference.java 46 Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
47 super(context, attrs, defStyleAttr, defStyleRes);
50 attrs, com.android.internal.R.styleable.ListPreference, defStyleAttr, defStyleRes);
62 a = context.obtainStyledAttributes(attrs,
68 public MultiCheckPreference(Context context, AttributeSet attrs, int defStyleAttr) {
69 this(context, attrs, defStyleAttr, 0);
72 public MultiCheckPreference(Context context, AttributeSet attrs) {
73 this(context, attrs, com.android.internal.R.attr.dialogPreferenceStyle);
SeekBarPreference.java 40 Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
41 super(context, attrs, defStyleAttr, defStyleRes);
44 attrs, com.android.internal.R.styleable.ProgressBar, defStyleAttr, defStyleRes);
48 a = context.obtainStyledAttributes(attrs,
58 public SeekBarPreference(Context context, AttributeSet attrs, int defStyleAttr) {
59 this(context, attrs, defStyleAttr, 0);
62 public SeekBarPreference(Context context, AttributeSet attrs) {
63 this(context, attrs, com.android.internal.R.attr.seekBarPreferenceStyle);
  /frameworks/base/core/java/android/widget/
ViewSwitcher.java 50 * @param attrs a collection of attributes
52 public ViewSwitcher(Context context, AttributeSet attrs) {
53 super(context, attrs);
  /frameworks/base/core/tests/coretests/src/android/view/
PreDrawListener.java 45 public MyLinearLayout(Context context, AttributeSet attrs) {
46 super(context, attrs);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
BottomLabelLayout.java 42 @Nullable AttributeSet attrs) {
43 super(context, attrs);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
AnimatedImageView.java 34 public AnimatedImageView(Context context, AttributeSet attrs) {
35 super(context, attrs);
45 // TODO: define in drawable xml once we have public attrs.
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
NumPadKey.java 69 public NumPadKey(Context context, AttributeSet attrs) {
70 this(context, attrs, 0);
73 public NumPadKey(Context context, AttributeSet attrs, int defStyle) {
74 this(context, attrs, defStyle, R.layout.keyguard_num_pad_key);
77 protected NumPadKey(Context context, AttributeSet attrs, int defStyle, int contentResource) {
78 super(context, attrs, defStyle);
81 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NumPadKey);
119 a = context.obtainStyledAttributes(attrs, android.R.styleable.View);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
EmptyShadeView.java 33 public EmptyShadeView(Context context, AttributeSet attrs) {
34 super(context, attrs);
KeyboardShortcutAppItemLayout.java 40 public KeyboardShortcutAppItemLayout(Context context, AttributeSet attrs) {
41 super(context, attrs);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
CarNavigationButton.java 37 public CarNavigationButton(Context context, AttributeSet attrs) {
38 super(context, attrs);

Completed in 535 milliseconds

<<41424344454647484950>>