Home | History | Annotate | Download | only in ports

Lines Matching refs:faces

89     SkTypeface* const* faces = family->fFaces;
91 if (faces[style] != NULL) { // exact match
92 return faces[style];
96 if (faces[style] != NULL) {
97 return faces[style];
100 if (faces[SkTypeface::kNormal] != NULL) {
101 return faces[SkTypeface::kNormal];
105 if (faces[i] != NULL) {
106 return faces[i];
109 // should never get here, since the faces list should not be empty
110 SkASSERT(!"faces list is empty");
145 is empty (has no faces), return that family, otherwise return NULL