OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vmtx
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/ots/src/
vmtx.cc
5
#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
->metrics))
[
all
...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
tag.cc
58
const int32_t Tag::
vmtx
= TAG('v', 'm', 't', 'x');
member in class:sfntly::Tag
tag.h
74
static const int32_t
vmtx
;
member in struct:sfntly::Tag
/external/sfntly/cpp/src/sfntly/
tag.cc
58
const int32_t Tag::
vmtx
= TAG('v', 'm', 't', 'x');
member in class:sfntly::Tag
tag.h
74
static const int32_t
vmtx
;
member in struct:sfntly::Tag
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp
459
// Load
vmtx
then. This table is required for fonts that support vertical flow.
461
const OpenType::VmtxTable*
vmtx
= OpenType::validateTable<OpenType::VmtxTable>(buffer, countVmtxEntries);
local
462
if (!
vmtx
) {
463
WTF_LOG_ERROR("vhea exists but
vmtx
does not (or broken)");
468
m_advanceHeights[i] =
vmtx
->entries[i].advanceHeight;
470
// VORG is preferred way to calculate vertical origin than
vmtx
,
471
// so load topSideBearing from
vmtx
only if VORG is missing.
477
WTF_LOG_ERROR("
vmtx
has incorrect tsb count");
484
m_topSideBearings[i] =
vmtx
->entries[i].topSideBearing;
486
const OpenType::Int16* pTopSideBearingsExtra = reinterpret_cast<const OpenType::Int16*>(&
vmtx
->entries[countVmtxEntries])
[
all
...]
Completed in 574 milliseconds