Lines Matching refs:order
115 familyData->currentFamily->order = -1;
116 // The Family tag has an optional "order" attribute with an integer value >= 0
123 familyData->currentFamily->order = value;
234 // This loop inserts the vendor fallback fonts in the correct order in the
239 int order = family->order;
240 if (order < 0) {
245 // no order specified on this font, but we're incrementing the order
246 // based on an earlier order insertion request
250 // Add the font into the fallback list in the specified order. Set
252 *fallbackFonts.insert(order) = family;
253 currentOrder = order + 1;