Home
last modified time | relevance | path

Searched refs:fsType (Results 1 – 24 of 24) sorted by relevance

/third_party/skia/src/core/
DSkTypeface.cpp434 SkOTTableOS2::Version::V2::Type::Field fsType; in getAdvancedMetrics() local
436 constexpr size_t fsTypeOffset = offsetof(SkOTTableOS2::Version::V2, fsType); in getAdvancedMetrics()
437 if (this->getTableData(os2Tag, fsTypeOffset, sizeof(fsType), &fsType) == sizeof(fsType)) { in getAdvancedMetrics()
438 if (fsType.Bitmap || (fsType.Restricted && !(fsType.PreviewPrint || fsType.Editable))) { in getAdvancedMetrics()
441 if (fsType.NoSubsetting) { in getAdvancedMetrics()
/third_party/skia/src/sfnt/
DSkOTUtils.cpp229 void SkOTUtils::SetAdvancedTypefaceFlags(SkOTTableOS2_V4::Type fsType, in SetAdvancedTypefaceFlags() argument
233 if (fsType.raw.value != 0) { in SetAdvancedTypefaceFlags()
234 if (SkToBool(fsType.field.Restricted) || SkToBool(fsType.field.Bitmap)) { in SetAdvancedTypefaceFlags()
237 if (SkToBool(fsType.field.NoSubsetting)) { in SetAdvancedTypefaceFlags()
DSkOTUtils.h101 static void SetAdvancedTypefaceFlags(SkOTTableOS2_V4::Type fsType,
DSkOTTable_OS_2_V0.h82 } fsType; member
DSkOTTable_OS_2_VA.h84 } fsType; member
DSkOTTable_OS_2_V1.h80 } fsType; member
DSkOTTable_OS_2_V2.h82 } fsType; member
DSkOTTable_OS_2_V3.h82 } fsType; member
DSkOTTable_OS_2_V4.h82 } fsType; member
/third_party/gptfdisk/
Dbsd.cc149 partitions[i].fsType = tempRecords[i].fsType; in ReadBSDData()
200 cout << hex << (int) partitions[i].fsType << "\n" << dec; in DisplayBSDData()
237 retval = partitions[i].fsType; in GetType()
Dbsd.h49 uint8_t fsType; // filesystem type, see below member
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/
DOS2Table.java45 fsType(8), enumConstant
271 public EnumSet<EmbeddingFlags> fsType() { in fsType() method in OS2Table
276 return this.data.readUShort(Offset.fsType.offset); in fsTypeAsInt()
800 public EnumSet<EmbeddingFlags> fsType() { in fsType() method in OS2Table.Builder
805 return this.internalReadData().readUShort(Offset.fsType.offset); in fsTypeAsInt()
812 public void setFsType(int fsType) { in setFsType() argument
813 this.internalWriteData().writeUShort(Offset.fsType.offset, fsType); in setFsType()
/third_party/skia/third_party/externals/freetype/src/base/
Dftfstype.c55 return os2->fsType; in FT_Get_FSType_Flags()
/third_party/cups-filters/fontembed/
Dembed_sfnt.c25 unsigned short fsType=get_USHORT(os2+8); in emb_otf_get_rights() local
27 if (fsType==0x0002) { in emb_otf_get_rights()
30 ret=fsType&0x0300; // EMB_RIGHT_BITMAPONLY, EMB_RIGHT_NO_SUBSET in emb_otf_get_rights()
31 if ((fsType&0x000c)==0x0004) { in emb_otf_get_rights()
/third_party/skia/src/ports/
DSkTypeface_mac_ct.cpp574 SkOTTableOS2_V4::Type fsType; in onGetAdvancedMetrics() local
575 if (sizeof(fsType) == this->getTableData(SkTEndian_SwapBE32(SkOTTableOS2::TAG), in onGetAdvancedMetrics()
576 offsetof(SkOTTableOS2_V4, fsType), in onGetAdvancedMetrics()
577 sizeof(fsType), in onGetAdvancedMetrics()
578 &fsType)) { in onGetAdvancedMetrics()
579 SkOTUtils::SetAdvancedTypefaceFlags(fsType, info.get()); in onGetAdvancedMetrics()
DSkFontHost_win.cpp1661 SkOTTableOS2_V4::Type fsType; in onGetAdvancedMetrics() local
1662 if (sizeof(fsType) == this->getTableData(SkTEndian_SwapBE32(SkOTTableOS2::TAG), in onGetAdvancedMetrics()
1663 offsetof(SkOTTableOS2_V4, fsType), in onGetAdvancedMetrics()
1664 sizeof(fsType), in onGetAdvancedMetrics()
1665 &fsType)) { in onGetAdvancedMetrics()
1666 SkOTUtils::SetAdvancedTypefaceFlags(fsType, info.get()); in onGetAdvancedMetrics()
DSkFontHost_FreeType.cpp412 FT_UShort fsType = FT_Get_FSType_Flags(face); in canEmbed() local
413 return (fsType & (FT_FSTYPE_RESTRICTED_LICENSE_EMBEDDING | in canEmbed()
418 FT_UShort fsType = FT_Get_FSType_Flags(face); in canSubset() local
419 return (fsType & FT_FSTYPE_NO_SUBSETTING) == 0; in canSubset()
DSkTypeface_win_dw.cpp545 SkOTUtils::SetAdvancedTypefaceFlags(os2Table->version.v4.fsType, info.get()); in onGetAdvancedMetrics()
/third_party/ninja/src/
Dutil.cc525 StringPiece fsType; member
551 fsType = pieces[optionalStart]; in parse()
604 if (mp.fsType != "cgroup") in ParseMountInfo()
/third_party/skia/third_party/externals/freetype/include/freetype/
Dtttables.h381 FT_UShort fsType; member
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-ot-os2-table.hh265 HBUINT16 fsType; member
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttload.c1153 FT_FRAME_SHORT ( fsType ), in tt_face_load_os2()
/third_party/skia/third_party/externals/harfbuzz/perf/texts/
Den-words.txt4236 fsType
/third_party/skia/third_party/externals/freetype/docs/oldlogs/
DChangeLog.265046 * include/tttables.h (TT_OS2): `fsType' must be FT_UShort.