Searched defs:attr (Results 126 - 150 of 605) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/html/
H A DHTMLButtonElement.cpp82 void HTMLButtonElement::parseMappedAttribute(Attribute* attr) argument
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;
H A DHTMLDataGridColElement.cpp153 void HTMLDataGridColElement::parseMappedAttribute(Attribute* attr) argument
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()))
H A DHTMLFrameSetElement.cpp74 void HTMLFrameSetElement::parseMappedAttribute(Attribute* attr) argument
76 if (attr->name() == rowsAttr) {
77 if (!attr->isNull()) {
78 m_rowLengths = newLengthArray(attr->value().string(), m_totalRows);
81 } else if (attr->name() == colsAttr) {
82 if (!attr->isNull()) {
83 m_colLengths = newLengthArray(attr->value().string(), m_totalCols);
86 } else if (attr->name() == frameborderAttr) {
87 if (!attr->isNull()) {
89 if (attr
[all...]
H A DHTMLIFrameElement.cpp106 void HTMLIFrameElement::parseMappedAttribute(Attribute* attr) argument
108 if (attr->name() == widthAttr)
109 addCSSLength(attr, CSSPropertyWidth, attr->value());
110 else if (attr->name() == heightAttr)
111 addCSSLength(attr, CSSPropertyHeight, attr->value());
112 else if (attr->name() == alignAttr)
113 addHTMLAlignment(attr);
114 else if (attr
[all...]
H A DHTMLKeygenElement.cpp90 void HTMLKeygenElement::parseMappedAttribute(Attribute* attr) argument
93 if (attr->name() == disabledAttr)
94 shadowSelect()->setAttribute(attr->name(), attr->value());
96 if (attr->name() == challengeAttr)
97 m_challenge = attr->value();
98 else if (attr->name() == keytypeAttr)
99 m_keyType = attr->value();
101 HTMLFormControlElement::parseMappedAttribute(attr);
H A DHTMLMarqueeElement.cpp73 void HTMLMarqueeElement::parseMappedAttribute(Attribute* attr) argument
75 if (attr->name() == widthAttr) {
76 if (!attr->value().isEmpty())
77 addCSSLength(attr, CSSPropertyWidth, attr->value());
78 } else if (attr->name() == heightAttr) {
79 if (!attr->value().isEmpty())
80 addCSSLength(attr, CSSPropertyHeight, attr->value());
81 } else if (attr
[all...]
H A DHTMLOptGroupElement.cpp74 void HTMLOptGroupElement::parseMappedAttribute(Attribute* attr) argument
76 HTMLFormControlElement::parseMappedAttribute(attr);
H A DHTMLOutputElement.cpp59 void HTMLOutputElement::parseMappedAttribute(Attribute* attr) argument
61 if (attr->name() == HTMLNames::forAttr)
62 setFor(attr->value());
64 HTMLFormControlElement::parseMappedAttribute(attr);
H A DHTMLPlugInElement.cpp135 void HTMLPlugInElement::parseMappedAttribute(Attribute* attr) argument
137 if (attr->name() == widthAttr)
138 addCSSLength(attr, CSSPropertyWidth, attr->value());
139 else if (attr->name() == heightAttr)
140 addCSSLength(attr, CSSPropertyHeight, attr->value());
141 else if (attr->name() == vspaceAttr) {
142 addCSSLength(attr, CSSPropertyMarginTop, attr
[all...]
H A DHTMLStyleElement.cpp56 void HTMLStyleElement::parseMappedAttribute(Attribute* attr) argument
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);
/external/webkit/Source/WebCore/platform/sql/chromium/
H A DSQLiteFileSystemChromiumPosix.cpp117 int attr = static_cast<int>(PlatformBridge::databaseGetFileAttributes(fileName)); local
118 if (attr < 0) {
125 *res = 1; // if the file doesn't exist, attr < 0
128 *res = (attr & W_OK) && (attr & R_OK);
131 *res = (attr & R_OK);
H A DSQLiteFileSystemChromiumWin.cpp96 DWORD attr = PlatformBridge::databaseGetFileAttributes(fileName); local
100 *res = (attr != INVALID_FILE_ATTRIBUTES);
103 *res = ((attr & FILE_ATTRIBUTE_READONLY) == 0);
/external/webkit/Source/WebCore/svg/
H A DSVGAElement.cpp76 void SVGAElement::parseMappedAttribute(Attribute* attr) argument
78 if (attr->name() == SVGNames::targetAttr)
79 setSVGTargetBaseValue(attr->value());
81 if (SVGURIReference::parseMappedAttribute(attr))
83 if (SVGTests::parseMappedAttribute(attr))
85 if (SVGLangSpace::parseMappedAttribute(attr))
87 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
89 SVGStyledTransformableElement::parseMappedAttribute(attr);
H A DSVGCursorElement.cpp57 void SVGCursorElement::parseMappedAttribute(Attribute* attr) argument
59 if (attr->name() == SVGNames::xAttr)
60 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
61 else if (attr->name() == SVGNames::yAttr)
62 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
64 if (SVGTests::parseMappedAttribute(attr))
66 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
68 if (SVGURIReference::parseMappedAttribute(attr))
71 SVGElement::parseMappedAttribute(attr);
H A DSVGFEBlendElement.cpp49 void SVGFEBlendElement::parseMappedAttribute(Attribute* attr) argument
51 const String& value = attr->value();
52 if (attr->name() == SVGNames::modeAttr) {
63 } else if (attr->name() == SVGNames::inAttr)
65 else if (attr->name() == SVGNames::in2Attr)
68 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFEColorMatrixElement.cpp49 void SVGFEColorMatrixElement::parseMappedAttribute(Attribute* attr) argument
51 const String& value = attr->value();
52 if (attr->name() == SVGNames::typeAttr) {
61 } else if (attr->name() == SVGNames::inAttr)
63 else if (attr->name() == SVGNames::valuesAttr) {
69 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFECompositeElement.cpp53 void SVGFECompositeElement::parseMappedAttribute(Attribute* attr) argument
55 const String& value = attr->value();
56 if (attr->name() == SVGNames::operatorAttr) {
69 } else if (attr->name() == SVGNames::inAttr)
71 else if (attr->name() == SVGNames::in2Attr)
73 else if (attr->name() == SVGNames::k1Attr)
75 else if (attr->name() == SVGNames::k2Attr)
77 else if (attr->name() == SVGNames::k3Attr)
79 else if (attr->name() == SVGNames::k4Attr)
82 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
[all...]
H A DSVGFEDiffuseLightingElement.cpp68 void SVGFEDiffuseLightingElement::parseMappedAttribute(Attribute* attr) argument
70 const String& value = attr->value();
71 if (attr->name() == SVGNames::inAttr)
73 else if (attr->name() == SVGNames::surfaceScaleAttr)
75 else if (attr->name() == SVGNames::diffuseConstantAttr)
77 else if (attr->name() == SVGNames::kernelUnitLengthAttr) {
84 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFEDisplacementMapElement.cpp65 void SVGFEDisplacementMapElement::parseMappedAttribute(Attribute* attr) argument
67 const String& value = attr->value();
68 if (attr->name() == SVGNames::xChannelSelectorAttr)
70 else if (attr->name() == SVGNames::yChannelSelectorAttr)
72 else if (attr->name() == SVGNames::inAttr)
74 else if (attr->name() == SVGNames::in2Attr)
76 else if (attr->name() == SVGNames::scaleAttr)
79 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFEGaussianBlurElement.cpp68 void SVGFEGaussianBlurElement::parseMappedAttribute(Attribute* attr) argument
70 const String& value = attr->value();
71 if (attr->name() == SVGNames::stdDeviationAttr) {
77 } else if (attr->name() == SVGNames::inAttr)
80 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFEImageElement.cpp79 void SVGFEImageElement::parseMappedAttribute(Attribute* attr) argument
81 const String& value = attr->value();
82 if (attr->name() == SVGNames::preserveAspectRatioAttr)
85 if (SVGURIReference::parseMappedAttribute(attr)) {
89 if (SVGLangSpace::parseMappedAttribute(attr))
91 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
94 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFELightElement.cpp76 void SVGFELightElement::parseMappedAttribute(Attribute* attr) argument
78 const String& value = attr->value();
79 if (attr->name() == SVGNames::azimuthAttr)
81 else if (attr->name() == SVGNames::elevationAttr)
83 else if (attr->name() == SVGNames::xAttr)
85 else if (attr->name() == SVGNames::yAttr)
87 else if (attr->name() == SVGNames::zAttr)
89 else if (attr->name() == SVGNames::pointsAtXAttr)
91 else if (attr->name() == SVGNames::pointsAtYAttr)
93 else if (attr
[all...]
H A DSVGFEMorphologyElement.cpp69 void SVGFEMorphologyElement::parseMappedAttribute(Attribute* attr) argument
71 const String& value = attr->value();
72 if (attr->name() == SVGNames::operatorAttr) {
77 } else if (attr->name() == SVGNames::inAttr)
79 else if (attr->name() == SVGNames::radiusAttr) {
86 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFESpecularLightingElement.cpp71 void SVGFESpecularLightingElement::parseMappedAttribute(Attribute* attr) argument
73 const String& value = attr->value();
74 if (attr->name() == SVGNames::inAttr)
76 else if (attr->name() == SVGNames::surfaceScaleAttr)
78 else if (attr->name() == SVGNames::specularConstantAttr)
80 else if (attr->name() == SVGNames::specularExponentAttr)
82 else if (attr->name() == SVGNames::kernelUnitLengthAttr) {
89 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
H A DSVGFETurbulenceElement.cpp65 void SVGFETurbulenceElement::parseMappedAttribute(Attribute* attr) argument
67 const String& value = attr->value();
68 if (attr->name() == SVGNames::typeAttr) {
73 } else if (attr->name() == SVGNames::stitchTilesAttr) {
78 } else if (attr->name() == SVGNames::baseFrequencyAttr) {
84 } else if (attr->name() == SVGNames::seedAttr)
86 else if (attr->name() == SVGNames::numOctavesAttr)
89 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);

Completed in 2714 milliseconds

1234567891011>>