/external/webkit/Source/WebCore/svg/ |
SVGMarkerElement.cpp | 81 void SVGMarkerElement::parseMappedAttribute(Attribute* attr) 83 if (attr->name() == SVGNames::markerUnitsAttr) { 84 if (attr->value() == "userSpaceOnUse") 86 else if (attr->value() == "strokeWidth") 88 } else if (attr->name() == SVGNames::refXAttr) 89 setRefXBaseValue(SVGLength(LengthModeWidth, attr->value())); 90 else if (attr->name() == SVGNames::refYAttr) 91 setRefYBaseValue(SVGLength(LengthModeHeight, attr->value())); 92 else if (attr->name() == SVGNames::markerWidthAttr) 93 setMarkerWidthBaseValue(SVGLength(LengthModeWidth, attr->value())) [all...] |
SVGMaskElement.cpp | 65 void SVGMaskElement::parseMappedAttribute(Attribute* attr) 67 if (attr->name() == SVGNames::maskUnitsAttr) { 68 if (attr->value() == "userSpaceOnUse") 70 else if (attr->value() == "objectBoundingBox") 72 } else if (attr->name() == SVGNames::maskContentUnitsAttr) { 73 if (attr->value() == "userSpaceOnUse") 75 else if (attr->value() == "objectBoundingBox") 77 } else if (attr->name() == SVGNames::xAttr) 78 setXBaseValue(SVGLength(LengthModeWidth, attr->value())); 79 else if (attr->name() == SVGNames::yAttr [all...] |
SVGTextPositioningElement.cpp | 47 void SVGTextPositioningElement::parseMappedAttribute(Attribute* attr) 49 if (attr->name() == SVGNames::xAttr) { 51 newList.parse(attr->value(), LengthModeWidth); 54 } else if (attr->name() == SVGNames::yAttr) { 56 newList.parse(attr->value(), LengthModeHeight); 59 } else if (attr->name() == SVGNames::dxAttr) { 61 newList.parse(attr->value(), LengthModeWidth); 64 } else if (attr->name() == SVGNames::dyAttr) { 66 newList.parse(attr->value(), LengthModeHeight); 69 } else if (attr->name() == SVGNames::rotateAttr) [all...] |
SVGURIReference.cpp | 30 bool SVGURIReference::parseMappedAttribute(Attribute* attr) 32 if (attr->name().matches(XLinkNames::hrefAttr)) { 33 setHrefBaseValue(attr->value());
|
SVGClipPathElement.cpp | 52 void SVGClipPathElement::parseMappedAttribute(Attribute* attr) 54 if (attr->name() == SVGNames::clipPathUnitsAttr) { 55 if (attr->value() == "userSpaceOnUse") 57 else if (attr->value() == "objectBoundingBox") 60 if (SVGTests::parseMappedAttribute(attr)) 62 if (SVGLangSpace::parseMappedAttribute(attr)) 64 if (SVGExternalResourcesRequired::parseMappedAttribute(attr)) 66 SVGStyledTransformableElement::parseMappedAttribute(attr);
|
/external/kernel-headers/original/linux/ |
sysfs.h | 37 .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \ 43 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \ 47 #define __ATTR_NULL { .attr = { .name = NULL } } 49 #define attr_name(_attr) (_attr).attr.name 54 struct attribute attr; member in struct:bin_attribute 59 int (*mmap)(struct kobject *, struct bin_attribute *attr, 106 sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode); 117 int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr); 118 int sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr); 122 void sysfs_notify(struct kobject * k, char *dir, char *attr); [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLScriptElement.cpp | 51 bool HTMLScriptElement::isURLAttribute(Attribute* attr) const 53 return attr->name() == srcAttr; 62 void HTMLScriptElement::attributeChanged(Attribute* attr, bool preserveDecls) 64 if (attr->name() == asyncAttr) 66 HTMLElement::attributeChanged(attr, preserveDecls); 69 void HTMLScriptElement::parseMappedAttribute(Attribute* attr) 71 const QualifiedName& attrName = attr->name(); 74 handleSourceAttribute(attr->value()); 76 setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr)); 78 setAttributeEventListener(eventNames().beforeloadEvent, createAttributeEventListener(this, attr)); [all...] |
HTMLStyleElement.cpp | 56 void HTMLStyleElement::parseMappedAttribute(Attribute* attr) 58 if (attr->name() == titleAttr && m_sheet) 59 m_sheet->setTitle(attr->value()); 60 else if (attr->name() == onbeforeprocessAttr) 61 setAttributeEventListener(eventNames().beforeprocessEvent, createAttributeEventListener(this, attr)); 63 HTMLElement::parseMappedAttribute(attr);
|
HTMLButtonElement.cpp | 82 void HTMLButtonElement::parseMappedAttribute(Attribute* attr) 84 if (attr->name() == typeAttr) { 85 if (equalIgnoringCase(attr->value(), "reset")) 87 else if (equalIgnoringCase(attr->value(), "button")) 92 } else if (attr->name() == alignAttr) { 96 HTMLFormControlElement::parseMappedAttribute(attr); 172 bool HTMLButtonElement::isURLAttribute(Attribute* attr) const 174 return attr->name() == formactionAttr;
|
HTMLDataGridColElement.cpp | 153 void HTMLDataGridColElement::parseMappedAttribute(Attribute* attr) 155 HTMLElement::parseMappedAttribute(attr); 160 if (attr->name() == labelAttr) 162 else if (attr->name() == typeAttr) 164 else if (attr->name() == primaryAttr) 166 else if (attr->name() == sortableAttr) 168 else if (attr->name() == sortdirectionAttr) 170 else if (isIdAttributeName(attr->name()))
|
HTMLObjectElement.cpp | 80 void HTMLObjectElement::parseMappedAttribute(Attribute* attr) 82 if (attr->name() == typeAttr) { 83 m_serviceType = attr->value().lower(); 91 } else if (attr->name() == dataAttr) { 92 m_url = stripLeadingAndTrailingHTMLSpaces(attr->value()); 101 } else if (attr->name() == classidAttr) { 102 m_classId = attr->value(); 105 } else if (attr->name() == onloadAttr) 106 setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr)); 107 else if (attr->name() == onbeforeloadAttr [all...] |
/external/webkit/Tools/Scripts/webkitpy/test/ |
skip.py | 36 attr = getattr(klass, name) 37 if not callable(attr): 41 setattr(klass, name, _skipped_method(attr, message, logger))
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
attrgetownerelement03.java | 54 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement">http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement</a> 80 Attr attr; local 82 attr = doc.createAttributeNS("http://www.w3.org/DOM", "dom:attr"); 83 ownerElement = attr.getOwnerElement();
|
/system/extras/fatblock/ |
fat.c | 36 char *name, uint8_t attr, 45 de->attr = attr;
|
/device/samsung/crespo/sec_mm/sec_omx/sec_osal/ |
SEC_OSAL_Thread.c | 46 pthread_attr_t attr; member in struct:_SEC_THREAD_HANDLE_TYPE 64 pthread_attr_init(&thread->attr); 66 pthread_attr_setstacksize(&thread->attr, thread->stack_size); 70 pthread_attr_setschedparam(&thread->attr, &thread->schedparam); 72 detach_ret = pthread_attr_setdetachstate(&thread->attr, PTHREAD_CREATE_JOINABLE); 78 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
|
/external/elfutils/libdw/ |
dwarf_getlocation.c | 63 attr_ok (Dwarf_Attribute *attr) 65 if (attr == NULL) 69 switch (attr->code) 342 dwarf_getlocation (attr, llbuf, listlen) 343 Dwarf_Attribute *attr; 347 if (! attr_ok (attr)) 352 if (INTUSE(dwarf_formblock) (attr, &block) != 0) 355 return getlocation (attr->cu, &block, llbuf, listlen); 359 dwarf_getlocation_addr (attr, address, llbufs, listlens, maxlocs) 360 Dwarf_Attribute *attr; [all...] |
/external/llvm/lib/DebugInfo/ |
DWARFDebugInfoEntry.h | 43 uint32_t *offset_ptr, uint16_t attr, uint16_t form, 110 const uint16_t attr, DWARFFormValue &formValue, 114 const uint16_t attr, 118 const uint16_t attr, 122 const uint16_t attr, 126 const uint16_t attr,
|
/external/llvm/lib/Support/ |
Mutex.cpp | 50 pthread_mutexattr_t attr; 53 int errorcode = pthread_mutexattr_init(&attr); 59 errorcode = pthread_mutexattr_settype(&attr, kind); 64 errorcode = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE); 69 errorcode = pthread_mutex_init(mutex, &attr); 73 errorcode = pthread_mutexattr_destroy(&attr);
|
/external/webkit/Source/WebCore/wml/ |
WMLTemplateElement.cpp | 51 void WMLTemplateElement::parseMappedAttribute(Attribute* attr) 55 if (attr->name() == onenterforwardAttr) 57 else if (attr->name() == onenterbackwardAttr) 59 else if (attr->name() == ontimerAttr) 62 WMLElement::parseMappedAttribute(attr); 70 RefPtr<WMLIntrinsicEvent> event = WMLIntrinsicEvent::create(document(), attr->value());
|
WMLDoElement.cpp | 104 void WMLDoElement::parseMappedAttribute(Attribute* attr) 106 if (attr->name() == HTMLNames::typeAttr) 107 m_type = parseValueForbiddingVariableReferences(attr->value()); 108 else if (attr->name() == HTMLNames::nameAttr) 109 m_name = parseValueForbiddingVariableReferences(attr->value()); 110 else if (attr->name() == optionalAttr) 111 m_isOptional = (attr->value() == "true"); 113 WMLElement::parseMappedAttribute(attr);
|
WMLImageLoader.cpp | 50 String WMLImageLoader::sourceURI(const AtomicString& attr) const 52 return KURL(element()->baseURI(), stripLeadingAndTrailingHTMLSpaces(attr));
|
WMLOptionElement.cpp | 83 void WMLOptionElement::parseMappedAttribute(Attribute* attr) 85 if (attr->name() == HTMLNames::valueAttr) 86 m_data.setValue(parseValueSubstitutingVariableReferences(attr->value())); 87 else if (attr->name() == HTMLNames::titleAttr) 88 m_data.setLabel(parseValueSubstitutingVariableReferences(attr->value())); 89 else if (attr->name() == onpickAttr) { 91 RefPtr<WMLIntrinsicEvent> event = WMLIntrinsicEvent::create(document(), attr->value()); 96 WMLFormControlElement::parseMappedAttribute(attr);
|
/external/wpa_supplicant_8/src/eap_peer/ |
eap_aka.c | 254 struct eap_sim_attrs *attr) 256 if (attr->next_pseudonym) { 264 attr->next_pseudonym, 265 attr->next_pseudonym_len); 276 data->pseudonym = os_malloc(attr->next_pseudonym_len + 284 os_memcpy(data->pseudonym, attr->next_pseudonym, 285 attr->next_pseudonym_len); 287 os_memcpy(data->pseudonym + attr->next_pseudonym_len, 290 data->pseudonym_len = attr->next_pseudonym_len + realm_len; 293 if (attr->next_reauth_id) 1161 struct eap_sim_attrs attr; local [all...] |
/frameworks/wilhelm/src/ |
locks.h | 22 extern void object_unlock_exclusive_attributes_(IObject *thiz, unsigned attr, 28 extern void object_unlock_exclusive_attributes(IObject *thiz, unsigned attr); 37 #define object_unlock_exclusive_attributes(thiz, attr) \ 38 object_unlock_exclusive_attributes_((thiz), (attr), __FILE__, __LINE__) 53 #define interface_unlock_exclusive_attributes(thiz, attr) \ 54 object_unlock_exclusive_attributes(InterfaceToIObject(thiz), (attr))
|
/external/quake/quake/src/WinQuake/ |
quake-data.spec.sh | 46 %attr(644,root,root) $3/comexp.txt 47 %attr(644,root,root) $3/help.txt 48 %attr(644,root,root) $3/licinfo.txt 49 %attr(644,root,root) $3/manual.txt 50 %attr(644,root,root) $3/readme.txt 51 %attr(644,root,root) $3/rlicnse.txt 52 %attr(644,root,root) $3/techinfo.txt 53 %attr(644,root,root) $3/id1/pak0.pak 54 %attr(644,root,root) $3/id1/pak1.pak
|