Home | History | Annotate | Download | only in ports

Lines Matching refs:faces

91     SkTypeface* const* faces = family->fFaces;
93 if (faces[style] != NULL) { // exact match
94 return faces[style];
98 if (faces[style] != NULL) {
99 return faces[style];
102 if (faces[SkTypeface::kNormal] != NULL) {
103 return faces[SkTypeface::kNormal];
107 if (faces[i] != NULL) {
108 return faces[i];
111 // should never get here, since the faces list should not be empty
112 SkASSERT(!"faces list is empty");
148 is empty (has no faces), return that family, otherwise return NULL