Home
last modified time | relevance | path

Searched refs:font_weight (Results 1 – 3 of 3) sorted by relevance

/external/ImageMagick/MagickCore/
Dtype.c360 font_weight, in GetTypeInfoByFamily() local
370 font_weight=(size_t) (weight == 0 ? 400 : weight); in GetTypeInfoByFamily()
408 if (p->weight != font_weight) in GetTypeInfoByFamily()
455 score+=(16*(800-((ssize_t) MagickMax(MagickMin(font_weight,900),p->weight)- in GetTypeInfoByFamily()
456 (ssize_t) MagickMin(MagickMin(font_weight,900),p->weight))))/800; in GetTypeInfoByFamily()
/external/ImageMagick/MagickWand/
Ddrawing-wand.c5286 const size_t font_weight) in DrawSetFontWeight() argument
5293 (CurrentContext->weight != font_weight)) in DrawSetFontWeight()
5295 CurrentContext->weight=font_weight; in DrawSetFontWeight()
5296 (void) MVGPrintf(wand,"font-weight %.20g\n",(double) font_weight); in DrawSetFontWeight()
/external/python/cpython3/Lib/idlelib/
Dconfigdialog.py656 font_weight = tkFont.BOLD if self.font_bold.get() else tkFont.NORMAL
657 new_font = (font_name, self.font_size.get(), font_weight)