Home
last modified time | relevance | path

Searched refs:CJX_Font (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fxjs/xfa/
Dcjx_font.cpp11 CJX_Font::CJX_Font(CXFA_Font* node) : CJX_Node(node) {} in CJX_Font() function in CJX_Font
13 CJX_Font::~CJX_Font() = default;
15 void CJX_Font::lineThrough(CFXJSE_Value* pValue, in lineThrough()
21 void CJX_Font::typeface(CFXJSE_Value* pValue, in typeface()
27 void CJX_Font::fontHorizontalScale(CFXJSE_Value* pValue, in fontHorizontalScale()
33 void CJX_Font::use(CFXJSE_Value* pValue, in use()
39 void CJX_Font::kerningMode(CFXJSE_Value* pValue, in kerningMode()
45 void CJX_Font::underline(CFXJSE_Value* pValue, in underline()
51 void CJX_Font::baselineShift(CFXJSE_Value* pValue, in baselineShift()
57 void CJX_Font::overlinePeriod(CFXJSE_Value* pValue, in overlinePeriod()
[all …]
Dcjx_font.h14 class CJX_Font : public CJX_Node {
16 explicit CJX_Font(CXFA_Font* node);
17 ~CJX_Font() override;
/external/pdfium/xfa/fxfa/parser/
Dxfa_basic_data_element_script.cpp3201 {0xcb0ac9, L"lineThrough", (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::lineThrough,
3203 {0x2c1c7f1, L"typeface", (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::typeface,
3206 (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::fontHorizontalScale,
3208 {0xc0811ed, L"use", (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::use,
3210 {0x2cd79033, L"kerningMode", (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::kerningMode,
3212 {0x3a0273a6, L"underline", (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::underline,
3215 (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::baselineShift,
3218 (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::overlinePeriod,
3221 (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::letterSpacing,
3224 (XFA_ATTRIBUTE_CALLBACK)&CJX_Font::lineThroughPeriod,
[all …]
Dcxfa_font.cpp65 pdfium::MakeUnique<CJX_Font>(this)) {} in CXFA_Font()