Home | History | Annotate | Download | only in ports

Lines Matching refs:faces

78     SkTypeface* const* faces = family->fFaces;
80 if (faces[style] != NULL) { // exact match
81 return faces[style];
85 if (faces[style] != NULL) {
86 return faces[style];
89 if (faces[SkTypeface::kNormal] != NULL) {
90 return faces[SkTypeface::kNormal];
94 if (faces[i] != NULL) {
95 return faces[i];
98 // should never get here, since the faces list should not be empty
99 SkDEBUGFAIL("faces list is empty");
117 is empty (has no faces), return that family, otherwise return NULL