Home
last modified time | relevance | path

Searched refs:headTable (Results 1 – 6 of 6) sorted by relevance

/external/icu4c/test/letest/
DFontObject.cpp18 headTable(NULL), hmtxTable(NULL), numGlyphs(0), numOfLongHorMetrics(0), file(NULL) in FontObject()
51 delete[] headTable; in ~FontObject()
197 if (headTable == NULL) { in getUnitsPerEM()
201 headTable = (HEADTable *) readTable(headTag, &length); in getUnitsPerEM()
204 return SWAPW(headTable->unitsPerEm); in getUnitsPerEM()
DPortableFontInstance.cpp91 const HEADTable *headTable = NULL; in PortableFontInstance() local
115 headTable = (const HEADTable *) readFontTable(headTag); in PortableFontInstance()
117 if (headTable == NULL) { in PortableFontInstance()
122 fUnitsPerEM = SWAPW(headTable->unitsPerEm); in PortableFontInstance()
123 fFontChecksum = SWAPL(headTable->checksumAdjustment); in PortableFontInstance()
124 freeFontTable(headTable); in PortableFontInstance()
DFontObject.h224 HEADTable *headTable; variable
/external/icu4c/samples/layout/
DGDIFontInstance.cpp259 const HEADTable *headTable = NULL; in GDIFontInstance() local
263 headTable = (const HEADTable *) readFontTable(LE_HEAD_TABLE_TAG); in GDIFontInstance()
265 if (headTable == NULL) { in GDIFontInstance()
270 fUnitsPerEM = SWAPW(headTable->unitsPerEm); in GDIFontInstance()
271 freeFontTable((const void *)headTable); in GDIFontInstance()
/external/webkit/Source/WebCore/platform/graphics/opentype/
DOpenTypeUtilities.cpp127 struct headTable { struct
261 if (dataLength < tableOffset + sizeof(headTable)) in getEOTHeader()
265 const headTable* head = reinterpret_cast<const headTable*>(data + tableOffset); in getEOTHeader()
/external/webkit/Source/WebCore/platform/graphics/mac/
DSimpleFontDataMac.mm335 RetainPtr<CFDataRef> headTable(AdoptCF, copyFontTableForTag(m_platformData, 'head'));
336 if (headTable && CFDataGetLength(headTable.get()) >= 42) {
337 const UInt8* head = CFDataGetBytePtr(headTable.get());