HomeSort by relevance Sort by last modified time
    Searched defs:vhea (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/ots/src/
vhea.cc 5 #include "vhea.h"
11 // vhea - Vertical Header Table
12 // http://www.microsoft.com/opentype/otspec/vhea.htm
18 OpenTypeVHEA *vhea = new OpenTypeVHEA; local
19 file->vhea = vhea;
21 if (!table.ReadU32(&vhea->header.version)) {
24 if (vhea->header.version != 0x00010000 &&
25 vhea->header.version != 0x00011000) {
29 if (!ParseMetricsHeader(file, &table, &vhea->header))
    [all...]
  /external/sfntly/cpp/src/sfntly/
tag.cc 57 const int32_t Tag::vhea = TAG('v', 'h', 'e', 'a'); member in class:sfntly::Tag
tag.h 73 static const int32_t vhea; member in struct:sfntly::Tag
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeVerticalData.cpp 431 // Load vhea first. This table is required for fonts that support vertical flow.
433 const OpenType::VheaTable* vhea = OpenType::validateTable<OpenType::VheaTable>(buffer); local
434 if (!vhea)
436 uint16_t countVmtxEntries = vhea->numOfLongVerMetrics;
463 LOG_ERROR("vhea exists but vmtx does not (or broken)");

Completed in 65 milliseconds