Home
last modified time | relevance | path

Searched refs:fsSelection (Results 1 – 25 of 46) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-ot-os2-table.hh116 bool is_italic () const { return fsSelection & ITALIC; } in is_italic()
117 bool is_oblique () const { return fsSelection & OBLIQUE; } in is_oblique()
118 bool is_typo_metrics () const { return fsSelection & USE_TYPO_METRICS; } in is_typo_metrics()
210 { return (font_page_t) (version == 0 ? fsSelection & 0xFF00 : 0); } in get_font_page()
251 HBUINT16 fsSelection; member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-os2-table.hh137 bool is_italic () const { return fsSelection & ITALIC; } in is_italic()
138 bool is_oblique () const { return fsSelection & OBLIQUE; } in is_oblique()
139 bool use_typo_metrics () const { return fsSelection & USE_TYPO_METRICS; } in use_typo_metrics()
239 { return (font_page_t) (version == 0 ? fsSelection & 0xFF00 : 0); } in get_font_page()
280 HBUINT16 fsSelection; member
/third_party/harfbuzz/src/
Dhb-ot-os2-table.hh138 bool is_italic () const { return fsSelection & ITALIC; } in is_italic()
139 bool is_oblique () const { return fsSelection & OBLIQUE; } in is_oblique()
140 bool use_typo_metrics () const { return fsSelection & USE_TYPO_METRICS; } in use_typo_metrics()
256 { return (font_page_t) (version == 0 ? fsSelection & 0xFF00 : 0); } in get_font_page()
297 HBUINT16 fsSelection; member
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
DOS2Table.java65 fsSelection(62), enumConstant
529 return this.data.readUShort(Offset.fsSelection.offset); in fsSelectionAsInt()
562 FsSelection fsSelection = iter.next(); in asInt() local
563 value |= fsSelection.mask(); in asInt()
569 public EnumSet<FsSelection> fsSelection() { in fsSelection() method in OS2Table
983 return this.internalReadData().readUShort(Offset.fsSelection.offset); in fsSelectionAsInt()
986 public void setFsSelection(int fsSelection) { in setFsSelection() argument
987 this.internalWriteData().writeUShort(Offset.fsSelection.offset, fsSelection); in setFsSelection()
990 public void fsSelection(EnumSet<FsSelection> fsSelection) { in fsSelection() argument
991 this.setFsSelection(FsSelection.asInt(fsSelection)); in fsSelection()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
DOS2Table.java65 fsSelection(62), enumConstant
529 return this.data.readUShort(Offset.fsSelection.offset); in fsSelectionAsInt()
562 FsSelection fsSelection = iter.next(); in asInt() local
563 value |= fsSelection.mask(); in asInt()
569 public EnumSet<FsSelection> fsSelection() { in fsSelection() method in OS2Table
983 return this.internalReadData().readUShort(Offset.fsSelection.offset); in fsSelectionAsInt()
986 public void setFsSelection(int fsSelection) { in setFsSelection() argument
987 this.internalWriteData().writeUShort(Offset.fsSelection.offset, fsSelection); in setFsSelection()
990 public void fsSelection(EnumSet<FsSelection> fsSelection) { in fsSelection() method in OS2Table.Builder
991 this.setFsSelection(FsSelection.asInt(fsSelection)); in fsSelection()
/third_party/flutter/engine/flutter/third_party/txt/src/minikin/
DFontUtils.cpp45 uint16_t fsSelection = readU16(os2_data, kFsSelectionOffset); in analyzeStyle() local
46 *italic = (fsSelection & kItalicFlag) != 0; in analyzeStyle()
/third_party/flutter/txt/src/minikin/
DFontUtils.cpp45 uint16_t fsSelection = readU16(os2_data, kFsSelectionOffset); in analyzeStyle() local
46 *italic = (fsSelection & kItalicFlag) != 0; in analyzeStyle()
/third_party/flutter/skia/tools/fonts/
DTestSVGTypeface.cpp539 char fsSelection[16] = { in exportTtxCommon() local
541 fsSelection[0xF - 0x7] = '1'; // Use typo metrics in exportTtxCommon()
543 fsSelection[0xF - 0x5] = '1'; // Bold in exportTtxCommon()
548 fsSelection[0xF - 0x6] = '1'; // Not bold or italic, is regular in exportTtxCommon()
552 fsSelection[0xF - 0x0] = '1'; // Italic in exportTtxCommon()
555 fsSelection[0xF - 0x0] = '1'; // Italic in exportTtxCommon()
556 fsSelection[0xF - 0x9] = '1'; // Oblique in exportTtxCommon()
561 out->write(fsSelection, 8); in exportTtxCommon()
563 out->write(fsSelection + 8, 8); in exportTtxCommon()
/third_party/skia/tools/fonts/
DTestSVGTypeface.cpp542 char fsSelection[16] = { in exportTtxCommon() local
544 fsSelection[0xF - 0x7] = '1'; // Use typo metrics in exportTtxCommon()
546 fsSelection[0xF - 0x5] = '1'; // Bold in exportTtxCommon()
551 fsSelection[0xF - 0x6] = '1'; // Not bold or italic, is regular in exportTtxCommon()
555 fsSelection[0xF - 0x0] = '1'; // Italic in exportTtxCommon()
558 fsSelection[0xF - 0x0] = '1'; // Italic in exportTtxCommon()
559 fsSelection[0xF - 0x9] = '1'; // Oblique in exportTtxCommon()
564 out->write(fsSelection, 8); in exportTtxCommon()
566 out->write(fsSelection + 8, 8); in exportTtxCommon()
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dsfobjs.c1014 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face()
1109 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face()
1111 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face()
1114 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face()
1327 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face()
Dttload.c1184 FT_FRAME_USHORT( fsSelection ), in tt_face_load_os2()
1273 FT_TRACE3(( "fsSelection: 0x%2x\n", os2->fsSelection )); in tt_face_load_os2()
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/
Dsfobjs.c971 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face()
1066 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face()
1068 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face()
1071 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face()
1283 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face()
Dttload.c1160 FT_FRAME_USHORT( fsSelection ), in tt_face_load_os2()
1249 FT_TRACE3(( "fsSelection: 0x%2x\n", os2->fsSelection )); in tt_face_load_os2()
/third_party/freetype/src/sfnt/
Dsfobjs.c1030 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face()
1133 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face()
1135 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face()
1138 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face()
1352 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face()
Dttload.c1183 FT_FRAME_USHORT( fsSelection ), in tt_face_load_os2()
1272 FT_TRACE3(( "fsSelection: 0x%2x\n", os2->fsSelection )); in tt_face_load_os2()
/third_party/cups-filters/fontembed/
Dembed_sfnt.c139 const unsigned short fsSelection=get_USHORT(os2+62); in emb_otf_get_pdf_fontdescr() local
140 if (fsSelection&0x01) { // italic in emb_otf_get_pdf_fontdescr()
143 if ( (fsSelection&0x10)&&(weightClass>600) ) { // force bold in emb_otf_get_pdf_fontdescr()
/third_party/skia/src/sfnt/
DSkOTTable_OS_2_VA.h131 } fsSelection; member
DSkOTTable_OS_2_V0.h130 } fsSelection; member
DSkOTTable_OS_2_V1.h373 } fsSelection; member
/third_party/flutter/skia/src/sfnt/
DSkOTTable_OS_2_V0.h130 } fsSelection; member
DSkOTTable_OS_2_VA.h131 } fsSelection; member
DSkOTTable_OS_2_V1.h373 } fsSelection; member
/third_party/freetype/include/freetype/
Dtttables.h403 FT_UShort fsSelection; member
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/
Dtttables.h404 FT_UShort fsSelection; member
/third_party/skia/third_party/externals/freetype/include/freetype/
Dtttables.h403 FT_UShort fsSelection; member

12