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

  /external/chromium_org/third_party/ots/src/
hhea.cc 5 #include "hhea.h"
10 // hhea - Horizontal Header
11 // http://www.microsoft.com/opentype/otspec/hhea.htm
17 OpenTypeHHEA *hhea = new OpenTypeHHEA; local
18 file->hhea = hhea;
20 if (!table.ReadU32(&hhea->header.version)) {
23 if (hhea->header.version >> 16 != 1) {
27 if (!ParseMetricsHeader(file, &table, &hhea->header)) {
35 return file->hhea != NULL
    [all...]
  /external/sfntly/cpp/src/test/
verify_hhea.cc 36 HorizontalHeaderTablePtr hhea = down_cast<HorizontalHeaderTable*>(table); local
37 if (hhea == NULL) {
41 EXPECT_EQ(hhea->TableVersion(), Fixed1616::Fixed(1, 0));
42 EXPECT_EQ(hhea->Ascender(), HHEA_ASCENDER);
43 EXPECT_EQ(hhea->Descender(), HHEA_DESCENDER);
44 EXPECT_EQ(hhea->AdvanceWidthMax(), HHEA_ADVANCE_WIDTH_MAX);
45 EXPECT_EQ(hhea->MinLeftSideBearing(), HHEA_MIN_LSB);
46 EXPECT_EQ(hhea->MinRightSideBearing(), HHEA_MIN_RSB);
47 EXPECT_EQ(hhea->XMaxExtent(), HHEA_X_MAX_EXTENT);
51 EXPECT_EQ(hhea->MetricDataFormat(), HHEA_METRIC_DATA_FORMAT)
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-hhea-table.hh 37 * hhea -- The Horizontal Header Table
43 struct hhea struct in namespace:OT
  /external/harfbuzz_ng/src/
hb-ot-hhea-table.hh 37 * hhea -- The Horizontal Header Table
43 struct hhea struct in namespace:OT
  /external/sfntly/cpp/src/sfntly/
tag.cc 29 const int32_t Tag::hhea = TAG('h', 'h', 'e', 'a'); member in class:sfntly::Tag
76 Tag::hhea,
88 Tag::hhea,
tag.h 35 static const int32_t hhea; member in struct:sfntly::Tag
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
OpenTypeVerticalData.cpp 409 // Load hhea and hmtx to get x-component of vertical origins.
412 const OpenType::HheaTable* hhea = OpenType::validateTable<OpenType::HheaTable>(buffer); local
413 if (!hhea)
415 uint16_t countHmtxEntries = hhea->numberOfHMetrics;
424 LOG_ERROR("hhea exists but hmtx does not (or broken)");

Completed in 286 milliseconds