Home | History | Annotate | Download | only in src

Lines Matching defs:glyf

5 #include "glyf.h"
14 // glyf - Glyph Data
15 // http://www.microsoft.com/opentype/otspec/glyf.htm
79 ots::OpenTypeGLYF *glyf = file->glyf;
113 glyf->iov.push_back(std::make_pair(
119 glyf->iov.push_back(std::make_pair(
122 glyf->iov.push_back(std::make_pair((const uint8_t*) "\x00\x00",
157 glyf->iov.push_back(std::make_pair(
181 OpenTypeGLYF *glyf = new OpenTypeGLYF;
182 file->glyf = glyf;
253 glyf->iov.push_back(std::make_pair(data + gly_offset,
264 glyf->iov.push_back(std::make_pair(
286 return file->glyf != NULL;
290 const OpenTypeGLYF *glyf = file->glyf;
292 for (unsigned i = 0; i < glyf->iov.size(); ++i) {
293 if (!out->Write(glyf->iov[i].first, glyf->iov[i].second)) {
302 delete file->glyf;