/external/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 29 const TiXmlAttribute* attr = elem->FirstAttribute(); local 30 while (attr) 32 //printf("walk_elem_attr(%s=\"%s\") ", attr->Name(), attr->Value()); 34 parser->addAttribute(attr->Name(), attr->Value()); 35 attr = attr->Next();
|
/external/webkit/WebCore/html/ |
HTMLFrameElement.cpp | 83 void HTMLFrameElement::parseMappedAttribute(MappedAttribute* attr) 85 if (attr->name() == frameborderAttr) { 86 m_frameBorder = attr->value().toInt(); 87 m_frameBorderSet = !attr->isNull(); 89 } else if (attr->name() == noresizeAttr) { 92 // FIXME: Since this does not check attr->isNull(), it can 97 HTMLFrameElementBase::parseMappedAttribute(attr);
|
HTMLKeygenElement.cpp | 64 void HTMLKeygenElement::parseMappedAttribute(MappedAttribute* attr) 66 if (attr->name() == challengeAttr) 67 m_challenge = attr->value(); 68 else if (attr->name() == keytypeAttr) 69 m_keyType = attr->value(); 72 HTMLFormControlElement::parseMappedAttribute(attr);
|
HTMLTableCellElement.cpp | 92 void HTMLTableCellElement::parseMappedAttribute(MappedAttribute *attr) 94 if (attr->name() == rowspanAttr) { 95 rSpan = !attr->isNull() ? attr->value().toInt() : 1; 99 } else if (attr->name() == colspanAttr) { 100 cSpan = !attr->isNull() ? attr->value().toInt() : 1; 104 } else if (attr->name() == nowrapAttr) { 108 if (!attr->isNull()) 109 addCSSProperty(attr, CSSPropertyWhiteSpace, CSSValueWebkitNowrap) [all...] |
HTMLButtonElement.cpp | 81 void HTMLButtonElement::parseMappedAttribute(MappedAttribute* attr) 83 if (attr->name() == typeAttr) { 84 if (equalIgnoringCase(attr->value(), "reset")) 86 else if (equalIgnoringCase(attr->value(), "button")) 90 } else if (attr->name() == alignAttr) { 93 } else if (attr->name() == onfocusAttr) { 94 setAttributeEventListener(eventNames().focusEvent, createAttributeEventListener(this, attr)); 95 } else if (attr->name() == onblurAttr) { 96 setAttributeEventListener(eventNames().blurEvent, createAttributeEventListener(this, attr)); 98 HTMLFormControlElement::parseMappedAttribute(attr); [all...] |
HTMLMetaElement.cpp | 49 void HTMLMetaElement::parseMappedAttribute(MappedAttribute* attr) 51 if (attr->name() == http_equivAttr) { 52 m_equiv = attr->value(); 54 } else if (attr->name() == contentAttr) { 55 m_content = attr->value(); 57 } else if (attr->name() == nameAttr) { 60 HTMLElement::parseMappedAttribute(attr);
|
/external/webkit/WebCore/svg/ |
SVGFEBlendElement.cpp | 41 void SVGFEBlendElement::parseMappedAttribute(MappedAttribute* attr) 43 const String& value = attr->value(); 44 if (attr->name() == SVGNames::modeAttr) { 55 } else if (attr->name() == SVGNames::inAttr) 57 else if (attr->name() == SVGNames::in2Attr) 60 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGFEMorphologyElement.cpp | 50 void SVGFEMorphologyElement::parseMappedAttribute(MappedAttribute* attr) 52 const String& value = attr->value(); 53 if (attr->name() == SVGNames::operatorAttr) { 58 } else if (attr->name() == SVGNames::inAttr) 60 else if (attr->name() == SVGNames::radiusAttr) { 67 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGFEOffsetElement.cpp | 26 #include "Attr.h" 41 void SVGFEOffsetElement::parseMappedAttribute(MappedAttribute* attr) 43 const String& value = attr->value(); 44 if (attr->name() == SVGNames::dxAttr) 46 else if (attr->name() == SVGNames::dyAttr) 48 else if (attr->name() == SVGNames::inAttr) 51 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGComponentTransferFunctionElement.cpp | 47 void SVGComponentTransferFunctionElement::parseMappedAttribute(MappedAttribute* attr) 49 const String& value = attr->value(); 50 if (attr->name() == SVGNames::typeAttr) { 62 else if (attr->name() == SVGNames::tableValuesAttr) 64 else if (attr->name() == SVGNames::slopeAttr) 66 else if (attr->name() == SVGNames::interceptAttr) 68 else if (attr->name() == SVGNames::amplitudeAttr) 70 else if (attr->name() == SVGNames::exponentAttr) 72 else if (attr->name() == SVGNames::offsetAttr) 75 SVGElement::parseMappedAttribute(attr); [all...] |
SVGFECompositeElement.cpp | 42 void SVGFECompositeElement::parseMappedAttribute(MappedAttribute *attr) 44 const String& value = attr->value(); 45 if (attr->name() == SVGNames::operatorAttr) { 58 } else if (attr->name() == SVGNames::inAttr) 60 else if (attr->name() == SVGNames::in2Attr) 62 else if (attr->name() == SVGNames::k1Attr) 64 else if (attr->name() == SVGNames::k2Attr) 66 else if (attr->name() == SVGNames::k3Attr) 68 else if (attr->name() == SVGNames::k4Attr) 71 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr); [all...] |
SVGForeignObjectElement.cpp | 53 void SVGForeignObjectElement::parseMappedAttribute(MappedAttribute* attr) 55 const AtomicString& value = attr->value(); 56 if (attr->name() == SVGNames::xAttr) 58 else if (attr->name() == SVGNames::yAttr) 60 else if (attr->name() == SVGNames::widthAttr) 62 else if (attr->name() == SVGNames::heightAttr) 65 if (SVGTests::parseMappedAttribute(attr)) 67 if (SVGLangSpace::parseMappedAttribute(attr)) 69 if (SVGExternalResourcesRequired::parseMappedAttribute(attr)) 71 SVGStyledTransformableElement::parseMappedAttribute(attr); [all...] |
SVGFEDiffuseLightingElement.cpp | 25 #include "Attr.h" 52 void SVGFEDiffuseLightingElement::parseMappedAttribute(MappedAttribute *attr) 54 const String& value = attr->value(); 55 if (attr->name() == SVGNames::inAttr) 57 else if (attr->name() == SVGNames::surfaceScaleAttr) 59 else if (attr->name() == SVGNames::diffuseConstantAttr) 61 else if (attr->name() == SVGNames::kernelUnitLengthAttr) { 68 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
/external/webkit/WebCore/wml/ |
WMLTemplateElement.cpp | 46 void WMLTemplateElement::parseMappedAttribute(MappedAttribute* attr) 50 if (attr->name() == onenterforwardAttr) 52 else if (attr->name() == onenterbackwardAttr) 54 else if (attr->name() == ontimerAttr) 57 WMLElement::parseMappedAttribute(attr); 65 RefPtr<WMLIntrinsicEvent> event = WMLIntrinsicEvent::create(document(), attr->value());
|
WMLAElement.cpp | 54 void WMLAElement::parseMappedAttribute(MappedAttribute* attr) 56 if (attr->name() == HTMLNames::hrefAttr) { 58 setIsLink(!attr->isNull()); 62 String value = attr->value(); 66 } else if (attr->name() == HTMLNames::nameAttr 67 || attr->name() == HTMLNames::titleAttr 68 || attr->name() == HTMLNames::relAttr) { 71 WMLElement::parseMappedAttribute(attr); 159 bool WMLAElement::isURLAttribute(Attribute *attr) const 161 return attr->name() == HTMLNames::hrefAttr [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
sysfs.h | 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, } 33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, } 35 #define __ATTR_NULL { .attr = { .name = NULL } } 37 #define attr_name(_attr) (_attr).attr.name 42 struct attribute attr; member in struct:bin_attribute 47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
|
/system/media/opensles/libopensles/ |
locks.h | 22 extern void object_unlock_exclusive_attributes_(IObject *this, unsigned attr, 28 extern void object_unlock_exclusive_attributes(IObject *this, unsigned attr); 37 #define object_unlock_exclusive_attributes(this, attr) \ 38 object_unlock_exclusive_attributes_((this), (attr), __FILE__, __LINE__) 53 #define interface_unlock_exclusive_attributes(this, attr) \ 54 object_unlock_exclusive_attributes(InterfaceToIObject(this), (attr))
|
/external/wpa_supplicant_6/wpa_supplicant/src/radius/ |
radius.c | 215 struct radius_attr_type *attr; local 219 attr = radius_get_attr_type(hdr->type); 222 hdr->type, attr ? attr->name : "?Unknown?", hdr->length); 224 if (attr == NULL) 230 switch (attr->data_type) { 290 struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i); local 291 radius_msg_dump_attr(attr); 301 struct radius_attr_hdr *attr; local 304 attr = radius_msg_add_attr(msg 331 struct radius_attr_hdr *attr; local 415 struct radius_attr_hdr *attr; local 460 struct radius_attr_hdr *attr; local 549 struct radius_attr_hdr *attr; local 590 struct radius_attr_hdr *attr = NULL, *tmp; local 674 struct radius_attr_hdr *attr; local 732 struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i); local 978 struct radius_attr_hdr *attr; local 1100 struct radius_attr_hdr *attr = NULL, *tmp; local 1125 struct radius_attr_hdr *attr = NULL, *tmp; local 1151 struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i); local 1178 struct radius_attr_hdr *attr = NULL; local [all...] |
/external/quake/quake/src/QW/ |
glqwcl.spec.sh | 38 %attr(644,root,root) ${3}/readme.glqwcl 39 %attr(4755,root,root) ${3}/glqwcl 40 %attr(4755,root,root) ${3}/glqwcl.glx 41 %attr(755,root,root) ${3}/glqwcl.3dfxgl 42 %attr(755,root,root) ${3}/lib3dfxgl.so
|
/external/webkit/WebCore/dom/ |
NamedAttrMap.cpp | 28 #include "Attr.h" 47 if (Attr* attr = m_attributes[i]->attr()) 48 attr->m_element = 0; 119 Attr *attr = static_cast<Attr*>(arg); local 121 Attribute* a = attr->attr(); 307 Attribute *attr = attributeItem(i); local [all...] |