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

1 2 3 4 5 6 7 8 91011>>

  /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 31 Attrs : name stmt_list low_pc high_pc language comp_dir producer
41 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
48 Attrs : name byte_size encoding
55 Attrs : name stmt_list low_pc high_pc language comp_dir producer
65 Attrs : name low_pc high_pc prototyped decl_file decl_line external frame_base type
72 Attrs : name byte_size encoding
79 Attrs : name stmt_list low_pc high_pc language comp_dir producer
89 Attrs : sibling name low_pc high_pc prototyped decl_file decl_line external frame_base type
96 Attrs : sibling name decl_file decl_line declaration external type
101 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...]
  /sdk/testapps/basicProjectWithJava/src/com/android/tests/basicProjectWithJava/
MyTextView.java 11 public MyTextView(Context context, AttributeSet attrs, int defStyle) {
12 super(context, attrs, defStyle);
18 public MyTextView(Context context, AttributeSet attrs) {
19 super(context, attrs);
  /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...]
  /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::InReg)
43 if (Attrs & Attribute::NoAlias)
45 if (Attrs & Attribute::NoCapture)
47 if (Attrs & Attribute::StructRet
    [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);
  /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...]
  /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 42 * @param attrs
46 public BrowserWebView(Context context, AttributeSet attrs, int defStyle,
48 super(context, attrs, defStyle, javascriptInterfaces, privateBrowsing);
53 * @param attrs
57 Context context, AttributeSet attrs, int defStyle, boolean privateBrowsing) {
58 super(context, attrs, defStyle, privateBrowsing);
63 * @param attrs
65 public BrowserWebView(Context context, AttributeSet attrs) {
66 super(context, attrs);
  /packages/apps/Mms/src/com/android/mms/ui/
QuickContactDivot.java 25 public QuickContactDivot(Context context, AttributeSet attrs, int defStyle) {
26 super(context, attrs, defStyle);
27 initialize(attrs);
30 public QuickContactDivot(Context context, AttributeSet attrs) {
31 super(context, attrs);
32 initialize(attrs);
40 private void initialize(AttributeSet attrs) {
41 if (attrs != null) {
42 mPosition = attrs.getAttributeListValue(null, "position", sPositionChoices, -1);
  /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...]
  /external/chromium/chrome/browser/autofill/
autofill_xml_parser.cc 43 const char** attrs) {
53 // |attrs| is a NULL-terminated list of (attribute, value) pairs.
54 while (*attrs) {
55 buzz::QName attribute_qname = context->ResolveQName(attrs[0], true);
58 if (strcmp(attrs[1], "true") == 0)
60 else if (strcmp(attrs[1], "false") == 0)
63 *experiment_id_ = attrs[1];
67 attrs += 2;
70 if (!attrs[0]) {
79 buzz::QName attribute_qname = context->ResolveQName(attrs[0], true)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
Resources_Theme_Delegate.java 39 int[] attrs) {
40 return RenderSessionImpl.getCurrentContext().obtainStyledAttributes(attrs);
46 int resid, int[] attrs)
48 return RenderSessionImpl.getCurrentContext().obtainStyledAttributes(resid, attrs);
54 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
56 set, attrs, defStyleAttr, defStyleRes);
  /external/bluetooth/bluez/cups/
sdp.c 42 sdp_list_t *srch, *attrs, *rsp; local
54 attrs = sdp_list_append(NULL, &attr1);
56 attrs = sdp_list_append(attrs, &attr2);
58 err = sdp_service_search_attr_req(sdp, srch, SDP_ATTR_REQ_INDIVIDUAL, attrs, &rsp);
87 sdp_list_t *srch, *attrs, *rsp; local
99 attrs = sdp_list_append(NULL, &attr);
101 err = sdp_service_search_attr_req(sdp, srch, SDP_ATTR_REQ_INDIVIDUAL, attrs, &rsp);
  /external/skia/src/utils/mac/
skia_mac.cpp 11 WindowAttributes attrs = kWindowStandardHandlerAttribute | local
19 CreateNewWindow(kDocumentWindowClass, attrs, &bounds, &window);
  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 35 public SizeBoundingFrameLayout(Context context, AttributeSet attrs, int defStyle) {
36 super(context, attrs, defStyle);
37 initFromAttributeSet(context, attrs);
40 public SizeBoundingFrameLayout(Context context, AttributeSet attrs) {
41 super(context, attrs);
42 initFromAttributeSet(context, attrs);
49 private void initFromAttributeSet(Context c, AttributeSet attrs) {
50 TypedArray a = c.obtainStyledAttributes(attrs,
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 169 Attributes attrs)
176 mAttrWrapper.setAttributes(attrs);
193 Attributes attrs; field in class:SAX1ParserAdapter.AttributesWrapper
198 attrs = a;
203 return attrs.getLength();
208 String n = attrs.getQName(i);
209 return (n == null) ? attrs.getLocalName(i) : n;
214 return attrs.getType(i);
219 return attrs.getType(name);
224 return attrs.getValue(i)
    [all...]
  /external/openssl/crypto/store/
str_lib.c 1285 static void STORE_ATTR_INFO_attr_free(STORE_ATTR_INFO *attrs,
1288 if (ATTR_IS_SET(attrs,code))
1295 STORE_ATTR_INFO_modify_cstr(attrs, code, NULL, 0);
1302 STORE_ATTR_INFO_modify_sha1str(attrs, code, NULL, 0);
1306 STORE_ATTR_INFO_modify_dn(attrs, code, NULL);
1309 STORE_ATTR_INFO_modify_number(attrs, code, NULL);
1316 int STORE_ATTR_INFO_free(STORE_ATTR_INFO *attrs)
1318 if (attrs)
1322 STORE_ATTR_INFO_attr_free(attrs, i);
1323 OPENSSL_free(attrs);
1561 STORE_ATTR_INFO *attrs = NULL; local
    [all...]

Completed in 698 milliseconds

1 2 3 4 5 6 7 8 91011>>