OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OT_MAKE_TAG
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeVerticalData.cpp
41
const uint32_t GSUBTag =
OT_MAKE_TAG
('G', 'S', 'U', 'B');
42
const uint32_t HheaTag =
OT_MAKE_TAG
('h', 'h', 'e', 'a');
43
const uint32_t HmtxTag =
OT_MAKE_TAG
('h', 'm', 't', 'x');
44
const uint32_t VheaTag =
OT_MAKE_TAG
('v', 'h', 'e', 'a');
45
const uint32_t VmtxTag =
OT_MAKE_TAG
('v', 'm', 't', 'x');
46
const uint32_t VORGTag =
OT_MAKE_TAG
('V', 'O', 'R', 'G');
48
const uint32_t DefaultScriptTag =
OT_MAKE_TAG
('D', 'F', 'L', 'T');
50
const uint32_t VertFeatureTag =
OT_MAKE_TAG
('v', 'e', 'r', 't');
OpenTypeTypes.h
66
#define
OT_MAKE_TAG
(ch1, ch2, ch3, ch4) ((((uint32_t)(ch4)) << 24) | (((uint32_t)(ch3)) << 16) | (((uint32_t)(ch2)) << 8) | ((uint32_t)(ch1)))
Completed in 1107 milliseconds