Home | History | Annotate | Download | only in ports

Lines Matching refs:ttcIndex

85                       SkStream* stream, int ttcIndex)
86 : INHERITED(style, isFixedPitch, sysFont, familyName, ttcIndex)
93 virtual SkStream* onOpenStream(int* ttcIndex) const SK_OVERRIDE {
94 *ttcIndex = this->getIndex();
122 virtual SkStream* onOpenStream(int* ttcIndex) const SK_OVERRIDE {
123 *ttcIndex = this->getIndex();
264 virtual SkTypeface* onCreateFromData(SkData* data, int ttcIndex) const SK_OVERRIDE {
266 return this->createFromStream(stream, ttcIndex);
269 virtual SkTypeface* onCreateFromStream(SkStream* stream, int ttcIndex) const SK_OVERRIDE {
278 if (SkTypeface_FreeType::ScanFont(stream, ttcIndex, &name, &style, &isFixedPitch)) {
280 stream, ttcIndex));
286 virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) const SK_OVERRIDE {
288 return stream.get() ? this->createFromStream(stream, ttcIndex) : NULL;