Home
last modified time | relevance | path

Searched refs:CFX_Char (Results 1 – 17 of 17) sorted by relevance

/external/pdfium/core/fxcrt/
Dcfx_char.cpp9 CFX_Char::CFX_Char(uint16_t wCharCode, uint32_t dwCharProps) in CFX_Char() function in CFX_Char
10 : CFX_Char(wCharCode, dwCharProps, 100, 100) {} in CFX_Char()
12 CFX_Char::CFX_Char(uint16_t wCharCode, in CFX_Char() function in CFX_Char
31 CFX_Char::CFX_Char(const CFX_Char& other) = default;
33 CFX_Char::~CFX_Char() = default;
35 FX_CHARTYPE CFX_Char::GetCharType() const { in GetCharType()
Dcfx_char.h16 class CFX_Char {
18 CFX_Char(uint16_t wCharCode, uint32_t dwCharProps);
19 CFX_Char(uint16_t wCharCode,
23 CFX_Char(const CFX_Char& other);
24 ~CFX_Char();
Dfx_arabic.cpp146 const FX_ARBFORMTABLE* ParseChar(const CFX_Char* pTC, in ParseChar()
180 CFX_Char c(wch, FX_GetUnicodeProperties(wch)); in GetFormChar()
181 CFX_Char p(prev, FX_GetUnicodeProperties(prev)); in GetFormChar()
182 CFX_Char n(next, FX_GetUnicodeProperties(next)); in GetFormChar()
186 wchar_t GetFormChar(const CFX_Char* cur, in GetFormChar()
187 const CFX_Char* prev, in GetFormChar()
188 const CFX_Char* next) { in GetFormChar()
Dfx_bidi.cpp235 void BidiLine(std::vector<CFX_Char>* chars, size_t iCount) { in BidiLine()
272 void ReverseString(std::vector<CFX_Char>* chars, in ReverseString()
281 void SetDeferredRun(std::vector<CFX_Char>* chars, in SetDeferredRun()
301 void Classify(std::vector<CFX_Char>* chars, size_t iCount, bool bWS) { in Classify()
304 CFX_Char& cur = (*chars)[i]; in Classify()
313 CFX_Char& cur = (*chars)[i]; in Classify()
320 void ResolveExplicit(std::vector<CFX_Char>* chars, size_t iCount) { in ResolveExplicit()
325 void ResolveWeak(std::vector<CFX_Char>* chars, size_t iCount) { in ResolveWeak()
339 CFX_Char* pTC = &(*chars)[i]; in ResolveWeak()
347 CFX_Char* pTCNext = &(*chars)[i + 1]; in ResolveWeak()
[all …]
Dfx_arabic.h19 wchar_t GetFormChar(const CFX_Char* cur,
20 const CFX_Char* prev,
21 const CFX_Char* next);
Dfx_bidi.h80 void FX_BidiLine(std::vector<CFX_Char>* chars, size_t iCount);
/external/pdfium/xfa/fgas/layout/
Dcfx_txtbreak.h74 void AppendChar_Combination(CFX_Char* pCurChar);
75 void AppendChar_Tab(CFX_Char* pCurChar);
76 CFX_BreakType AppendChar_Control(CFX_Char* pCurChar);
77 CFX_BreakType AppendChar_Arabic(CFX_Char* pCurChar);
78 CFX_BreakType AppendChar_Others(CFX_Char* pCurChar);
86 int32_t GetBreakPos(std::vector<CFX_Char>& ca,
Dcfx_rtfbreak.h69 void AppendChar_Combination(CFX_Char* pCurChar);
70 void AppendChar_Tab(CFX_Char* pCurChar);
71 CFX_BreakType AppendChar_Control(CFX_Char* pCurChar);
72 CFX_BreakType AppendChar_Arabic(CFX_Char* pCurChar);
73 CFX_BreakType AppendChar_Others(CFX_Char* pCurChar);
77 int32_t GetBreakPos(std::vector<CFX_Char>& tca,
Dcfx_rtfbreak.cpp74 CFX_Char* pCurChar = &m_pCurLine->m_LineChars.back(); in AppendChar()
123 void CFX_RTFBreak::AppendChar_Combination(CFX_Char* pCurChar) { in AppendChar_Combination()
130 CFX_Char* pLastChar = GetLastChar(0, false, true); in AppendChar_Combination()
141 void CFX_RTFBreak::AppendChar_Tab(CFX_Char* pCurChar) { in AppendChar_Tab()
156 CFX_BreakType CFX_RTFBreak::AppendChar_Control(CFX_Char* pCurChar) { in AppendChar_Control()
180 CFX_BreakType CFX_RTFBreak::AppendChar_Arabic(CFX_Char* pCurChar) { in AppendChar_Arabic()
181 CFX_Char* pLastChar = nullptr; in AppendChar_Arabic()
190 CFX_Char* pPrevChar = GetLastChar(2, false, true); in AppendChar_Arabic()
225 CFX_BreakType CFX_RTFBreak::AppendChar_Others(CFX_Char* pCurChar) { in AppendChar_Others()
268 CFX_Char* tc = m_pCurLine->GetChar(iCount - 1); in EndBreak()
[all …]
Dcfx_txtbreak.cpp50 void CFX_TxtBreak::AppendChar_Combination(CFX_Char* pCurChar) { in AppendChar_Combination()
59 CFX_Char* pLastChar = GetLastChar(0, false, false); in AppendChar_Combination()
90 void CFX_TxtBreak::AppendChar_Tab(CFX_Char* pCurChar) { in AppendChar_Tab()
94 CFX_BreakType CFX_TxtBreak::AppendChar_Control(CFX_Char* pCurChar) { in AppendChar_Control()
121 CFX_BreakType CFX_TxtBreak::AppendChar_Arabic(CFX_Char* pCurChar) { in AppendChar_Arabic()
126 CFX_Char* pLastChar = nullptr; in AppendChar_Arabic()
136 CFX_Char* pPrevChar = GetLastChar(2, true, false); in AppendChar_Arabic()
175 CFX_BreakType CFX_TxtBreak::AppendChar_Others(CFX_Char* pCurChar) { in AppendChar_Others()
209 CFX_Char* pCurChar = &m_pCurLine->m_LineChars.back(); in AppendChar()
265 CFX_Char* pTC; in EndBreak_SplitLine()
[all …]
Dcfx_breakline.h21 CFX_Char* GetChar(int32_t index);
22 const CFX_Char* GetChar(int32_t index) const;
31 std::vector<CFX_Char> m_LineChars;
Dcfx_break.cpp102 CFX_Char* tc = m_pCurLine->GetChar(iCount - 1); in SetBreakStatus()
164 CFX_Char* CFX_Break::GetLastChar(int32_t index, in GetLastChar()
167 std::vector<CFX_Char>& tca = m_pCurLine->m_LineChars; in GetLastChar()
173 CFX_Char* pTC = &tca[iStart--]; in GetLastChar()
Dcfx_breakpiece.h27 CFX_Char* GetChar(int32_t index) const;
43 UnownedPtr<std::vector<CFX_Char>> m_pChars;
Dcfx_breakline.cpp19 CFX_Char* CFX_BreakLine::GetChar(int32_t index) { in GetChar()
24 const CFX_Char* CFX_BreakLine::GetChar(int32_t index) const { in GetChar()
Dcfx_breakpiece.cpp32 CFX_Char* CFX_BreakPiece::GetChar(int32_t index) const { in GetChar()
Dcfx_break.h59 CFX_Char* GetLastChar(int32_t index, bool bOmitChar, bool bRichText) const;
/external/pdfium/xfa/fde/
Dcfde_textout.cpp386 const CFX_Char* pTC = pPiece->GetChar(j); in RetrievePieces()