HomeSort by relevance Sort by last modified time
    Searched refs:fastGetAttribute (Results 1 - 25 of 25) sorted by null

  /external/webkit/Source/WebCore/html/
WeekInputType.cpp 59 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumWeek());
64 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumWeek());
69 return parseToDouble(element()->fastGetAttribute(minAttr), weekDefaultStepBase);
BaseTextInputType.cpp 42 const AtomicString& pattern = element()->fastGetAttribute(patternAttr);
DateInputType.cpp 58 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDate());
63 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDate());
DateTimeInputType.cpp 64 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
69 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
ClassList.cpp 42 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);
DateTimeLocalInputType.cpp 70 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
75 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
TimeInputType.cpp 76 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumTime());
81 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumTime());
HTMLBaseElement.cpp 72 return fastGetAttribute(targetAttr);
NumberInputType.cpp 116 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);
MonthInputType.cpp 96 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumMonth());
101 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumMonth());
HTMLMarqueeElement.cpp 134 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok);
149 int scrollDelay = fastGetAttribute(scrolldelayAttr).toInt(&ok);
164 int loopValue = fastGetAttribute(loopAttr).toInt(&ok);
FormAssociatedElement.cpp 80 Element* formElement = element->document()->getElementById(element->fastGetAttribute(formAttr));
128 const AtomicString& formId(element->fastGetAttribute(formAttr));
RangeInputType.cpp 114 return parseToDouble(element()->fastGetAttribute(minAttr), rangeDefaultMinimum);
119 double max = parseToDouble(element()->fastGetAttribute(maxAttr), rangeDefaultMaximum);
169 if (equalIgnoringCase(element()->fastGetAttribute(stepAttr), "any")) {
HTMLInputElement.cpp 294 const AtomicString& stepString = fastGetAttribute(stepAttr);
446 OwnPtr<InputType> newType = InputType::create(this, fastGetAttribute(typeAttr));
486 m_data.setValue(sanitizeValue(fastGetAttribute(valueAttr)));
728 String alt = fastGetAttribute(altAttr);
852 value = sanitizeValue(fastGetAttribute(valueAttr));
966 return fastGetAttribute(placeholderAttr).string();
    [all...]
BaseDateAndTimeInputType.cpp 125 return parseToDouble(element()->fastGetAttribute(minAttr), defaultStepBase());
HTMLScriptElement.cpp 87 if (element->fastGetAttribute(typeAttr) != "script/cache")
HTMLFormControlElement.cpp 213 const AtomicString& name = fastGetAttribute(nameAttr);
HTMLElement.cpp 658 const AtomicString& value = fastGetAttribute(contenteditableAttr);
    [all...]
HTMLFormElement.cpp 665 return !equalIgnoringCase(fastGetAttribute(autocompleteAttr), "off");
  /external/webkit/Source/WebCore/dom/
Element.h 125 const AtomicString& fastGetAttribute(const QualifiedName&) const;
497 inline const AtomicString& Element::fastGetAttribute(const QualifiedName& name) const
523 return fastGetAttribute(document()->idAttributeName());
Element.cpp 271 return fastGetAttribute(name);
    [all...]
Document.cpp     [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp 856 return &element->fastGetAttribute(hrefAttr);
865 return &element->fastGetAttribute(hrefAttr);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderImage.cpp 408 return i ? i->document()->getImageMap(i->fastGetAttribute(usemapAttr)) : 0;
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 881 return element->fastGetAttribute(attribute);
    [all...]

Completed in 480 milliseconds