Lines Matching defs:FamilyData
85 struct FamilyData { struct
86 FamilyData(XML_Parser parser, SkTDArray<FontFamily*>& families, in FamilyData() argument
102 XML_Parser fParser; // The expat parser doing the work, owned by caller
103 SkTDArray<FontFamily*>& fFamilies; // The array to append families, owned by caller
104 SkAutoTDelete<FontFamily> fCurrentFamily; // The family being created, owned by this
105 FontFileInfo* fCurrentFontInfo; // The fontInfo being created, owned by fCurrentFamily
106 int fVersion; // The version of the file parsed.
107 const SkString& fBasePath; // The current base path.
108 const bool fIsFallback; // Indicates the file being parsed is a fallback file
109 const char* fFilename; // The name of the file currently being parsed.
111 int fDepth; // The current element depth of the parse.
112 int fSkip; // The depth to stop skipping, 0 if not skipping.
113 SkTDArray<const TagHandler*> fHandler; // The stack of current tag handlers.