Searched refs:fastGetAttribute (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DWeekInputType.cpp59 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumWeek());
64 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumWeek());
69 return parseToDouble(element()->fastGetAttribute(minAttr), weekDefaultStepBase);
H A DBaseTextInputType.cpp42 const AtomicString& pattern = element()->fastGetAttribute(patternAttr);
H A DDateInputType.cpp58 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDate());
63 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDate());
H A DDateTimeInputType.cpp64 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
69 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
H A DClassList.cpp42 m_classNamesForQuirksMode.set(m_element->fastGetAttribute(classAttr), false);
88 const AtomicString& oldClassName(m_element->fastGetAttribute(classAttr));
110 const AtomicString& newClassName(removeToken(m_element->fastGetAttribute(classAttr), token));
129 return m_element->fastGetAttribute(classAttr);
H A DDateTimeLocalInputType.cpp70 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
75 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
H A DTimeInputType.cpp76 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumTime());
81 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumTime());
H A DHTMLBaseElement.cpp72 return fastGetAttribute(targetAttr);
H A DNumberInputType.cpp116 return parseToDouble(element()->fastGetAttribute(minAttr), -numeric_limits<float>::max());
121 return parseToDouble(element()->fastGetAttribute(maxAttr), numeric_limits<float>::max());
149 return parseToDouble(element()->fastGetAttribute(minAttr), defaultStepBase());
154 return parseToDoubleWithDecimalPlaces(element()->fastGetAttribute(minAttr), defaultStepBase(), decimalPlaces);
H A DMonthInputType.cpp96 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumMonth());
101 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumMonth());
H A DHTMLMarqueeElement.cpp134 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok);
149 int scrollDelay = fastGetAttribute(scrolldelayAttr).toInt(&ok);
164 int loopValue = fastGetAttribute(loopAttr).toInt(&ok);
H A DFormAssociatedElement.cpp80 Element* formElement = element->document()->getElementById(element->fastGetAttribute(formAttr));
128 const AtomicString& formId(element->fastGetAttribute(formAttr));
H A DRangeInputType.cpp114 return parseToDouble(element()->fastGetAttribute(minAttr), rangeDefaultMinimum);
119 double max = parseToDouble(element()->fastGetAttribute(maxAttr), rangeDefaultMaximum);
169 if (equalIgnoringCase(element()->fastGetAttribute(stepAttr), "any")) {
H A DHTMLInputElement.cpp294 const AtomicString& stepString = fastGetAttribute(stepAttr);
446 OwnPtr<InputType> newType = InputType::create(this, fastGetAttribute(typeAttr));
482 m_data.setValue(sanitizeValue(fastGetAttribute(valueAttr)));
724 String alt = fastGetAttribute(altAttr);
848 value = sanitizeValue(fastGetAttribute(valueAttr));
962 return fastGetAttribute(placeholderAttr).string();
1122 return fastGetAttribute(valueAttr);
1137 return fastGetAttribute(acceptAttr);
1142 return fastGetAttribute(altAttr);
1170 return document()->completeURL(fastGetAttribute(srcAtt
[all...]
H A DBaseDateAndTimeInputType.cpp125 return parseToDouble(element()->fastGetAttribute(minAttr), defaultStepBase());
H A DHTMLScriptElement.cpp87 if (element->fastGetAttribute(typeAttr) != "script/cache")
H A DHTMLFormControlElement.cpp213 const AtomicString& name = fastGetAttribute(nameAttr);
H A DHTMLElement.cpp658 const AtomicString& value = fastGetAttribute(contenteditableAttr);
860 AtomicString dirAttributeValue = toElement(node)->fastGetAttribute(dirAttr);
H A DHTMLFormElement.cpp665 return !equalIgnoringCase(fastGetAttribute(autocompleteAttr), "off");
/external/webkit/Source/WebCore/dom/
H A DElement.h125 const AtomicString& fastGetAttribute(const QualifiedName&) const;
497 inline const AtomicString& Element::fastGetAttribute(const QualifiedName& name) const function in class:WebCore::Element
523 return fastGetAttribute(document()->idAttributeName());
H A DElement.cpp271 return fastGetAttribute(name);
1678 value = static_cast<const Element*>(n)->fastGetAttribute(XMLNames::langAttr);
1680 value = static_cast<const Element*>(n)->fastGetAttribute(HTMLNames::langAttr);
H A DDocument.cpp2358 const AtomicString& value = static_cast<Element*>(node)->fastGetAttribute(hrefAttr);
2363 const AtomicString& value = static_cast<Element*>(node)->fastGetAttribute(targetAttr);
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.cpp856 return &element->fastGetAttribute(hrefAttr);
865 return &element->fastGetAttribute(hrefAttr);
871 return &element->fastGetAttribute(XLinkNames::hrefAttr);
1028 if (element->fastGetAttribute(typeAttr) != m_element->fastGetAttribute(typeAttr))
1030 if (element->fastGetAttribute(XMLNames::langAttr) != m_element->fastGetAttribute(XMLNames::langAttr))
1032 if (element->fastGetAttribute(langAttr) != m_element->fastGetAttribute(langAttr))
1034 if (element->fastGetAttribute(readonlyAtt
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderImage.cpp408 return i ? i->document()->getImageMap(i->fastGetAttribute(usemapAttr)) : 0;
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityObject.cpp881 return element->fastGetAttribute(attribute);

Completed in 323 milliseconds