f                  46 Source/core/animation/AnimatableLengthTest.cpp #define EXPECT_ROUNDTRIP(a, f) EXPECT_REFV_EQ(a, f(a.get()))
f                 175 Source/core/animation/AnimatableValueTestHelper.cpp             *os << " " << matrix.f();
f                 129 Source/core/animation/css/CSSAnimationData.h     void setFillMode(unsigned f) { m_fillMode = f; m_fillModeSet = true; }
f                 134 Source/core/animation/css/CSSAnimationData.h     void setTimingFunction(PassRefPtr<TimingFunction> f) { m_timingFunction = f; m_timingFunctionSet = true; }
f                 487 Source/core/clipboard/Clipboard.cpp     for (unsigned f = 0; f < fileList->length(); f++) {
f                 488 Source/core/clipboard/Clipboard.cpp         if (equalIgnoringCase(fileList->item(f)->type(), type))
f                 733 Source/core/css/CSSComputedStyleDeclaration.cpp         transformValue->append(zoomAdjustedNumberValue(transform.f(), style));
f                 184 Source/core/css/CSSMatrix.cpp         return String::format("matrix(%f, %f, %f, %f, %f, %f)", m_matrix.a(), m_matrix.b(), m_matrix.c(), m_matrix.d(), m_matrix.e(), m_matrix.f());
f                  54 Source/core/css/CSSMatrix.h     double f() const { return m_matrix.f(); }
f                  56 Source/core/css/CSSMatrix.h     void setA(double f) { m_matrix.setA(f); }
f                  57 Source/core/css/CSSMatrix.h     void setB(double f) { m_matrix.setB(f); }
f                  58 Source/core/css/CSSMatrix.h     void setC(double f) { m_matrix.setC(f); }
f                  59 Source/core/css/CSSMatrix.h     void setD(double f) { m_matrix.setD(f); }
f                  60 Source/core/css/CSSMatrix.h     void setE(double f) { m_matrix.setE(f); }
f                  61 Source/core/css/CSSMatrix.h     void setF(double f) { m_matrix.setF(f); }
f                  80 Source/core/css/CSSMatrix.h     void setM11(double f) { m_matrix.setM11(f); }
f                  81 Source/core/css/CSSMatrix.h     void setM12(double f) { m_matrix.setM12(f); }
f                  82 Source/core/css/CSSMatrix.h     void setM13(double f) { m_matrix.setM13(f); }
f                  83 Source/core/css/CSSMatrix.h     void setM14(double f) { m_matrix.setM14(f); }
f                  84 Source/core/css/CSSMatrix.h     void setM21(double f) { m_matrix.setM21(f); }
f                  85 Source/core/css/CSSMatrix.h     void setM22(double f) { m_matrix.setM22(f); }
f                  86 Source/core/css/CSSMatrix.h     void setM23(double f) { m_matrix.setM23(f); }
f                  87 Source/core/css/CSSMatrix.h     void setM24(double f) { m_matrix.setM24(f); }
f                  88 Source/core/css/CSSMatrix.h     void setM31(double f) { m_matrix.setM31(f); }
f                  89 Source/core/css/CSSMatrix.h     void setM32(double f) { m_matrix.setM32(f); }
f                  90 Source/core/css/CSSMatrix.h     void setM33(double f) { m_matrix.setM33(f); }
f                  91 Source/core/css/CSSMatrix.h     void setM34(double f) { m_matrix.setM34(f); }
f                  92 Source/core/css/CSSMatrix.h     void setM41(double f) { m_matrix.setM41(f); }
f                  93 Source/core/css/CSSMatrix.h     void setM42(double f) { m_matrix.setM42(f); }
f                  94 Source/core/css/CSSMatrix.h     void setM43(double f) { m_matrix.setM43(f); }
f                  95 Source/core/css/CSSMatrix.h     void setM44(double f) { m_matrix.setM44(f); }
f                 128 Source/core/css/ElementRuleCollector.h     void setSameOriginOnly(bool f) { m_sameOriginOnly = f; }
f                 452 Source/core/css/FontFaceSet.cpp     for (const FontFamily* f = &font.fontDescription().family(); f; f = f->next()) {
f                 453 Source/core/css/FontFaceSet.cpp         CSSSegmentedFontFace* segmentedFontFace = fontFaceCache->get(font.fontDescription(), f->family());
f                 476 Source/core/css/FontFaceSet.cpp     for (const FontFamily* f = &font.fontDescription().family(); f; f = f->next()) {
f                 477 Source/core/css/FontFaceSet.cpp         CSSSegmentedFontFace* face = fontFaceCache->get(font.fontDescription(), f->family());
f                 126 Source/core/css/resolver/StyleResolverState.h     void setZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setZoom(f)); }
f                 127 Source/core/css/resolver/StyleResolverState.h     void setEffectiveZoom(float f) { m_fontBuilder.didChangeFontParameters(m_style->setEffectiveZoom(f)); }
f                 269 Source/core/css/resolver/TransformBuilder.cpp             double f = zoomFactor * toCSSPrimitiveValue(transformValue->itemWithoutBoundsCheck(5))->getDoubleValue();
f                 270 Source/core/css/resolver/TransformBuilder.cpp             operations.operations().append(MatrixTransformOperation::create(a, b, c, d, e, f));
f                4472 Source/core/dom/Document.cpp     if (RefPtr<LocalFrame> f = frame()) {
f                4489 Source/core/dom/Document.cpp         f->loader().finishedParsing();
f                4491 Source/core/dom/Document.cpp         InspectorInstrumentation::domContentLoadedEventFired(f.get());
f                 880 Source/core/dom/Document.h     void setAnnotatedRegionsDirty(bool f) { m_annotatedRegionsDirty = f; }
f                 883 Source/core/dom/Document.h     void setHasAnnotatedRegions(bool f) { m_hasAnnotatedRegions = f; }
f                 351 Source/core/dom/Node.h     void setHasName(bool f) { ASSERT(!isTextNode()); setFlag(f, HasNameOrIsEditingTextFlag); }
f                 377 Source/core/dom/Node.h     void setIsLink(bool f);
f                 727 Source/core/dom/Node.h     void setFlag(bool f, NodeFlags mask) const { m_nodeFlags = (m_nodeFlags & ~mask) | (-(int32_t)f & mask); }
f                 278 Source/core/fetch/ResourceFetcher.cpp     if (LocalFrame* f = frame()) {
f                 279 Source/core/fetch/ResourceFetcher.cpp         if (f->document()->pageDismissalEventBeingDispatched() != Document::NoDismissal) {
f                 282 Source/core/fetch/ResourceFetcher.cpp                 PingLoader::loadImage(f, requestURL);
f                 428 Source/core/fetch/ResourceFetcher.cpp         if (LocalFrame* f = frame()) {
f                 429 Source/core/fetch/ResourceFetcher.cpp             if (!f->loader().mixedContentChecker()->canRunInsecureContent(m_document->securityOrigin(), url))
f                 431 Source/core/fetch/ResourceFetcher.cpp             LocalFrame* top = f->tree().top();
f                 432 Source/core/fetch/ResourceFetcher.cpp             if (top != f && !top->loader().mixedContentChecker()->canRunInsecureContent(top->document()->securityOrigin(), url))
f                 436 Source/core/fetch/ResourceFetcher.cpp         if (LocalFrame* f = frame()) {
f                 437 Source/core/fetch/ResourceFetcher.cpp             LocalFrame* top = f->tree().top();
f                 616 Source/core/fetch/ResourceFetcher.cpp     if (LocalFrame* f = frame())
f                 617 Source/core/fetch/ResourceFetcher.cpp         f->loader().client()->dispatchWillRequestResource(&request);
f                 203 Source/core/html/HTMLDocument.cpp     if (LocalFrame* f = frame())
f                 204 Source/core/html/HTMLDocument.cpp         f->script().namedItemAdded(this, name);
f                 212 Source/core/html/HTMLDocument.cpp     if (LocalFrame* f = frame())
f                 213 Source/core/html/HTMLDocument.cpp         f->script().namedItemRemoved(this, name);
f                  37 Source/core/html/HTMLFormControlElementWithState.cpp HTMLFormControlElementWithState::HTMLFormControlElementWithState(const QualifiedName& tagName, Document& doc, HTMLFormElement* f)
f                  38 Source/core/html/HTMLFormControlElementWithState.cpp     : HTMLFormControlElement(tagName, doc, f)
f                 691 Source/core/html/canvas/CanvasRenderingContext2D.cpp     setTransform(transform.a(), transform.b(), transform.c(), transform.d(), transform.e(), transform.f());
f                  45 Source/core/rendering/InlineBox.cpp     bool f;
f                 313 Source/core/rendering/RenderBlockFlow.h         FloatWithRect(RenderBox* f)
f                 314 Source/core/rendering/RenderBlockFlow.h             : object(f)
f                 315 Source/core/rendering/RenderBlockFlow.h             , rect(LayoutRect(f->x() - f->marginLeft(), f->y() - f->marginTop(), f->width() + f->marginWidth(), f->height() + f->marginHeight()))
f                 316 Source/core/rendering/RenderBlockFlow.h             , everHadLayout(f->everHadLayout())
f                1081 Source/core/rendering/RenderBlockLineLayout.cpp                 FloatingObject* f = *it;
f                1082 Source/core/rendering/RenderBlockLineLayout.cpp                 appendFloatingObjectToLastLine(f);
f                1083 Source/core/rendering/RenderBlockLineLayout.cpp                 ASSERT(f->renderer() == layoutState.floats()[layoutState.floatIndex()].object);
f                1085 Source/core/rendering/RenderBlockLineLayout.cpp                 if (layoutState.floats()[layoutState.floatIndex()].rect != f->frameRect())
f                1178 Source/core/rendering/RenderBlockLineLayout.cpp                     for (Vector<RenderBox*>::iterator f = cleanLineFloats->begin(); f != end; ++f) {
f                1179 Source/core/rendering/RenderBlockLineLayout.cpp                         FloatingObject* floatingObject = insertFloatingObject(*f);
f                1182 Source/core/rendering/RenderBlockLineLayout.cpp                         setLogicalHeight(logicalTopForChild(*f) - marginBeforeForChild(*f) + delta);
f                1238 Source/core/rendering/RenderBlockLineLayout.cpp             RenderBox* f = floats[i].object;
f                1239 Source/core/rendering/RenderBlockLineLayout.cpp             if (!f->x() && !f->y() && f->checkForRepaint()) {
f                1241 Source/core/rendering/RenderBlockLineLayout.cpp                     f->setShouldDoFullRepaintAfterLayout(true);
f                1243 Source/core/rendering/RenderBlockLineLayout.cpp                     f->repaint();
f                1894 Source/core/rendering/RenderBlockLineLayout.cpp                 for (Vector<RenderBox*>::iterator f = cleanLineFloats->begin(); f != end; ++f) {
f                1895 Source/core/rendering/RenderBlockLineLayout.cpp                     FloatingObject* floatingObject = insertFloatingObject(*f);
f                1898 Source/core/rendering/RenderBlockLineLayout.cpp                     setLogicalHeight(logicalTopForChild(*f) - marginBeforeForChild(*f));
f                1900 Source/core/rendering/RenderBlockLineLayout.cpp                     ASSERT(layoutState.floats()[numCleanFloats].object == *f);
f                 276 Source/core/rendering/RenderGeometryMap.cpp         step.m_offset = LayoutSize(t.e(), t.f());
f                 725 Source/core/rendering/RenderText.cpp ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, TextDirection textDirection, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
f                 730 Source/core/rendering/RenderText.cpp             return combineText->combinedTextWidth(f);
f                 733 Source/core/rendering/RenderText.cpp     if (f.isFixedPitch() && !f.fontDescription().variant() && m_isAllASCII && (!glyphOverflow || !glyphOverflow->computeBounds)) {
f                 734 Source/core/rendering/RenderText.cpp         float monospaceCharacterWidth = f.spaceWidth();
f                 750 Source/core/rendering/RenderText.cpp                         w += f.tabWidth(style()->tabSize(), xPos + w);
f                 760 Source/core/rendering/RenderText.cpp                 w += f.fontDescription().wordSpacing();
f                 765 Source/core/rendering/RenderText.cpp     TextRun run = RenderBlockFlow::constructTextRun(const_cast<RenderText*>(this), f, this, start, len, style(), textDirection);
f                 772 Source/core/rendering/RenderText.cpp     return f.width(run, fallbackFonts, glyphOverflow);
f                 835 Source/core/rendering/RenderText.cpp         const Font& f = style()->font(); // FIXME: This ignores first-line.
f                 845 Source/core/rendering/RenderText.cpp                 lastLineMaxWidth = widthFromCache(f, i, linelen, leadWidth + lastLineMaxWidth, direction, 0, 0);
f                 920 Source/core/rendering/RenderText.cpp     const Font& f = styleToUse->font(); // FIXME: This ignores first-line.
f                1009 Source/core/rendering/RenderText.cpp             currMaxWidth += widthFromCache(f, lastWordBoundary, i - lastWordBoundary, leadWidth + currMaxWidth, textDirection, &fallbackFonts, &glyphOverflow);
f                1042 Source/core/rendering/RenderText.cpp             if (isSpace && (f.fontDescription().typesettingFeatures() & Kerning)) {
f                1045 Source/core/rendering/RenderText.cpp                     cachedWordTrailingSpaceWidth[textDirection] = f.width(RenderBlockFlow::constructTextRun(this, f, &space, 1, styleToUse, textDirection)) + wordSpacing;
f                1051 Source/core/rendering/RenderText.cpp                 w = widthFromCache(f, i, wordLen + 1, leadWidth + currMaxWidth, textDirection, &fallbackFonts, &glyphOverflow) - wordTrailingSpaceWidth;
f                1053 Source/core/rendering/RenderText.cpp                 w = widthFromCache(f, i, wordLen, leadWidth + currMaxWidth, textDirection, &fallbackFonts, &glyphOverflow);
f                1055 Source/core/rendering/RenderText.cpp                     currMinWidth += hyphenWidth(this, f, textDirection);
f                1065 Source/core/rendering/RenderText.cpp                     currMaxWidth += widthFromCache(f, lastWordBoundary, j - lastWordBoundary, leadWidth + currMaxWidth, textDirection, &fallbackFonts, &glyphOverflow);
f                1116 Source/core/rendering/RenderText.cpp                 TextRun run = RenderBlockFlow::constructTextRun(this, f, this, i, 1, styleToUse, textDirection);
f                1122 Source/core/rendering/RenderText.cpp                 currMaxWidth += f.width(run);
f                1500 Source/core/rendering/RenderText.cpp float RenderText::width(unsigned from, unsigned len, const Font& f, float xPos, TextDirection textDirection, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
f                1507 Source/core/rendering/RenderText.cpp     if (&f == &style()->font()) {
f                1521 Source/core/rendering/RenderText.cpp             w = widthFromCache(f, from, len, xPos, textDirection, fallbackFonts, glyphOverflow);
f                1524 Source/core/rendering/RenderText.cpp         TextRun run = RenderBlockFlow::constructTextRun(const_cast<RenderText*>(this), f, this, from, len, style(), textDirection);
f                1531 Source/core/rendering/RenderText.cpp         w = f.width(run, fallbackFonts, glyphOverflow);
f                  56 Source/core/rendering/break_lines.cpp #define B(a, b, c, d, e, f, g, h) \
f                  57 Source/core/rendering/break_lines.cpp     ((a) | ((b) << 1) | ((c) << 2) | ((d) << 3) | ((e) << 4) | ((f) << 5) | ((g) << 6) | ((h) << 7))
f                1174 Source/core/rendering/compositing/CompositedLayerMapping.cpp static void ApplyToGraphicsLayers(const CompositedLayerMapping* mapping, const Func& f, ApplyToGraphicsLayersMode mode)
f                1179 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->squashingContainmentLayer());
f                1181 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->childTransformLayer());
f                1183 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->ancestorClippingLayer());
f                1185 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->mainGraphicsLayer());
f                1187 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->clippingLayer());
f                1189 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->scrollingLayer());
f                1191 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->scrollingContentsLayer());
f                1193 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->foregroundLayer());
f                1196 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->squashingLayer());
f                1199 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->maskLayer());
f                1201 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->childClippingMaskLayer());
f                1204 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->backgroundLayer());
f                1207 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->layerForHorizontalScrollbar());
f                1209 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->layerForVerticalScrollbar());
f                1211 Source/core/rendering/compositing/CompositedLayerMapping.cpp         f(mapping->layerForScrollCorner());
f                 117 Source/core/rendering/style/FillLayer.h     void setSize(FillSize f) { m_sizeType = f.type; m_sizeLength = f.size; }
f                1118 Source/core/rendering/style/RenderStyle.h     void setZoomWithoutReturnValue(float f) { setZoom(f); }
f                1237 Source/core/rendering/style/RenderStyle.h     void setOpacity(float f) { float v = clampTo<float>(f, 0, 1); SET_VAR(rareNonInheritedData, opacity, v); }
f                1243 Source/core/rendering/style/RenderStyle.h     void setBoxFlex(float f) { SET_VAR(rareNonInheritedData.access()->m_deprecatedFlexibleBox, flex, f); }
f                1252 Source/core/rendering/style/RenderStyle.h     void setFlexGrow(float f) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexGrow, f); }
f                1253 Source/core/rendering/style/RenderStyle.h     void setFlexShrink(float f) { SET_VAR(rareNonInheritedData.access()->m_flexibleBox, m_flexShrink, f); }
f                1286 Source/core/rendering/style/RenderStyle.h     void setMarqueeIncrement(Length f) { SET_VAR(rareNonInheritedData.access()->m_marquee, increment, f); }
f                1287 Source/core/rendering/style/RenderStyle.h     void setMarqueeSpeed(int f) { SET_VAR(rareNonInheritedData.access()->m_marquee, speed, f); }
f                1306 Source/core/rendering/style/RenderStyle.h     void setColumnWidth(float f) { SET_VAR(rareNonInheritedData.access()->m_multiCol, m_autoWidth, false); SET_VAR(rareNonInheritedData.access()->m_multiCol, m_width, f); }
f                1311 Source/core/rendering/style/RenderStyle.h     void setColumnGap(float f) { SET_VAR(rareNonInheritedData.access()->m_multiCol, m_normalGap, false); SET_VAR(rareNonInheritedData.access()->m_multiCol, m_gap, f); }
f                1326 Source/core/rendering/style/RenderStyle.h     void setTransformOriginZ(float f) { SET_VAR(rareNonInheritedData.access()->m_transform, m_z, f); }
f                1337 Source/core/rendering/style/RenderStyle.h     void setObjectFit(ObjectFit f) { SET_VAR(rareNonInheritedData, m_objectFit, f); }
f                1398 Source/core/rendering/style/RenderStyle.h     void setFillOpacity(float f) { accessSVGStyle()->setFillOpacity(f); }
f                1404 Source/core/rendering/style/RenderStyle.h     void setStrokeOpacity(float f) { accessSVGStyle()->setStrokeOpacity(f); }
f                1412 Source/core/rendering/style/RenderStyle.h     void setStrokeMiterLimit(float f) { accessSVGStyle()->setStrokeMiterLimit(f); }
f                1415 Source/core/rendering/style/RenderStyle.h     void setFloodOpacity(float f) { accessSVGStyle()->setFloodOpacity(f); }
f                1418 Source/core/rendering/style/RenderStyle.h     void setStopOpacity(float f) { accessSVGStyle()->setStopOpacity(f); }
f                1804 Source/core/rendering/style/RenderStyle.h inline bool RenderStyle::setZoom(float f)
f                1806 Source/core/rendering/style/RenderStyle.h     if (compareEqual(visual->m_zoom, f))
f                1808 Source/core/rendering/style/RenderStyle.h     visual.access()->m_zoom = f;
f                1813 Source/core/rendering/style/RenderStyle.h inline bool RenderStyle::setEffectiveZoom(float f)
f                1815 Source/core/rendering/style/RenderStyle.h     if (compareEqual(rareInheritedData->m_effectiveZoom, f))
f                1817 Source/core/rendering/style/RenderStyle.h     rareInheritedData.access()->m_effectiveZoom = f;
f                 148 Source/core/rendering/style/SVGRenderStyle.cpp         || svg_noninherited_flags.f._alignmentBaseline != other->svg_noninherited_flags.f._alignmentBaseline
f                 149 Source/core/rendering/style/SVGRenderStyle.cpp         || svg_noninherited_flags.f._dominantBaseline != other->svg_noninherited_flags.f._dominantBaseline
f                 150 Source/core/rendering/style/SVGRenderStyle.cpp         || svg_noninherited_flags.f._baselineShift != other->svg_noninherited_flags.f._baselineShift)
f                 183 Source/core/rendering/style/SVGRenderStyle.cpp     if (svg_noninherited_flags.f._vectorEffect != other->svg_noninherited_flags.f._vectorEffect)
f                 215 Source/core/rendering/style/SVGRenderStyle.cpp     if (svg_noninherited_flags.f.bufferedRendering != other->svg_noninherited_flags.f.bufferedRendering)
f                 218 Source/core/rendering/style/SVGRenderStyle.cpp     if (svg_noninherited_flags.f.maskType != other->svg_noninherited_flags.f.maskType)
f                 127 Source/core/rendering/style/SVGRenderStyle.h     void setAlignmentBaseline(EAlignmentBaseline val) { svg_noninherited_flags.f._alignmentBaseline = val; }
f                 128 Source/core/rendering/style/SVGRenderStyle.h     void setDominantBaseline(EDominantBaseline val) { svg_noninherited_flags.f._dominantBaseline = val; }
f                 129 Source/core/rendering/style/SVGRenderStyle.h     void setBaselineShift(EBaselineShift val) { svg_noninherited_flags.f._baselineShift = val; }
f                 130 Source/core/rendering/style/SVGRenderStyle.h     void setVectorEffect(EVectorEffect val) { svg_noninherited_flags.f._vectorEffect = val; }
f                 131 Source/core/rendering/style/SVGRenderStyle.h     void setBufferedRendering(EBufferedRendering val) { svg_noninherited_flags.f.bufferedRendering = val; }
f                 144 Source/core/rendering/style/SVGRenderStyle.h     void setMaskType(EMaskType val) { svg_noninherited_flags.f.maskType = val; }
f                 304 Source/core/rendering/style/SVGRenderStyle.h     EAlignmentBaseline alignmentBaseline() const { return (EAlignmentBaseline) svg_noninherited_flags.f._alignmentBaseline; }
f                 305 Source/core/rendering/style/SVGRenderStyle.h     EDominantBaseline dominantBaseline() const { return (EDominantBaseline) svg_noninherited_flags.f._dominantBaseline; }
f                 306 Source/core/rendering/style/SVGRenderStyle.h     EBaselineShift baselineShift() const { return (EBaselineShift) svg_noninherited_flags.f._baselineShift; }
f                 307 Source/core/rendering/style/SVGRenderStyle.h     EVectorEffect vectorEffect() const { return (EVectorEffect) svg_noninherited_flags.f._vectorEffect; }
f                 308 Source/core/rendering/style/SVGRenderStyle.h     EBufferedRendering bufferedRendering() const { return (EBufferedRendering) svg_noninherited_flags.f.bufferedRendering; }
f                 346 Source/core/rendering/style/SVGRenderStyle.h     EMaskType maskType() const { return (EMaskType) svg_noninherited_flags.f.maskType; }
f                 422 Source/core/rendering/style/SVGRenderStyle.h             } f;
f                 462 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f._alignmentBaseline = initialAlignmentBaseline();
f                 463 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f._dominantBaseline = initialDominantBaseline();
f                 464 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f._baselineShift = initialBaselineShift();
f                 465 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f._vectorEffect = initialVectorEffect();
f                 466 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f.bufferedRendering = initialBufferedRendering();
f                 467 Source/core/rendering/style/SVGRenderStyle.h         svg_noninherited_flags.f.maskType = initialMaskType();
f                 245 Source/core/rendering/svg/RenderSVGResourceFilter.cpp             scaleAndTranslate.translate(ctm.e(), ctm.f());
f                 352 Source/core/rendering/svg/RenderSVGRoot.cpp         m_localToParentTransform.setF(m_localToParentTransform.f() + roundToInt(y()));
f                 137 Source/core/rendering/svg/SVGRenderTreeAsText.cpp            << transform.e() << "," << transform.f()
f                  83 Source/core/rendering/svg/SVGTextFragment.h         result.setF(result.f() + y);
f                 320 Source/core/svg/SVGAnimateMotionElement.cpp         transform->setMatrix(t->a(), t->b(), t->c(), t->d(), t->e(), t->f());
f                 145 Source/core/svg/SVGGraphicsElement.cpp             matrix.setF(matrix.f() / zoom);
f                  78 Source/core/svg/SVGMatrixTearOff.cpp     void SVGMatrixTearOff::set##ATTRIBUTE(double f, ExceptionState& exceptionState) \
f                  84 Source/core/svg/SVGMatrixTearOff.cpp         mutableValue()->set##ATTRIBUTE(f); \
f                  65 Source/core/svg/SVGMatrixTearOff.h     double f() { return value().f(); }
f                  46 Source/core/svg/SVGNumberTearOff.cpp void SVGNumberTearOff::setValue(float f, ExceptionState& exceptionState)
f                  53 Source/core/svg/SVGNumberTearOff.cpp     target()->setValue(f);
f                  64 Source/core/svg/SVGPoint.h     void setX(float f) { m_value.setX(f); }
f                  65 Source/core/svg/SVGPoint.h     void setY(float f) { m_value.setY(f); }
f                  47 Source/core/svg/SVGPointTearOff.cpp void SVGPointTearOff::setX(float f, ExceptionState& exceptionState)
f                  54 Source/core/svg/SVGPointTearOff.cpp     target()->setX(f);
f                  58 Source/core/svg/SVGPointTearOff.cpp void SVGPointTearOff::setY(float f, ExceptionState& exceptionState)
f                  65 Source/core/svg/SVGPointTearOff.cpp     target()->setY(f);
f                  61 Source/core/svg/SVGRect.h     void setX(float f) { m_value.setX(f); }
f                  62 Source/core/svg/SVGRect.h     void setY(float f) { m_value.setY(f); }
f                  63 Source/core/svg/SVGRect.h     void setWidth(float f) { m_value.setWidth(f); }
f                  64 Source/core/svg/SVGRect.h     void setHeight(float f) { m_value.setHeight(f); }
f                  46 Source/core/svg/SVGRectTearOff.cpp void SVGRectTearOff::setX(float f, ExceptionState& exceptionState)
f                  53 Source/core/svg/SVGRectTearOff.cpp     target()->setX(f);
f                  57 Source/core/svg/SVGRectTearOff.cpp void SVGRectTearOff::setY(float f, ExceptionState& exceptionState)
f                  64 Source/core/svg/SVGRectTearOff.cpp     target()->setY(f);
f                  68 Source/core/svg/SVGRectTearOff.cpp void SVGRectTearOff::setWidth(float f, ExceptionState& exceptionState)
f                  75 Source/core/svg/SVGRectTearOff.cpp     target()->setWidth(f);
f                  79 Source/core/svg/SVGRectTearOff.cpp void SVGRectTearOff::setHeight(float f, ExceptionState& exceptionState)
f                  86 Source/core/svg/SVGRectTearOff.cpp     target()->setHeight(f);
f                 508 Source/core/svg/SVGSVGElement.cpp             transform.translate(location.x() - viewBoxTransform.e(), location.y() - viewBoxTransform.f());
f                 103 Source/core/svg/SVGTransform.cpp     return FloatPoint::narrowPrecision(m_matrix.e(), m_matrix.f());
f                 200 Source/core/svg/SVGTransform.cpp                        String::number(m_matrix.d()) + ' ' + String::number(m_matrix.e()) + ' ' + String::number(m_matrix.f()) + ')');
f                 204 Source/core/svg/SVGTransform.cpp         return prefix + String::number(m_matrix.e()) + ' ' + String::number(m_matrix.f()) + ')';
f                 211 Source/core/svg/SVGTransform.cpp         float cx = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * (1 - cosAngle) - m_matrix.f() * sinAngle) / (1 - cosAngle) / 2 : 0);
f                 212 Source/core/svg/SVGTransform.cpp         float cy = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * sinAngle / (1 - cosAngle) + m_matrix.f()) / 2 : 0);
f                 102 Source/core/svg/SVGTransformDistance.cpp         newTransform.setF(m_transform.f() * scaleFactor);
f                 169 Source/core/svg/SVGTransformDistance.cpp         translation += FloatSize::narrowPrecision(m_transform.e(), m_transform.f());
f                 208 Source/core/svg/SVGTransformDistance.cpp         return static_cast<float>(sqrt(m_transform.e() * m_transform.e() + m_transform.f() * m_transform.f()));
f                  33 Source/platform/SharedTimer.cpp void setSharedTimerFiredFunction(void (*f)())
f                  35 Source/platform/SharedTimer.cpp     blink::Platform::current()->setSharedTimerFiredFunction(f);
f                 122 Source/platform/Timer.h     Timer(TimerFiredClass* o, TimerFiredFunction f)
f                 123 Source/platform/Timer.h         : m_object(o), m_function(f) { }
f                 143 Source/platform/Timer.h     DeferrableOneShotTimer(TimerFiredClass* o, TimerFiredFunction f, double delay)
f                 145 Source/platform/Timer.h         , m_function(f)
f                  75 Source/platform/audio/DenormalDisabler.h     static inline float flushDenormalFloatToZero(float f)
f                  81 Source/platform/audio/DenormalDisabler.h         return (fabs(f) < FLT_MIN) ? 0.0f : f;
f                  83 Source/platform/audio/DenormalDisabler.h         return f;
f                 114 Source/platform/audio/DenormalDisabler.h     static inline float flushDenormalFloatToZero(float f)
f                 116 Source/platform/audio/DenormalDisabler.h         return (fabs(f) < FLT_MIN) ? 0.0f : f;
f                 133 Source/platform/fonts/GlyphBuffer.h         const SimpleFontData* f = m_fontData[index1];
f                 135 Source/platform/fonts/GlyphBuffer.h         m_fontData[index2] = f;
f                  49 Source/platform/fonts/GlyphPage.h     GlyphData(Glyph g = 0, const SimpleFontData* f = 0)
f                  51 Source/platform/fonts/GlyphPage.h         , fontData(f)
f                 137 Source/platform/fonts/GlyphPage.h     void setGlyphDataForCharacter(UChar32 c, Glyph g, const SimpleFontData* f)
f                 139 Source/platform/fonts/GlyphPage.h         setGlyphDataForIndex(indexForCharacter(c), g, f);
f                  41 Source/platform/fonts/mac/ComplexTextController.cpp static inline CGFloat roundCGFloat(CGFloat f)
f                  44 Source/platform/fonts/mac/ComplexTextController.cpp         return roundf(static_cast<float>(f));
f                  45 Source/platform/fonts/mac/ComplexTextController.cpp     return static_cast<CGFloat>(round(f));
f                  48 Source/platform/fonts/mac/ComplexTextController.cpp static inline CGFloat ceilCGFloat(CGFloat f)
f                  51 Source/platform/fonts/mac/ComplexTextController.cpp         return ceilf(static_cast<float>(f));
f                  52 Source/platform/fonts/mac/ComplexTextController.cpp     return static_cast<CGFloat>(ceil(f));
f                  40 Source/platform/geometry/FloatPoint.cpp static inline SkScalar WebCoreFloatToSkScalar(float f)
f                  42 Source/platform/geometry/FloatPoint.cpp     return SkFloatToScalar(std::isfinite(f) ? f : 0);
f                 117 Source/platform/geometry/TransformState.cpp         move(LayoutSize(transformFromContainer.e(), transformFromContainer.f()), accumulate);
f                  61 Source/platform/graphics/Color.cpp static int colorFloatToRGBAByte(float f)
f                  64 Source/platform/graphics/Color.cpp     return max(0, min(static_cast<int>(lroundf(255.0f * f)), 255));
f                 217 Source/platform/graphics/gpu/WebGLImageConversion.cpp unsigned short convertFloatToHalfFloat(float f)
f                 219 Source/platform/graphics/gpu/WebGLImageConversion.cpp     unsigned temp = *(reinterpret_cast<unsigned *>(&f));
f                 182 Source/platform/graphics/skia/SkiaUtils.cpp     result.setTranslateY(WebCoreDoubleToSkScalar(source.f()));
f                  60 Source/platform/graphics/skia/SkiaUtils.h inline SkScalar WebCoreFloatToSkScalar(float f)
f                  62 Source/platform/graphics/skia/SkiaUtils.h     return SkFloatToScalar(std::isfinite(f) ? f : 0);
f                  93 Source/platform/text/TextStream.cpp TextStream& TextStream::operator<<(float f)
f                  95 Source/platform/text/TextStream.cpp     m_text.append(String::numberToStringFixedWidth(f, 2));
f                  44 Source/platform/transforms/AffineTransform.cpp AffineTransform::AffineTransform(double a, double b, double c, double d, double e, double f)
f                  46 Source/platform/transforms/AffineTransform.cpp     setMatrix(a, b, c, d, e, f);
f                  54 Source/platform/transforms/AffineTransform.cpp void AffineTransform::setMatrix(double a, double b, double c, double d, double e, double f)
f                  61 Source/platform/transforms/AffineTransform.cpp     m_transform[5] = f;
f                 393 Source/platform/transforms/AffineTransform.cpp     decomp.translateY = m.f();
f                  50 Source/platform/transforms/AffineTransform.h     AffineTransform(double a, double b, double c, double d, double e, double f);
f                  52 Source/platform/transforms/AffineTransform.h     void setMatrix(double a, double b, double c, double d, double e, double f);
f                  84 Source/platform/transforms/AffineTransform.h     double f() const { return m_transform[5]; }
f                  85 Source/platform/transforms/AffineTransform.h     void setF(double f) { m_transform[5] = f; }
f                  49 Source/platform/transforms/MatrixTransformOperation.cpp     return MatrixTransformOperation::create(toT.a(), toT.b(), toT.c(), toT.d(), toT.e(), toT.f());
f                  35 Source/platform/transforms/MatrixTransformOperation.h     static PassRefPtr<MatrixTransformOperation> create(double a, double b, double c, double d, double e, double f)
f                  37 Source/platform/transforms/MatrixTransformOperation.h         return adoptRef(new MatrixTransformOperation(a, b, c, d, e, f));
f                  69 Source/platform/transforms/MatrixTransformOperation.h     MatrixTransformOperation(double a, double b, double c, double d, double e, double f)
f                  75 Source/platform/transforms/MatrixTransformOperation.h         , m_f(f)
f                  85 Source/platform/transforms/MatrixTransformOperation.h         , m_f(t.f())
f                 524 Source/platform/transforms/TransformationMatrix.cpp     setMatrix(t.a(), t.b(), t.c(), t.d(), t.e(), t.f());
f                 621 Source/platform/transforms/TransformationMatrix.cpp static float clampEdgeValue(float f)
f                 623 Source/platform/transforms/TransformationMatrix.cpp     ASSERT(!std::isnan(f));
f                 624 Source/platform/transforms/TransformationMatrix.cpp     return min<float>(max<float>(f, (-LayoutUnit::max() / 2).toFloat()), (LayoutUnit::max() / 2).toFloat());
f                  66 Source/platform/transforms/TransformationMatrix.h     TransformationMatrix(double a, double b, double c, double d, double e, double f) { setMatrix(a, b, c, d, e, f); }
f                  75 Source/platform/transforms/TransformationMatrix.h     void setMatrix(double a, double b, double c, double d, double e, double f)
f                  80 Source/platform/transforms/TransformationMatrix.h         m_matrix[3][0] = e; m_matrix[3][1] = f; m_matrix[3][2] = 0; m_matrix[3][3] = 1;
f                 156 Source/platform/transforms/TransformationMatrix.h     void setM11(double f) { m_matrix[0][0] = f; }
f                 158 Source/platform/transforms/TransformationMatrix.h     void setM12(double f) { m_matrix[0][1] = f; }
f                 160 Source/platform/transforms/TransformationMatrix.h     void setM13(double f) { m_matrix[0][2] = f; }
f                 162 Source/platform/transforms/TransformationMatrix.h     void setM14(double f) { m_matrix[0][3] = f; }
f                 164 Source/platform/transforms/TransformationMatrix.h     void setM21(double f) { m_matrix[1][0] = f; }
f                 166 Source/platform/transforms/TransformationMatrix.h     void setM22(double f) { m_matrix[1][1] = f; }
f                 168 Source/platform/transforms/TransformationMatrix.h     void setM23(double f) { m_matrix[1][2] = f; }
f                 170 Source/platform/transforms/TransformationMatrix.h     void setM24(double f) { m_matrix[1][3] = f; }
f                 172 Source/platform/transforms/TransformationMatrix.h     void setM31(double f) { m_matrix[2][0] = f; }
f                 174 Source/platform/transforms/TransformationMatrix.h     void setM32(double f) { m_matrix[2][1] = f; }
f                 176 Source/platform/transforms/TransformationMatrix.h     void setM33(double f) { m_matrix[2][2] = f; }
f                 178 Source/platform/transforms/TransformationMatrix.h     void setM34(double f) { m_matrix[2][3] = f; }
f                 180 Source/platform/transforms/TransformationMatrix.h     void setM41(double f) { m_matrix[3][0] = f; }
f                 182 Source/platform/transforms/TransformationMatrix.h     void setM42(double f) { m_matrix[3][1] = f; }
f                 184 Source/platform/transforms/TransformationMatrix.h     void setM43(double f) { m_matrix[3][2] = f; }
f                 186 Source/platform/transforms/TransformationMatrix.h     void setM44(double f) { m_matrix[3][3] = f; }
f                 203 Source/platform/transforms/TransformationMatrix.h     double f() const { return m_matrix[3][1]; }
f                 204 Source/platform/transforms/TransformationMatrix.h     void setF(double f) { m_matrix[3][1] = f; }
f                 104 Source/wtf/FunctionalTest.cpp     Function<int ()> function1 = bind(&A::f, &a);
f                 147 Source/wtf/SHA1.cpp         uint32_t temp = rotateLeft(5, a) + f(t, b, c, d) + e + w[t] + k(t);
f                  47 Source/wtf/dtoa/diy-fp.h         DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
f                  81 Source/wtf/dtoa/diy-fp.h             uint64_t f = f_;
f                  87 Source/wtf/dtoa/diy-fp.h             while ((f & k10MSBits) == 0) {
f                  88 Source/wtf/dtoa/diy-fp.h                 f <<= 10;
f                  91 Source/wtf/dtoa/diy-fp.h             while ((f & kUint64MSB) == 0) {
f                  92 Source/wtf/dtoa/diy-fp.h                 f <<= 1;
f                  95 Source/wtf/dtoa/diy-fp.h             f_ = f;
f                 105 Source/wtf/dtoa/diy-fp.h         uint64_t f() const { return f_; }
f                  68 Source/wtf/dtoa/double.h             uint64_t f = Significand();
f                  72 Source/wtf/dtoa/double.h             while ((f & kHiddenBit) == 0) {
f                  73 Source/wtf/dtoa/double.h                 f <<= 1;
f                  77 Source/wtf/dtoa/double.h             f <<= DiyFp::kSignificandSize - kSignificandSize;
f                  79 Source/wtf/dtoa/double.h             return DiyFp(f, e);
f                 164 Source/wtf/dtoa/double.h             bool significand_is_zero = (v.f() == kHiddenBit);
f                 165 Source/wtf/dtoa/double.h             DiyFp m_plus = DiyFp::Normalize(DiyFp((v.f() << 1) + 1, v.e() - 1));
f                 174 Source/wtf/dtoa/double.h                 m_minus = DiyFp((v.f() << 2) - 1, v.e() - 2);
f                 176 Source/wtf/dtoa/double.h                 m_minus = DiyFp((v.f() << 1) - 1, v.e() - 1);
f                 178 Source/wtf/dtoa/double.h             m_minus.set_f(m_minus.f() << (m_minus.e() - m_plus.e()));
f                 218 Source/wtf/dtoa/double.h             uint64_t significand = diy_fp.f();
f                 393 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(low.f() + 1 <= high.f() - 1);
f                 407 Source/wtf/dtoa/fast-dtoa.cc         DiyFp too_low = DiyFp(low.f() - unit, low.e());
f                 408 Source/wtf/dtoa/fast-dtoa.cc         DiyFp too_high = DiyFp(high.f() + unit, high.e());
f                 421 Source/wtf/dtoa/fast-dtoa.cc         uint32_t integrals = static_cast<uint32_t>(too_high.f() >> -one.e());
f                 423 Source/wtf/dtoa/fast-dtoa.cc         uint64_t fractionals = too_high.f() & (one.f() - 1);
f                 446 Source/wtf/dtoa/fast-dtoa.cc             if (rest < unsafe_interval.f()) {
f                 449 Source/wtf/dtoa/fast-dtoa.cc                 return RoundWeed(buffer, *length, DiyFp::Minus(too_high, w).f(),
f                 450 Source/wtf/dtoa/fast-dtoa.cc                                  unsafe_interval.f(), rest,
f                 463 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(fractionals < one.f());
f                 464 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f());
f                 468 Source/wtf/dtoa/fast-dtoa.cc             unsafe_interval.set_f(unsafe_interval.f() * 10);
f                 473 Source/wtf/dtoa/fast-dtoa.cc             fractionals &= one.f() - 1;  // Modulo by one.
f                 475 Source/wtf/dtoa/fast-dtoa.cc             if (fractionals < unsafe_interval.f()) {
f                 476 Source/wtf/dtoa/fast-dtoa.cc                 return RoundWeed(buffer, *length, DiyFp::Minus(too_high, w).f() * unit,
f                 477 Source/wtf/dtoa/fast-dtoa.cc                                  unsafe_interval.f(), fractionals, one.f(), unit);
f                 529 Source/wtf/dtoa/fast-dtoa.cc         uint32_t integrals = static_cast<uint32_t>(w.f() >> -one.e());
f                 531 Source/wtf/dtoa/fast-dtoa.cc         uint64_t fractionals = w.f() & (one.f() - 1);
f                 571 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(fractionals < one.f());
f                 572 Source/wtf/dtoa/fast-dtoa.cc         ASSERT(UINT64_2PART_C(0xFFFFFFFF, FFFFFFFF) / 10 >= one.f());
f                 581 Source/wtf/dtoa/fast-dtoa.cc             fractionals &= one.f() - 1;  // Modulo by one.
f                 585 Source/wtf/dtoa/fast-dtoa.cc         return RoundWeedCounted(buffer, *length, fractionals, one.f(), w_error,
f                 327 Source/wtf/dtoa/strtod.cc             input.set_f(input.f() >> shift_amount);
f                 339 Source/wtf/dtoa/strtod.cc         uint64_t precision_bits = input.f() & precision_bits_mask;
f                 343 Source/wtf/dtoa/strtod.cc         DiyFp rounded_input(input.f() >> precision_digits_count,
f                 346 Source/wtf/dtoa/strtod.cc             rounded_input.set_f(rounded_input.f() + 1);
f                 391 Source/wtf/dtoa/strtod.cc         boundary.AssignUInt64(upper_boundary.f());
f                 100 Source/wtf/text/TextEncodingRegistry.cpp     TextCodecFactory(NewTextCodecFunction f = 0, const void* d = 0) : function(f), additionalData(d) { }
f                  83 public/web/WebWindowFeatures.h     WebWindowFeatures(const WebCore::WindowFeatures& f)
f                  84 public/web/WebWindowFeatures.h         : x(f.x)
f                  85 public/web/WebWindowFeatures.h         , xSet(f.xSet)
f                  86 public/web/WebWindowFeatures.h         , y(f.y)
f                  87 public/web/WebWindowFeatures.h         , ySet(f.ySet)
f                  88 public/web/WebWindowFeatures.h         , width(f.width)
f                  89 public/web/WebWindowFeatures.h         , widthSet(f.widthSet)
f                  90 public/web/WebWindowFeatures.h         , height(f.height)
f                  91 public/web/WebWindowFeatures.h         , heightSet(f.heightSet)
f                  92 public/web/WebWindowFeatures.h         , menuBarVisible(f.menuBarVisible)
f                  93 public/web/WebWindowFeatures.h         , statusBarVisible(f.statusBarVisible)
f                  94 public/web/WebWindowFeatures.h         , toolBarVisible(f.toolBarVisible)
f                  95 public/web/WebWindowFeatures.h         , locationBarVisible(f.locationBarVisible)
f                  96 public/web/WebWindowFeatures.h         , scrollbarsVisible(f.scrollbarsVisible)
f                  97 public/web/WebWindowFeatures.h         , resizable(f.resizable)
f                  98 public/web/WebWindowFeatures.h         , fullscreen(f.fullscreen)
f                  99 public/web/WebWindowFeatures.h         , dialog(f.dialog)
f                 100 public/web/WebWindowFeatures.h         , additionalFeatures(f.additionalFeatures)