HomeSort by relevance Sort by last modified time
    Searched refs:CFX_Char (Results 1 - 17 of 17) sorted by null

  /external/pdfium/core/fxcrt/
cfx_char.cpp 7 #include "core/fxcrt/cfx_char.h"
9 CFX_Char::CFX_Char(uint16_t wCharCode, uint32_t dwCharProps)
10 : CFX_Char(wCharCode, dwCharProps, 100, 100) {}
12 CFX_Char::CFX_Char(uint16_t wCharCode,
31 CFX_Char::CFX_Char(const CFX_Char& other) = default;
33 CFX_Char::~CFX_Char() = default
    [all...]
fx_arabic.h 12 #include "core/fxcrt/cfx_char.h"
19 wchar_t GetFormChar(const CFX_Char* cur,
20 const CFX_Char* prev,
21 const CFX_Char* next);
cfx_char.h 16 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();
fx_bidi.cpp 235 void BidiLine(std::vector<CFX_Char>* chars, size_t iCount) {
272 void ReverseString(std::vector<CFX_Char>* chars,
281 void SetDeferredRun(std::vector<CFX_Char>* chars,
301 void Classify(std::vector<CFX_Char>* chars, size_t iCount, bool bWS) {
304 CFX_Char& cur = (*chars)[i];
313 CFX_Char& cur = (*chars)[i];
320 void ResolveExplicit(std::vector<CFX_Char>* chars, size_t iCount) {
325 void ResolveWeak(std::vector<CFX_Char>* chars, size_t iCount) {
339 CFX_Char* pTC = &(*chars)[i];
347 CFX_Char* pTCNext = &(*chars)[i + 1]
    [all...]
fx_bidi.h 17 #include "core/fxcrt/cfx_char.h"
80 void FX_BidiLine(std::vector<CFX_Char>* chars, size_t iCount);
fx_arabic.cpp 146 const FX_ARBFORMTABLE* ParseChar(const CFX_Char* pTC,
180 CFX_Char c(wch, FX_GetUnicodeProperties(wch));
181 CFX_Char p(prev, FX_GetUnicodeProperties(prev));
182 CFX_Char n(next, FX_GetUnicodeProperties(next));
186 wchar_t GetFormChar(const CFX_Char* cur,
187 const CFX_Char* prev,
188 const CFX_Char* next) {
  /external/pdfium/xfa/fgas/layout/
cfx_breakline.h 12 #include "core/fxcrt/cfx_char.h"
21 CFX_Char* GetChar(int32_t index);
22 const CFX_Char* GetChar(int32_t index) const;
31 std::vector<CFX_Char> m_LineChars;
cfx_rtfbreak.h 69 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,
cfx_txtbreak.h 14 #include "core/fxcrt/cfx_char.h"
74 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,
cfx_breakpiece.h 12 #include "core/fxcrt/cfx_char.h"
27 CFX_Char* GetChar(int32_t index) const;
43 UnownedPtr<std::vector<CFX_Char>> m_pChars;
cfx_breakline.cpp 19 CFX_Char* CFX_BreakLine::GetChar(int32_t index) {
24 const CFX_Char* CFX_BreakLine::GetChar(int32_t index) const {
cfx_break.cpp 102 CFX_Char* tc = m_pCurLine->GetChar(iCount - 1);
164 CFX_Char* CFX_Break::GetLastChar(int32_t index,
167 std::vector<CFX_Char>& tca = m_pCurLine->m_LineChars;
173 CFX_Char* pTC = &tca[iStart--];
cfx_rtfbreak.cpp 74 CFX_Char* pCurChar = &m_pCurLine->m_LineChars.back();
123 void CFX_RTFBreak::AppendChar_Combination(CFX_Char* pCurChar) {
130 CFX_Char* pLastChar = GetLastChar(0, false, true);
141 void CFX_RTFBreak::AppendChar_Tab(CFX_Char* pCurChar) {
156 CFX_BreakType CFX_RTFBreak::AppendChar_Control(CFX_Char* pCurChar) {
180 CFX_BreakType CFX_RTFBreak::AppendChar_Arabic(CFX_Char* pCurChar) {
181 CFX_Char* pLastChar = nullptr;
190 CFX_Char* pPrevChar = GetLastChar(2, false, true);
225 CFX_BreakType CFX_RTFBreak::AppendChar_Others(CFX_Char* pCurChar) {
268 CFX_Char* tc = m_pCurLine->GetChar(iCount - 1)
    [all...]
cfx_txtbreak.cpp 50 void CFX_TxtBreak::AppendChar_Combination(CFX_Char* pCurChar) {
59 CFX_Char* pLastChar = GetLastChar(0, false, false);
90 void CFX_TxtBreak::AppendChar_Tab(CFX_Char* pCurChar) {
94 CFX_BreakType CFX_TxtBreak::AppendChar_Control(CFX_Char* pCurChar) {
121 CFX_BreakType CFX_TxtBreak::AppendChar_Arabic(CFX_Char* pCurChar) {
126 CFX_Char* pLastChar = nullptr;
136 CFX_Char* pPrevChar = GetLastChar(2, true, false);
175 CFX_BreakType CFX_TxtBreak::AppendChar_Others(CFX_Char* pCurChar) {
209 CFX_Char* pCurChar = &m_pCurLine->m_LineChars.back();
265 CFX_Char* pTC
    [all...]
cfx_break.h 59 CFX_Char* GetLastChar(int32_t index, bool bOmitChar, bool bRichText) const;
cfx_breakpiece.cpp 32 CFX_Char* CFX_BreakPiece::GetChar(int32_t index) const {
  /external/pdfium/xfa/fde/
cfde_textout.cpp 386 const CFX_Char* pTC = pPiece->GetChar(j);

Completed in 347 milliseconds