HomeSort by relevance Sort by last modified time
    Searched full:attrs (Results 1 - 25 of 1595) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
CustomView3.java.txt 9 public CustomView3(Context context, AttributeSet attrs, int defStyle) {
10 super(context, attrs, defStyle);
13 public CustomView3(Context context, AttributeSet attrs) {
14 super(context, attrs);
CustomView2.java.txt 9 Context context, AttributeSet attrs, int defStyle) {
10 super(context, attrs, defStyle);
  /external/bluetooth/bluez/scripts/
bluetooth-serial.rules 2 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Brain Boxes", ATTRS{prod_id2}=="Bluetooth PC Card", ENV{HCIOPTS}="bboxes", RUN+="bluetooth_serial"
5 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Xircom", ATTRS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial"
8 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="Xircom", ATTRS{prod_id3}=="CBT", ENV{HCIOPTS}="xircom", RUN+="bluetooth_serial"
11 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="IBM", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial"
14 SUBSYSTEM=="tty", SUBSYSTEMS=="pcmcia", ATTRS{prod_id1}=="TDK", ATTRS{prod_id2}=="Bluetooth PC Card II", ENV{HCIOPTS}="tdk", RUN+="bluetooth_serial
    [all...]
bluetooth-hid2hci.rules 10 ATTRS{bDeviceClass}=="00", ATTRS{idVendor}=="413c", ATTRS{bmAttributes}=="e0", \
14 KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[35e]", \
16 KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[4abc]|c71[34bc]", \
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
Attributes2ImplTest.java 66 Attributes2Impl attrs = new Attributes2Impl(); local
67 attrs.addAttribute("", "", "john", "string", "doe");
69 attrs.setAttributes(empty);
70 assertEquals(0, attrs.getLength());
72 attrs.setAttributes(multi);
74 assertEquals(multi.getURI(i), attrs.getURI(i));
75 assertEquals(multi.getLocalName(i), attrs.getLocalName(i));
76 assertEquals(multi.getQName(i), attrs.getQName(i));
77 assertEquals(multi.getType(i), attrs.getType(i));
78 assertEquals(multi.getValue(i), attrs.getValue(i))
116 Attributes2Impl attrs = new Attributes2Impl(); local
150 Attributes2Impl attrs = new Attributes2Impl(multi); local
195 Attributes2Impl attrs = new Attributes2Impl(multi); local
    [all...]
  /external/elfutils/tests/
run-show-die-info.sh 38 Attrs : name stmt_list low_pc high_pc language comp_dir producer
48 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
55 Attrs : name byte_size encoding
62 Attrs : name stmt_list low_pc high_pc language comp_dir producer
72 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
79 Attrs : name byte_size encoding
86 Attrs : name stmt_list low_pc high_pc language comp_dir producer
96 Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
103 Attrs : sibling name decl_file decl_line declaration external type
108 Attrs
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
StopProgressView.java 22 * @param attrs
26 public StopProgressView(Context context, AttributeSet attrs, int defStyle, int styleRes) {
27 super(context, attrs, defStyle, styleRes);
28 init(attrs);
33 * @param attrs
36 public StopProgressView(Context context, AttributeSet attrs, int defStyle) {
37 super(context, attrs, defStyle);
38 init(attrs);
43 * @param attrs
45 public StopProgressView(Context context, AttributeSet attrs) {
    [all...]
  /external/harfbuzz/tests/linebreaking/
main.cpp 37 QVector<HB_CharAttributes> attrs(str.length());
44 attrs.data());
45 return attrs;
149 QVector<HB_CharAttributes> attrs = getCharAttributes(str); local
154 if ( (attrs[i].lineBreakType != HB_NoBreak) != (bool)b->breaks[i] ) {
155 qDebug("test case \"%s\" failed at char %d; break type: %d", b->utf8, i, attrs[i].lineBreakType);
156 QCOMPARE( (attrs[i].lineBreakType != HB_NoBreak), (bool)b->breaks[i] );
159 QVERIFY(attrs[i].lineBreakType == HB_ForcedBreak);
171 QVector<HB_CharAttributes> attrs = getCharAttributes(txt); local
172 QVERIFY(attrs[1].charStop)
182 QVector<HB_CharAttributes> attrs = getCharAttributes(txt); local
197 QVector<HB_CharAttributes> attrs = getCharAttributes(txt, HB_Script_Thai); local
    [all...]
  /cts/tests/tests/preference2/src/android/preference2/cts/
CustomCheckBoxPreference.java 29 public CustomCheckBoxPreference(Context context, AttributeSet attrs) {
30 super(context, attrs);
31 init(attrs);
40 public CustomCheckBoxPreference(Context context, AttributeSet attrs, int defStyle) {
41 super(context, attrs, defStyle);
42 init(attrs);
47 private void init(AttributeSet attrs) {
48 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
CustomDialogPreference.java 29 public CustomDialogPreference(Context context, AttributeSet attrs) {
30 super(context, attrs);
31 init(attrs);
36 public CustomDialogPreference(Context context, AttributeSet attrs, int defStyle) {
37 super(context, attrs, defStyle);
38 init(attrs);
43 private void init(AttributeSet attrs) {
44 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
CustomEditTextPreference.java 29 public CustomEditTextPreference(Context context, AttributeSet attrs) {
30 super(context, attrs);
31 init(attrs);
40 public CustomEditTextPreference(Context context, AttributeSet attrs, int defStyle) {
41 super(context, attrs, defStyle);
42 init(attrs);
47 private void init(AttributeSet attrs) {
48 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
CustomPreferenceGroup.java 30 public CustomPreferenceGroup(Context context, AttributeSet attrs) {
31 super(context, attrs);
32 init(attrs);
39 public CustomPreferenceGroup(Context context, AttributeSet attrs, int defStyle) {
40 super(context, attrs, defStyle);
41 init(attrs);
44 private void init(AttributeSet attrs) {
45 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
CustomSwitchPreference.java 30 public CustomSwitchPreference(Context context, AttributeSet attrs) {
31 super(context, attrs);
32 init(attrs);
41 public CustomSwitchPreference(Context context, AttributeSet attrs, int defStyle) {
42 super(context, attrs, defStyle);
43 init(attrs);
48 private void init(AttributeSet attrs) {
49 TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CustPref);
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
VerticalSlider.java 12 public VerticalSlider(Context context, AttributeSet attrs) {
13 super(context, attrs);
  /external/clang/test/CodeGen/
packed-union.c 6 } __attribute__((__packed__)) attrs; typedef in typeref:struct:_attrs
10 attrs file_attrs;
  /external/chromium/chrome/browser/metrics/
metrics_response.cc 23 const xmlChar** attrs) {
24 if (!name || !attrs)
30 for (int i = 0; attrs[i] && attrs[i + i]; i += 2) {
31 if (strcmp(Char(attrs[i]), "interval") == 0) {
32 state->interval = atoi(Char(attrs[i + 1]));
37 for (int i = 0; attrs[i] && attrs[i + 1]; i += 2) {
38 if (strcmp(Char(attrs[i]), "events") == 0) {
39 state->events = atoi(Char(attrs[i + 1]))
    [all...]
  /external/llvm/lib/VMCore/
Attributes.cpp 29 std::string Attribute::getAsString(Attributes Attrs) {
31 if (Attrs & Attribute::ZExt)
33 if (Attrs & Attribute::SExt)
35 if (Attrs & Attribute::NoReturn)
37 if (Attrs & Attribute::NoUnwind)
39 if (Attrs & Attribute::UWTable)
41 if (Attrs & Attribute::ReturnsTwice)
43 if (Attrs & Attribute::InReg)
45 if (Attrs & Attribute::NoAlias)
47 if (Attrs & Attribute::NoCapture
    [all...]
  /cts/tests/src/android/view/cts/
MockViewStub.java 28 public MockViewStub(Context context, AttributeSet attrs) {
29 super(context, attrs);
32 public MockViewStub(Context context, AttributeSet attrs, int defStyle) {
33 super(context, attrs, defStyle);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
RotationToggle.java 17 public RotationToggle(Context context, AttributeSet attrs) {
18 super(context, attrs);
21 public RotationToggle(Context context, AttributeSet attrs, int defStyle) {
22 super(context, attrs, defStyle);
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderEditText.java 16 public FolderEditText(Context context, AttributeSet attrs) {
17 super(context, attrs);
20 public FolderEditText(Context context, AttributeSet attrs, int defStyle) {
21 super(context, attrs, defStyle);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttrsXmlParserTest.java 65 AttributeInfo[] attrs = info.getAttributes(); local
66 assertEquals(1, attrs.length);
100 AttributeInfo[] attrs = dep.getAttributes(); local
101 assertEquals(4, attrs.length);
103 assertEquals("deprecated-inline", attrs[0].getName());
104 assertEquals("In-line deprecated.", attrs[0].getDeprecatedDoc());
105 assertEquals("Deprecated comments using delimiters.", attrs[0].getJavaDoc());
107 assertEquals("deprecated-multiline", attrs[1].getName());
109 attrs[1].getDeprecatedDoc());
110 assertEquals("Deprecated comments on their own line.", attrs[1].getJavaDoc())
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
RadioButtonTest.java 40 AttributeSet attrs = mContext.getResources().getLayout(R.layout.radiogroup_1); local
41 assertNotNull(attrs);
50 new RadioButton(mContext, attrs);
52 new RadioButton(null, attrs);
58 new RadioButton(mContext, attrs, 0);
60 new RadioButton(null, attrs, 0);
65 new RadioButton(mContext, attrs, Integer.MAX_VALUE);
66 new RadioButton(mContext, attrs, Integer.MIN_VALUE);
  /frameworks/base/core/tests/coretests/src/android/view/
ViewAttachView.java 35 public ViewAttachView(Context context, AttributeSet attrs, int defStyle) {
36 super(context, attrs, defStyle);
37 init(attrs, defStyle);
40 public ViewAttachView(Context context, AttributeSet attrs) {
41 super(context, attrs);
42 init(attrs, 0);
50 private void init(AttributeSet attrs, int defStyle) {
  /packages/apps/Browser/src/com/android/browser/
BrowserWebView.java 43 * @param attrs
47 public BrowserWebView(Context context, AttributeSet attrs, int defStyle,
49 super(context, attrs, defStyle, javascriptInterfaces, privateBrowsing);
54 * @param attrs
58 Context context, AttributeSet attrs, int defStyle, boolean privateBrowsing) {
59 super(context, attrs, defStyle, privateBrowsing);
64 * @param attrs
66 public BrowserWebView(Context context, AttributeSet attrs) {
67 super(context, attrs);
  /external/chromium/chrome/browser/resources/
wrench_menu.js 53 init: function(menu, attrs, model) {
55 this.attrs = attrs;
56 if (this.attrs.font) {
57 this.style.font = attrs.font;
60 if (attrs.command_id == menu.config_.IDC_COPY) {
126 if (this.attrs.font) {
127 this.label_.style.font = this.attrs.font;
128 this.cut_.style.font = this.attrs.font;
149 init: function(menu, attrs, model)
    [all...]

Completed in 2813 milliseconds

1 2 3 4 5 6 7 8 91011>>