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

<<31323334353637383940>>

  /prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/linux/
attribute_container.h 24 struct class_device_attribute **attrs; member in struct:attribute_container
  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/linux/
attribute_container.h 24 struct class_device_attribute **attrs; member in struct:attribute_container
  /cts/tests/tests/widget/src/android/widget/cts/
ButtonTest.java 38 AttributeSet attrs = Xml.asAttributeSet(parser); local
40 new Button(context, attrs, 0);
41 new Button(context, attrs);
  /external/autotest/client/deps/pyxinput/
pyxinput.py 22 def __init__(self, attrs):
23 for attr in attrs:
24 setattr(self, attr, attrs[attr])
  /external/fonttools/Lib/fontTools/ttLib/tables/
BitmapGlyphMetrics.py 41 def fromXML(self, name, attrs, content, ttFont):
46 name, attrs, content = element
49 vars(self)[name] = safeEval(attrs['value'])
  /external/icu/icu4c/source/test/cintltst/
callcoll.h 53 void genericLocaleStarterWithOptions(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize);
54 void genericLocaleStarterWithOptionsAndResult(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize, UCollationResult result);
57 void genericRulesStarterWithOptionsAndResult(const char *rules, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize, UCollationResult result);
  /external/iproute2/lib/
libgenl.c 17 struct rtattr *attrs; local
37 attrs = (struct rtattr *) ((char *) ghdr + GENL_HDRLEN);
38 parse_rtattr(tb, CTRL_ATTR_MAX, attrs, len);
  /external/syslinux/gpxe/src/util/
mucurses_test.c 38 mvwhline( secret, 2, 1, '-' | secret->attrs, secret->width - 2 );
43 mvwhline( secret, 6, 12, '_' | secret->attrs, 16 );
44 mvwhline( secret, 8, 12, '_' | secret->attrs, 16 );
  /frameworks/base/core/java/android/view/animation/
AlphaAnimation.java 37 * @param attrs Attribute set from which to read values
39 public AlphaAnimation(Context context, AttributeSet attrs) {
40 super(context, attrs);
43 context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.AlphaAnimation);
  /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/packages/SystemUI/src/com/android/systemui/
ChargingView.java 42 public ChargingView(Context context, @Nullable AttributeSet attrs) {
43 super(context, attrs);
45 TypedArray a = context.obtainStyledAttributes(attrs, new int[]{android.R.attr.src});
PluginInflateContainer.java 59 public PluginInflateContainer(Context context, @Nullable AttributeSet attrs) {
60 super(context, attrs);
61 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.PluginInflateContainer);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
SystemUIDialog.java 41 WindowManager.LayoutParams attrs = getWindow().getAttributes(); local
42 attrs.setTitle(getClass().getSimpleName());
43 getWindow().setAttributes(attrs);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerSwitch.java 19 public TunerSwitch(Context context, AttributeSet attrs) {
20 super(context, attrs);
22 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.TunerSwitch);
  /frameworks/base/services/core/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);
  /frameworks/base/tools/aapt2/tools/
public_attr_map.py 30 attrs = [] variable
35 attrs.append("{{ u\"{}\", {} }}".format(node.get('name'), sdkLevel))
43 print ",\n ".join(attrs)
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapMessagesListing.java 54 HashMap<String, String> attrs = new HashMap<String, String>(); local
57 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
61 BluetoothMapMessage msg = new BluetoothMapMessage(attrs);
  /frameworks/support/v7/appcompat/src/android/support/v7/content/res/
AppCompatColorStateListInflater.java 55 final AttributeSet attrs = Xml.asAttributeSet(parser); local
67 return createFromXmlInner(r, parser, attrs, theme);
79 @NonNull XmlPullParser parser, @NonNull AttributeSet attrs,
88 return inflate(r, parser, attrs, theme);
95 @NonNull AttributeSet attrs, @Nullable Resources.Theme theme)
113 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.ColorStateListItem);
128 final int numAttrs = attrs.getAttributeCount();
131 final int stateResId = attrs.getAttributeNameResource(i);
135 stateSpec[j++] = attrs.getAttributeBooleanValue(i, false)
163 AttributeSet set, int[] attrs) {
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
AppCompatTextHelperV17.java 37 void loadFromAttributes(AttributeSet attrs, int defStyleAttr) {
38 super.loadFromAttributes(attrs, defStyleAttr);
43 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.AppCompatTextHelper,
  /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/Bluetooth/src/com/android/bluetooth/mapclient/obex/
MessagesListing.java 54 HashMap<String, String> attrs = new HashMap<String, String>(); local
57 attrs.put(xpp.getAttributeName(i), xpp.getAttributeValue(i));
61 Message msg = new Message(attrs);
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListPinnedHeaderView.java 35 public ContactListPinnedHeaderView(Context context, AttributeSet attrs, View parent) {
36 super(context, attrs);
41 TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.ContactListItemView);
  /packages/apps/Dialer/java/com/android/dialer/widget/
ResizingTextEditText.java 31 public ResizingTextEditText(Context context, AttributeSet attrs) {
32 super(context, attrs);
34 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ResizingText);
ResizingTextTextView.java 31 public ResizingTextTextView(Context context, AttributeSet attrs) {
32 super(context, attrs);
34 TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.ResizingText);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/
FixedAspectSurfaceView.java 42 public FixedAspectSurfaceView(Context context, AttributeSet attrs) {
43 super(context, attrs);
47 context.getTheme().obtainStyledAttributes(attrs, R.styleable.FixedAspectSurfaceView, 0, 0);

Completed in 591 milliseconds

<<31323334353637383940>>