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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGHKernElement.cpp 57 String u1 = fastGetAttribute(SVGNames::u1Attr);
58 String g1 = fastGetAttribute(SVGNames::g1Attr);
59 String u2 = fastGetAttribute(SVGNames::u2Attr);
60 String g2 = fastGetAttribute(SVGNames::g2Attr);
69 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).toFloat();
SVGVKernElement.cpp 58 String u1 = fastGetAttribute(SVGNames::u1Attr);
59 String g1 = fastGetAttribute(SVGNames::g1Attr);
60 String u2 = fastGetAttribute(SVGNames::u2Attr);
61 String g2 = fastGetAttribute(SVGNames::g2Attr);
70 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).toFloat();
SVGFontFaceNameElement.cpp 38 return CSSFontFaceSrcValue::createLocal(fastGetAttribute(SVGNames::nameAttr));
SVGGlyphElement.cpp 109 AtomicString value(element->fastGetAttribute(name));
119 buildPathFromString(element->fastGetAttribute(SVGNames::dAttr), identifier.pathData);
148 identifier.glyphName = fastGetAttribute(SVGNames::glyph_nameAttr);
149 identifier.orientation = parseOrientation(fastGetAttribute(SVGNames::orientationAttr));
150 identifier.arabicForm = parseArabicForm(fastGetAttribute(SVGNames::arabic_formAttr));
152 String language = fastGetAttribute(SVGNames::langAttr);
SVGAltGlyphElement.cpp 53 return fastGetAttribute(SVGNames::glyphRefAttr);
63 return fastGetAttribute(SVGNames::formatAttr);
SVGFontFaceElement.cpp 123 const AtomicString& value = fastGetAttribute(units_per_emAttr);
132 return static_cast<int>(ceilf(fastGetAttribute(x_heightAttr).toFloat()));
143 return m_fontElement->fastGetAttribute(horiz_origin_xAttr).toFloat();
154 return m_fontElement->fastGetAttribute(horiz_origin_yAttr).toFloat();
165 return m_fontElement->fastGetAttribute(horiz_adv_xAttr).toFloat();
176 const AtomicString& value = m_fontElement->fastGetAttribute(vert_origin_xAttr);
191 const AtomicString& value = m_fontElement->fastGetAttribute(vert_origin_yAttr);
205 const AtomicString& value = m_fontElement->fastGetAttribute(vert_adv_yAttr);
218 const AtomicString& ascentValue = fastGetAttribute(ascentAttr);
223 const AtomicString& vertOriginY = m_fontElement->fastGetAttribute(vert_origin_yAttr)
    [all...]
SVGAElement.cpp 70 const AtomicString& title = fastGetAttribute(XLinkNames::titleAttr);
132 if (target.isEmpty() && fastGetAttribute(XLinkNames::showAttr) == "new")
SVGStyleElement.cpp 79 const AtomicString& n = fastGetAttribute(SVGNames::mediaAttr);
90 return fastGetAttribute(SVGNames::titleAttr);
SVGFontFaceUriElement.cpp 53 AtomicString value(fastGetAttribute(formatAttr));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableCellElement.cpp 59 const AtomicString& colSpanValue = fastGetAttribute(colspanAttr);
65 const AtomicString& rowSpanValue = fastGetAttribute(rowspanAttr);
144 return fastGetAttribute(abbrAttr);
149 return fastGetAttribute(axisAttr);
159 return fastGetAttribute(headersAttr);
169 return fastGetAttribute(scopeAttr);
HTMLHtmlElement.cpp 64 const AtomicString& manifest = fastGetAttribute(manifestAttr);
HTMLParamElement.cpp 50 return fastGetAttribute(valueAttr);
HTMLKeygenElement.cpp 92 const AtomicString& keyType = fastGetAttribute(keytypeAttr);
95 String value = Platform::current()->signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), fastGetAttribute(challengeAttr), document().baseURL());
HTMLButtonElement.cpp 223 argv.append(fastGetAttribute(typeAttr));
224 argv.append(fastGetAttribute(formmethodAttr));
225 argv.append(fastGetAttribute(formactionAttr));
HTMLImageElement.cpp 181 return m_bestFitImageURL.isNull() ? fastGetAttribute(srcAttr) : m_bestFitImageURL;
262 const AtomicString& alt = fastGetAttribute(altAttr);
266 return fastGetAttribute(titleAttr);
289 if (!source->fastGetAttribute(srcAttr).isNull())
291 String srcset = source->fastGetAttribute(srcsetAttr);
294 String type = source->fastGetAttribute(typeAttr);
301 String sizes = source->fastGetAttribute(sizesAttr);
307 ImageCandidate candidate = bestFitSourceForSrcsetAttribute(document().devicePixelRatio(), effectiveSize, source->fastGetAttribute(srcsetAttr));
546 const AtomicString& usemap = fastGetAttribute(usemapAttr);
635 String sizes = fastGetAttribute(sizesAttr)
    [all...]
HTMLBaseElement.cpp 77 const AtomicString& attributeValue = fastGetAttribute(hrefAttr);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextInputType.cpp 52 const AtomicString& type = element().fastGetAttribute(typeAttr);
BaseTextInputType.cpp 56 const AtomicString& rawPattern = element().fastGetAttribute(patternAttr);
WeekInputType.cpp 99 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum))
101 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum))
DateInputType.cpp 113 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum))
115 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum))
MonthInputType.cpp 143 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum))
145 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum))
DateTimeLocalInputType.cpp 147 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum))
149 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum))
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 113 return element.isSVGElement() ? element.getAttribute(typeAttr) : element.fastGetAttribute(typeAttr);
120 if (element().fastGetAttribute(XMLNames::langAttr) != candidate.fastGetAttribute(XMLNames::langAttr))
122 if (element().fastGetAttribute(langAttr) != candidate.fastGetAttribute(langAttr))
129 if (element().fastGetAttribute(readonlyAttr) != candidate.fastGetAttribute(readonlyAttr))
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ShadowTreeStyleSheetCollection.cpp 60 const AtomicString& title = element->fastGetAttribute(titleAttr);
79 const AtomicString& rel = element->fastGetAttribute(relAttr);
  /external/chromium_org/third_party/WebKit/Source/core/page/
CustomContextMenuProvider.cpp 70 String labelString = menuItem->fastGetAttribute(labelAttr);
87 String labelString = nextElement->fastGetAttribute(labelAttr);

Completed in 920 milliseconds

1 2 3 4