Searched defs:attrs (Results 1 - 25 of 112) sorted by relevance

12345

/external/clang/test/CodeGen/
H A Dpacked-union.c6 } __attribute__((__packed__)) attrs; typedef in typeref:struct:_attrs
10 attrs file_attrs;
/external/skia/src/utils/mac/
H A Dskia_mac.cpp11 WindowAttributes attrs = kWindowStandardHandlerAttribute | local
19 CreateNewWindow(kDocumentWindowClass, attrs, &bounds, &window);
/external/chromium/chrome/browser/metrics/
H A Dmetrics_response.cc23 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[
21 SAXStartElement(void* user_data, const xmlChar* name, const xmlChar** attrs) argument
[all...]
/external/kernel-headers/original/linux/
H A Dattribute_container.h21 struct class_device_attribute **attrs; member in struct:attribute_container
/external/replicaisland/src/com/replica/replicaisland/
H A DYesNoDialogPreference.java30 public YesNoDialogPreference(Context context, AttributeSet attrs) { argument
31 this(context, attrs, android.R.attr.yesNoPreferenceStyle);
35 public YesNoDialogPreference(Context context, AttributeSet attrs, argument
37 super(context, attrs, defStyle);
H A DSliderPreference.java43 public SliderPreference(Context context, AttributeSet attrs) { argument
44 this(context, attrs, android.R.attr.preferenceStyle);
49 public SliderPreference(Context context, AttributeSet attrs, int defStyle) { argument
50 super(context, attrs, defStyle);
52 TypedArray a = context.obtainStyledAttributes(attrs,
H A DGameOverActivity.java59 public IncrementingTextView(Context context, AttributeSet attrs) { argument
60 super(context, attrs);
63 public IncrementingTextView(Context context, AttributeSet attrs, int defStyle) { argument
64 super(context, attrs, defStyle);
/external/bluetooth/bluez/cups/
H A Dsdp.c42 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/collada/include/dae/
H A DdomAny.h30 daeTArray<daeString> attrs; member in class:domAny
72 daeString getAttributeValue( daeUInt index ) const { return attrs[ index ]; }
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLCanvasElementCustom.cpp57 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());
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DAttList.java61 // * @param attrs List of attributes this will contain
63 // public AttList(NamedNodeMap attrs)
66 // m_attrs = attrs;
75 * @param attrs List of attributes this will contain
78 public AttList(NamedNodeMap attrs, DOM2Helper dh) argument
81 m_attrs = attrs;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DAttList.java52 // * @param attrs List of attributes this will contain
54 // public AttList(NamedNodeMap attrs)
57 // m_attrs = attrs;
66 * @param attrs List of attributes this will contain
69 public AttList(NamedNodeMap attrs, DOMHelper dh) argument
72 m_attrs = attrs;
/external/bluetooth/glib/tests/
H A Dgio-ls.c66 const gchar *attrs; local
69 attrs = long_attrs;
71 attrs = short_attrs;
78 GFileEnumerator *enumerator = g_file_enumerate_children (top, attrs,
/external/chromium/chrome/browser/autofill/
H A Dautofill_xml_parser.cc43 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[
41 StartElement(buzz::XmlParseContext* context, const char* name, const char** attrs) argument
115 StartElement(buzz::XmlParseContext* context, const char* name, const char** attrs) argument
[all...]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DIElement.java33 public static IElement create (final Tag tag, final AttributeSet attrs) argument
35 return new ElementImpl (tag, attrs);
110 ElementImpl (final Tag tag, final AttributeSet attrs) argument
112 super (tag, attrs);
H A DISimpleElement.java33 public static ISimpleElement create (final Tag tag, final AttributeSet attrs) argument
35 return new SimpleElementImpl (tag, attrs);
79 SimpleElementImpl (final Tag tag, final AttributeSet attrs) argument
82 if ($assert.ENABLED) $assert.ASSERT (attrs != null, "attrs = null");
85 m_attrs = attrs;
/external/harfbuzz/tests/linebreaking/
H A Dmain.cpp37 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[
182 QVector<HB_CharAttributes> attrs = getCharAttributes(txt); local
197 QVector<HB_CharAttributes> attrs = getCharAttributes(txt, HB_Script_Thai); local
[all...]
/external/libnl-headers/netlink/genl/
H A Dmngt.h31 struct nlattr ** attrs; member in struct:genl_info
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLCanvasElementCustom.cpp57 RefPtr<CanvasContextAttributes> attrs; local
60 attrs = WebGLContextAttributes::create();
61 WebGLContextAttributes* webGLAttrs = static_cast<WebGLContextAttributes*>(attrs.get());
85 CanvasRenderingContext* result = imp->getContext(contextId, attrs.get());
/external/collada/src/dae/
H A DdaeTinyXMLPlugin.cpp166 daeMetaAttributeRefArray& attrs = _meta->getMetaAttributes(); local
168 int acnt = (int)attrs.getCount();
172 writeAttribute( attrs[i], element );
/external/elfutils/tests/
H A Dshow-die-info.c83 } attrs[] = variable in typeref:struct:__anon4278
171 #define nattrs (sizeof (attrs) / sizeof (attrs[0]))
216 if (dwarf_hasattr (die, attrs[cnt].code))
217 printf (" %s", attrs[cnt].name);
/external/quake/src/com/android/quake/
H A DQuakeView.java60 public QuakeView(Context context, AttributeSet attrs) { argument
61 super(context, attrs);
/external/webkit/Source/WebCore/xml/
H A DXPathStep.cpp346 NamedNodeMap* attrs = context->attributes(); local
347 if (!attrs)
350 for (unsigned i = 0; i < attrs->length(); ++i) {
351 RefPtr<Attr> attr = attrs->attributeItem(i)->createAttrIfNeeded(static_cast<Element*>(context));
/external/webkit/Source/WebKit/win/
H A DDefaultPolicyDelegate.cpp162 WIN32_FILE_ATTRIBUTE_DATA attrs; local
163 if (GetFileAttributesEx(url, GetFileExInfoStandard, &attrs))
164 isDirectory = !!(attrs.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY);
/external/bluetooth/bluez/tools/
H A Dciptool.c94 sdp_list_t *srch, *attrs, *rsp; local
106 attrs = sdp_list_append(NULL, &attr);
108 err = sdp_service_search_attr_req(s, srch, SDP_ATTR_REQ_INDIVIDUAL, attrs, &rsp);

Completed in 514 milliseconds

12345