Home | History | Annotate | Download | only in ports

Lines Matching refs:faces

88     SkTypeface* const* faces = family->fFaces;
90 if (faces[style] != NULL) { // exact match
91 return faces[style];
95 if (faces[style] != NULL) {
96 return faces[style];
99 if (faces[SkTypeface::kNormal] != NULL) {
100 return faces[SkTypeface::kNormal];
104 if (faces[i] != NULL) {
105 return faces[i];
108 // should never get here, since the faces list should not be empty
109 SkASSERT(!"faces list is empty");
144 is empty (has no faces), return that family, otherwise return NULL