Home | History | Annotate | Download | only in ports

Lines Matching refs:family

47     SkTDArray<FontFamily*> &families;  // The array that each family is put into as it is parsed
48 FontFamily *currentFamily; // The current family being created
115 * Handler for the start of a tag. The only tags we expect are family, nameset,
121 if (strncmp(tag, "family", len)== 0) {
124 // The Family tag has an optional "order" attribute with an integer value >= 0
149 * Handler for the end of tags. We only care about family, nameset, fileset,
155 if (strncmp(tag, "family", len)== 0) {
156 // Done parsing a Family - store the created currentFamily in the families array
211 FontFamily* family = vendorFonts[i];
212 int order = family->order;
216 *fallbackFonts.append() = family;
220 *fallbackFonts.insert(currentOrder++) = family;
225 *fallbackFonts.insert(order) = family;