Searched defs:vmtx (Results 1 - 6 of 6) sorted by path

/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeVerticalData.cpp457 // Load vmtx then. This table is required for fonts that support vertical flow.
459 const OpenType::VmtxTable* vmtx = OpenType::validateTable<OpenType::VmtxTable>(buffer, countVmtxEntries); local
460 if (!vmtx) {
461 WTF_LOG_ERROR("vhea exists but vmtx does not (or broken)");
466 m_advanceHeights[i] = vmtx->entries[i].advanceHeight;
468 // VORG is preferred way to calculate vertical origin than vmtx,
469 // so load topSideBearing from vmtx only if VORG is missing.
475 WTF_LOG_ERROR("vmtx has incorrect tsb count");
482 m_topSideBearings[i] = vmtx->entries[i].topSideBearing;
484 const OpenType::Int16* pTopSideBearingsExtra = reinterpret_cast<const OpenType::Int16*>(&vmtx
[all...]
/external/chromium_org/third_party/ots/src/
H A Dvmtx.cc5 #include "vmtx.h"
11 // vmtx - Vertical Metrics Table
12 // http://www.microsoft.com/opentype/otspec/vmtx.htm
18 OpenTypeVMTX *vmtx = new OpenTypeVMTX; local
19 file->vmtx = vmtx;
26 &file->vhea->header, &vmtx->metrics)) {
34 // vmtx should serialise when vhea and GSUB are preserved.
36 return file->vmtx != NULL && file->vhea != NULL &&
41 if (!SerialiseMetricsTable(out, &file->vmtx
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dtag.cc58 const int32_t Tag::vmtx = TAG('v', 'm', 't', 'x'); member in class:sfntly::Tag
H A Dtag.h74 static const int32_t vmtx; member in struct:sfntly::Tag
/external/sfntly/cpp/src/sfntly/
H A Dtag.cc58 const int32_t Tag::vmtx = TAG('v', 'm', 't', 'x'); member in class:sfntly::Tag
H A Dtag.h74 static const int32_t vmtx; member in struct:sfntly::Tag

Completed in 2424 milliseconds