/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGFontFaceElement.cpp | 125 const AtomicString& value = fastGetAttribute(units_per_emAttr); in unitsPerEm() 134 return static_cast<int>(ceilf(fastGetAttribute(x_heightAttr).toFloat())); in xHeight() 145 return m_fontElement->fastGetAttribute(horiz_origin_xAttr).toFloat(); in horizontalOriginX() 156 return m_fontElement->fastGetAttribute(horiz_origin_yAttr).toFloat(); in horizontalOriginY() 167 return m_fontElement->fastGetAttribute(horiz_adv_xAttr).toFloat(); in horizontalAdvanceX() 178 const AtomicString& value = m_fontElement->fastGetAttribute(vert_origin_xAttr); in verticalOriginX() 193 const AtomicString& value = m_fontElement->fastGetAttribute(vert_origin_yAttr); in verticalOriginY() 207 const AtomicString& value = m_fontElement->fastGetAttribute(vert_adv_yAttr); in verticalAdvanceY() 220 const AtomicString& ascentValue = fastGetAttribute(ascentAttr); in ascent() 225 const AtomicString& vertOriginY = m_fontElement->fastGetAttribute(vert_origin_yAttr); in ascent() [all …]
|
D | SVGHKernElement.cpp | 61 String u1 = fastGetAttribute(SVGNames::u1Attr); in buildHorizontalKerningPair() 62 String g1 = fastGetAttribute(SVGNames::g1Attr); in buildHorizontalKerningPair() 63 String u2 = fastGetAttribute(SVGNames::u2Attr); in buildHorizontalKerningPair() 64 String g2 = fastGetAttribute(SVGNames::g2Attr); in buildHorizontalKerningPair() 73 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat(); in buildHorizontalKerningPair()
|
D | SVGVKernElement.cpp | 62 String u1 = fastGetAttribute(SVGNames::u1Attr); in buildVerticalKerningPair() 63 String g1 = fastGetAttribute(SVGNames::g1Attr); in buildVerticalKerningPair() 64 String u2 = fastGetAttribute(SVGNames::u2Attr); in buildVerticalKerningPair() 65 String g2 = fastGetAttribute(SVGNames::g2Attr); in buildVerticalKerningPair() 74 kerningPair.kerning = fastGetAttribute(SVGNames::kAttr).string().toFloat(); in buildVerticalKerningPair()
|
D | SVGGlyphElement.cpp | 113 AtomicString value(element->fastGetAttribute(name)); in parseSVGGlyphAttribute() 123 buildPathFromString(element->fastGetAttribute(SVGNames::dAttr), identifier.pathData); in buildGenericGlyphIdentifier() 152 identifier.glyphName = fastGetAttribute(SVGNames::glyph_nameAttr); in buildGlyphIdentifier() 153 identifier.orientation = parseOrientation(fastGetAttribute(SVGNames::orientationAttr)); in buildGlyphIdentifier() 154 identifier.arabicForm = parseArabicForm(fastGetAttribute(SVGNames::arabic_formAttr)); in buildGlyphIdentifier() 156 String language = fastGetAttribute(SVGNames::langAttr); in buildGlyphIdentifier()
|
D | SVGAltGlyphElement.cpp | 64 return fastGetAttribute(SVGNames::glyphRefAttr); in glyphRef() 74 return fastGetAttribute(SVGNames::formatAttr); in format()
|
D | SVGStyleElement.cpp | 78 const AtomicString& n = fastGetAttribute(SVGNames::mediaAttr); in media() 89 return fastGetAttribute(SVGNames::titleAttr); in title()
|
D | SVGFontFaceNameElement.cpp | 42 return CSSFontFaceSrcValue::createLocal(fastGetAttribute(SVGNames::nameAttr)); in srcValue()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | SharedStyleFinder.cpp | 112 …return element.isSVGElement() ? element.getAttribute(typeAttr) : element.fastGetAttribute(typeAttr… in typeAttributeValue() 119 …if (element().fastGetAttribute(XMLNames::langAttr) != candidate.fastGetAttribute(XMLNames::langAtt… in sharingCandidateHasIdenticalStyleAffectingAttributes() 121 if (element().fastGetAttribute(langAttr) != candidate.fastGetAttribute(langAttr)) in sharingCandidateHasIdenticalStyleAffectingAttributes() 128 if (element().fastGetAttribute(readonlyAttr) != candidate.fastGetAttribute(readonlyAttr)) in sharingCandidateHasIdenticalStyleAffectingAttributes()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLMarqueeElement.cpp | 53 if (fastGetAttribute(truespeedAttr).isEmpty()) { in minimumDelay() 126 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok); in scrollAmount() 141 int scrollDelay = fastGetAttribute(scrolldelayAttr).toInt(&ok); in scrollDelay() 156 int loopValue = fastGetAttribute(loopAttr).toInt(&ok); in loop()
|
D | HTMLBaseElement.cpp | 77 return fastGetAttribute(targetAttr); in target() 86 const AtomicString& attributeValue = fastGetAttribute(hrefAttr); in href()
|
D | HTMLKeygenElement.cpp | 83 const AtomicString& keyType = fastGetAttribute(keytypeAttr); in appendFormData() 86 … signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), fastGetAttribute(challengeAttr… in appendFormData()
|
D | HTMLImageElement.cpp | 114 return m_bestFitImageURL.isNull() ? fastGetAttribute(srcAttr) : m_bestFitImageURL; in imageSourceURL() 129 …ourceForImageAttributes(document().devicePixelRatio(), fastGetAttribute(srcAttr), fastGetAttribute… in parseAttribute() 381 const AtomicString& usemap = fastGetAttribute(usemapAttr); in isServerMap()
|
D | HTMLInputElement.cpp | 404 const AtomicString& newTypeName = InputType::normalizeTypeName(fastGetAttribute(typeAttr)); in updateType() 451 AtomicString valueString = fastGetAttribute(valueAttr); in updateType() 804 String alt = fastGetAttribute(altAttr); in altText() 944 AtomicString valueString = fastGetAttribute(valueAttr); in value() 1210 return fastGetAttribute(valueAttr); in defaultValue() 1264 return parseAcceptAttribute(fastGetAttribute(acceptAttr), isValidMIMEType); in acceptMIMETypes() 1269 return parseAcceptAttribute(fastGetAttribute(acceptAttr), isValidFileExtension); in acceptFileExtensions() 1274 return fastGetAttribute(acceptAttr); in accept() 1279 return fastGetAttribute(altAttr); in alt() 1315 return document().completeURL(fastGetAttribute(srcAttr)); in src() [all …]
|
D | HTMLTableCellElement.cpp | 58 const AtomicString& colSpanValue = fastGetAttribute(colspanAttr); in colSpan() 64 const AtomicString& rowSpanValue = fastGetAttribute(rowspanAttr); in rowSpan()
|
D | HTMLOptionElement.cpp | 112 text = fastGetAttribute(labelAttr); in text() 199 const AtomicString& value = fastGetAttribute(valueAttr); in value() 282 const AtomicString& label = fastGetAttribute(labelAttr); in label()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | RangeInputType.cpp | 127 const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), rangeDefaultMinimum); in createStepRange() 128 …const Decimal maximum = ensureMaximum(parseToNumber(element().fastGetAttribute(maxAttr), rangeDefa… in createStepRange() 130 const AtomicString& precisionValue = element().fastGetAttribute(precisionAttr); in createStepRange() 136 …tep = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr)); in createStepRange() 199 …const Decimal step = equalIgnoringCase(element().fastGetAttribute(stepAttr), "any") ? (stepRange.m… in handleKeydownEvent()
|
D | WeekInputType.cpp | 104 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum)) in setupLayoutParameters() 106 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum)) in setupLayoutParameters()
|
D | DateInputType.cpp | 109 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum)) in setupLayoutParameters() 111 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum)) in setupLayoutParameters()
|
D | InputType.cpp | 203 return element().fastGetAttribute(valueAttr); in resultForDialogSubmit() 838 const AtomicString& stepString = element().fastGetAttribute(stepAttr); in applyStep() 990 Decimal stepBase = parseToNumber(element().fastGetAttribute(minAttr), Decimal::nan()); in findStepBase() 992 stepBase = parseToNumber(element().fastGetAttribute(valueAttr), defaultValue); in findStepBase() 999 const Decimal minimum = parseToNumber(element().fastGetAttribute(minAttr), minimumDefault); in createStepRange() 1000 const Decimal maximum = parseToNumber(element().fastGetAttribute(maxAttr), maximumDefault); in createStepRange() 1001 …tep = StepRange::parseStep(anyStepHandling, stepDescription, element().fastGetAttribute(stepAttr)); in createStepRange()
|
D | NumberInputType.cpp | 170 const String stepString = element().fastGetAttribute(stepAttr); in sizeShouldIncludeDecoration() 174 const Decimal minimum = parseToDecimalForNumberType(element().fastGetAttribute(minAttr)); in sizeShouldIncludeDecoration() 178 const Decimal maximum = parseToDecimalForNumberType(element().fastGetAttribute(maxAttr)); in sizeShouldIncludeDecoration()
|
D | MonthInputType.cpp | 149 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum)) in setupLayoutParameters() 151 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum)) in setupLayoutParameters()
|
D | DateTimeLocalInputType.cpp | 152 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum)) in setupLayoutParameters() 154 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum)) in setupLayoutParameters()
|
D | TimeInputType.cpp | 157 if (!parseToDateComponents(element().fastGetAttribute(minAttr), &layoutParameters.minimum)) in setupLayoutParameters() 159 if (!parseToDateComponents(element().fastGetAttribute(maxAttr), &layoutParameters.maximum)) in setupLayoutParameters()
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | FormSubmission.cpp | 179 if (!(attributeValue = submitButton->fastGetAttribute(formactionAttr)).isNull()) in create() 181 if (!(attributeValue = submitButton->fastGetAttribute(formenctypeAttr)).isNull()) in create() 183 if (!(attributeValue = submitButton->fastGetAttribute(formmethodAttr)).isNull()) in create() 185 if (!(attributeValue = submitButton->fastGetAttribute(formtargetAttr)).isNull()) in create()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/ |
D | SVGSMILElement.cpp | 294 setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::attributeNameAttr))); in insertedInto() 506 parseBeginOrEnd(fastGetAttribute(SVGNames::endAttr), End); in parseAttribute() 515 parseBeginOrEnd(fastGetAttribute(SVGNames::beginAttr), Begin); in parseAttribute() 542 … setAttributeName(constructQualifiedName(this, fastGetAttribute(SVGNames::attributeNameAttr))); in svgAttributeChanged() 676 const AtomicString& value = fastGetAttribute(SVGNames::restartAttr); in restart() 687 const AtomicString& value = fastGetAttribute(SVGNames::fillAttr); in fill() 695 const AtomicString& value = fastGetAttribute(SVGNames::durAttr); in dur() 704 const AtomicString& value = fastGetAttribute(SVGNames::repeatDurAttr); in repeatDur() 715 const AtomicString& value = fastGetAttribute(SVGNames::repeatCountAttr); in repeatCount() 731 const AtomicString& value = fastGetAttribute(SVGNames::maxAttr); in maxValue() [all …]
|