weight 1413 Source/core/css/CSSComputedStyleDeclaration.cpp switch (style.fontDescription().weight()) { weight 1919 Source/core/css/CSSComputedStyleDeclaration.cpp computedFont->weight = valueForFontWeight(*style); weight 42 Source/core/css/CSSFontValue.cpp if (weight) { weight 45 Source/core/css/CSSFontValue.cpp result.append(weight->cssText()); weight 71 Source/core/css/CSSFontValue.cpp && compareCSSValuePtr(weight, other.weight) weight 82 Source/core/css/CSSFontValue.cpp visitor->trace(weight); weight 48 Source/core/css/CSSFontValue.h RefPtrWillBeMember<CSSPrimitiveValue> weight; weight 3413 Source/core/css/CSSPrimitiveValueMappings.h template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontWeight weight) weight 3417 Source/core/css/CSSPrimitiveValueMappings.h switch (weight) { weight 144 Source/core/css/CSSSegmentedFontFace.cpp requestedFontDescription.setSyntheticBold(m_traits.weight() < FontWeight600 && desiredTraits.weight() >= FontWeight600); weight 462 Source/core/css/FontFace.cpp FontWeight weight = FontWeight400; weight 470 Source/core/css/FontFace.cpp weight = FontWeight700; weight 474 Source/core/css/FontFace.cpp weight = FontWeight400; weight 477 Source/core/css/FontFace.cpp weight = FontWeight900; weight 480 Source/core/css/FontFace.cpp weight = FontWeight800; weight 483 Source/core/css/FontFace.cpp weight = FontWeight600; weight 486 Source/core/css/FontFace.cpp weight = FontWeight500; weight 489 Source/core/css/FontFace.cpp weight = FontWeight300; weight 492 Source/core/css/FontFace.cpp weight = FontWeight200; weight 496 Source/core/css/FontFace.cpp weight = FontWeight100; weight 534 Source/core/css/FontFace.cpp return FontTraits(style, variant, weight, FontStretchNormal); weight 67 Source/core/css/FontFace.h String weight() const; weight 152 Source/core/css/FontFaceCache.cpp if (secondTraits.weight() == desiredTraits.weight()) weight 155 Source/core/css/FontFaceCache.cpp if (firstTraits.weight() == desiredTraits.weight()) weight 177 Source/core/css/FontFaceCache.cpp unsigned ruleSetIndex = static_cast<unsigned>(desiredTraits.weight()); weight 181 Source/core/css/FontFaceCache.cpp if (secondTraits.weight() == weightFallbackRule[i]) weight 183 Source/core/css/FontFaceCache.cpp if (firstTraits.weight() == weightFallbackRule[i]) weight 4721 Source/core/css/parser/CSSPropertyParser.cpp int weight = static_cast<int>(value->fValue); weight 4722 Source/core/css/parser/CSSPropertyParser.cpp if (!(weight % 100) && weight >= 100 && weight <= 900) { weight 4723 Source/core/css/parser/CSSPropertyParser.cpp addProperty(CSSPropertyFontWeight, cssValuePool().createIdentifierValue(static_cast<CSSValueID>(CSSValue100 + weight / 100 - 1)), important); weight 273 Source/core/css/resolver/StyleBuilderCustom.cpp state.fontBuilder().setWeight(state.parentFontDescription().weight()); weight 286 Source/core/css/resolver/StyleBuilderCustom.cpp state.fontBuilder().setWeight(state.parentStyle()->fontDescription().weight()); weight 290 Source/core/css/resolver/StyleBuilderCustom.cpp state.fontBuilder().setWeight(state.parentStyle()->fontDescription().weight()); weight 1977 Source/core/html/canvas/CanvasRenderingContext2D.cpp if (fontDescription.weight() == FontWeightBold) weight 1187 Source/core/rendering/style/RenderStyle.cpp FontWeight RenderStyle::fontWeight() const { return fontDescription().weight(); } weight 1275 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setFontWeight(FontWeight weight) weight 1279 Source/core/rendering/style/RenderStyle.cpp desc.setWeight(weight); weight 39 Source/modules/speech/SpeechGrammar.cpp PassRefPtrWillBeRawPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, double weight) weight 41 Source/modules/speech/SpeechGrammar.cpp return adoptRefWillBeNoop(new SpeechGrammar(src, weight)); weight 56 Source/modules/speech/SpeechGrammar.cpp SpeechGrammar::SpeechGrammar(const KURL& src, double weight) weight 58 Source/modules/speech/SpeechGrammar.cpp , m_weight(weight) weight 42 Source/modules/speech/SpeechGrammar.h static PassRefPtrWillBeRawPtr<SpeechGrammar> create(const KURL& src, double weight); weight 48 Source/modules/speech/SpeechGrammar.h double weight() const { return m_weight; } weight 49 Source/modules/speech/SpeechGrammar.h void setWeight(double weight) { m_weight = weight; } weight 55 Source/modules/speech/SpeechGrammar.h SpeechGrammar(const KURL& src, double weight); weight 47 Source/modules/speech/SpeechGrammarList.cpp void SpeechGrammarList::addFromUri(ExecutionContext* executionContext, const String& src, double weight) weight 50 Source/modules/speech/SpeechGrammarList.cpp m_grammars.append(SpeechGrammar::create(document->completeURL(src), weight)); weight 53 Source/modules/speech/SpeechGrammarList.cpp void SpeechGrammarList::addFromString(const String& string, double weight) weight 56 Source/modules/speech/SpeechGrammarList.cpp m_grammars.append(SpeechGrammar::create(KURL(KURL(), urlString), weight)); weight 46 Source/modules/speech/SpeechGrammarList.h void addFromUri(ExecutionContext*, const String& src, double weight = 1.0); weight 47 Source/modules/speech/SpeechGrammarList.h void addFromString(const String&, double weight = 1.0); weight 108 Source/platform/exported/linux/WebFontInfo.cpp int weight; weight 109 Source/platform/exported/linux/WebFontInfo.cpp if (FcPatternGetInteger(current, FC_WEIGHT, 0, &weight) == FcResultMatch) weight 110 Source/platform/exported/linux/WebFontInfo.cpp family->isBold = weight >= FC_WEIGHT_BOLD; weight 100 Source/platform/fonts/FontDescription.cpp return FontTraits(style(), variant(), weight(), stretch()); weight 107 Source/platform/fonts/FontDescription.cpp setWeight(traits.weight()); weight 98 Source/platform/fonts/FontDescription.h FontWeight weight() const { return static_cast<FontWeight>(m_weight); } weight 41 Source/platform/fonts/FontDescriptionTest.cpp EXPECT_EQ(source.weight(), target.weight()); weight 75 Source/platform/fonts/FontTraits.h FontTraits(FontStyle style, FontVariant variant, FontWeight weight, FontStretch stretch) weight 76 Source/platform/fonts/FontTraits.h : m_style(style), m_variant(variant), m_weight(weight), m_stretch(stretch), m_filler(0) weight 89 Source/platform/fonts/FontTraits.h FontWeight weight() const { return static_cast<FontWeight>(m_weight); } weight 67 Source/platform/fonts/skia/FontCacheSkia.cpp if (family.isBold && description.weight() < FontWeightBold) weight 69 Source/platform/fonts/skia/FontCacheSkia.cpp if (!family.isBold && description.weight() >= FontWeightBold) { weight 122 Source/platform/fonts/skia/FontCacheSkia.cpp if (fontDescription.weight() >= FontWeightBold) weight 147 Source/platform/fonts/skia/FontCacheSkia.cpp (fontDescription.weight() >= FontWeightBold && !tf->isBold()) || fontDescription.isSyntheticBold(), weight 255 Source/platform/fonts/win/FontCacheSkiaWin.cpp fontDescription.weight() >= FontWeightBold && !tf->isBold() || fontDescription.isSyntheticBold(), weight 32 Source/platform/mac/WebFontCache.h + (NSFont *)fontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits weight:(int)desiredWeight size:(float)size; weight 47 Source/web/WebFontDescription.cpp weight = static_cast<Weight>(desc.weight()); weight 65 Source/web/WebFontDescription.cpp desc.setWeight(static_cast<FontWeight>(weight)); weight 64 Source/web/WebSpeechGrammar.cpp return m_private->weight(); weight 79 public/web/WebFontDescription.h , weight(WeightNormal) weight 91 public/web/WebFontDescription.h Weight weight; weight 46 public/web/WebSpeechGrammar.h BLINK_EXPORT float weight() const;