OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nFontIndex
(Results
1 - 13
of
13
) sorted by null
/external/pdfium/fpdfsdk/src/pdfwindow/
PWL_FontMap.cpp
60
CPDF_Font* CPWL_FontMap::GetPDFFont(int32_t
nFontIndex
) {
61
if (
nFontIndex
>= 0 &&
nFontIndex
< m_aData.GetSize()) {
62
if (CPWL_FontMap_Data* pData = m_aData.GetAt(
nFontIndex
)) {
70
CFX_ByteString CPWL_FontMap::GetPDFFontAlias(int32_t
nFontIndex
) {
71
if (
nFontIndex
>= 0 &&
nFontIndex
< m_aData.GetSize()) {
72
if (CPWL_FontMap_Data* pData = m_aData.GetAt(
nFontIndex
)) {
80
FX_BOOL CPWL_FontMap::KnowWord(int32_t
nFontIndex
, FX_WORD word) {
81
if (
nFontIndex
>= 0 && nFontIndex < m_aData.GetSize())
[
all
...]
PWL_EditCtrl.cpp
449
int32_t
nFontIndex
= 0;
456
nFontIndex
= word.
nFontIndex
;
459
nFontIndex
= section.WordProps.
nFontIndex
;
465
return pFontMap->GetPDFFont(
nFontIndex
);
/external/pdfium/core/include/fpdfdoc/
fpdf_ap.h
16
virtual CPDF_Font* GetPDFFont(int32_t
nFontIndex
) = 0;
17
virtual CFX_ByteString GetPDFFontAlias(int32_t
nFontIndex
) = 0;
57
int32_t GetCharWidth(int32_t
nFontIndex
,
60
int32_t GetTypeAscent(int32_t
nFontIndex
) override;
61
int32_t GetTypeDescent(int32_t
nFontIndex
) override;
64
int32_t
nFontIndex
) override;
fpdf_vt.h
166
:
nFontIndex
(-1),
181
:
nFontIndex
(fontIndex),
190
:
nFontIndex
(other.
nFontIndex
),
198
int32_t
nFontIndex
;
237
int32_t
nFontIndex
;
272
virtual int32_t GetCharWidth(int32_t
nFontIndex
,
276
virtual int32_t GetTypeAscent(int32_t
nFontIndex
) = 0;
278
virtual int32_t GetTypeDescent(int32_t
nFontIndex
) = 0;
282
int32_t
nFontIndex
) = 0
[
all
...]
/external/pdfium/fpdfsdk/include/pdfwindow/
PWL_FontMap.h
57
CPDF_Font* GetPDFFont(int32_t
nFontIndex
) override;
58
CFX_ByteString GetPDFFontAlias(int32_t
nFontIndex
) override;
61
int32_t
nFontIndex
) override;
62
int32_t CharCodeFromUnicode(int32_t
nFontIndex
, FX_WORD word) override;
89
FX_BOOL KnowWord(int32_t
nFontIndex
, FX_WORD word);
105
CFX_ByteString GetFontName(int32_t
nFontIndex
);
/external/pdfium/fpdfsdk/src/fxedit/
fxet_ap.cpp
12
int32_t
nFontIndex
,
16
if (CPDF_Font* pPDFFont = pFontMap->GetPDFFont(
nFontIndex
)) {
25
dwCharCode = pFontMap->CharCodeFromUnicode(
nFontIndex
, Word);
47
int32_t
nFontIndex
,
52
CFX_ByteString sFontAlias = pFontMap->GetPDFFontAlias(
nFontIndex
);
114
if (word.
nFontIndex
!= nCurFontIndex) {
120
word.
nFontIndex
, word.fFontSize);
121
nCurFontIndex = word.
nFontIndex
;
141
if (word.
nFontIndex
!= nCurFontIndex) {
143
word.
nFontIndex
, word.fFontSize)
[
all
...]
fxet_pageobjs.cpp
171
int32_t
nFontIndex
= -1;
239
if (place.LineCmp(oldplace) != 0 || word.
nFontIndex
!=
nFontIndex
||
244
pFontMap->GetPDFFont(
nFontIndex
), fFontSize,
250
nFontIndex
= word.
nFontIndex
;
255
sTextBuf << GetPDFWordString(pFontMap, word.
nFontIndex
, word.Word,
261
pFontMap->GetPDFFont(word.
nFontIndex
), fFontSize, pUser2Device,
262
GetPDFWordString(pFontMap, word.
nFontIndex
, word.Word, SubWord),
272
pFontMap->GetPDFFont(
nFontIndex
), fFontSize, pUser2Device
[
all
...]
fxet_edit.cpp
102
int32_t CFX_Edit_Provider::GetCharWidth(int32_t
nFontIndex
,
105
if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(
nFontIndex
)) {
111
charcode = m_pFontMap->CharCodeFromUnicode(
nFontIndex
, word);
120
int32_t CFX_Edit_Provider::GetTypeAscent(int32_t
nFontIndex
) {
121
if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(
nFontIndex
))
127
int32_t CFX_Edit_Provider::GetTypeDescent(int32_t
nFontIndex
) {
128
if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(
nFontIndex
))
136
int32_t
nFontIndex
) {
137
return m_pFontMap->GetWordFontIndex(word, charset,
nFontIndex
);
1105
FX_BOOL CFX_Edit::SetRichFontIndex(int32_t
nFontIndex
) {
[
all
...]
/external/pdfium/core/src/fpdfdoc/
doc_ap.cpp
52
CPDF_Font* GetPDFFont(int32_t
nFontIndex
) override;
53
CFX_ByteString GetPDFFontAlias(int32_t
nFontIndex
) override;
99
CPDF_Font* CPVT_FontMap::GetPDFFont(int32_t
nFontIndex
) {
100
switch (
nFontIndex
) {
112
CFX_ByteString CPVT_FontMap::GetPDFFontAlias(int32_t
nFontIndex
) {
113
switch (
nFontIndex
) {
129
int32_t CPVT_Provider::GetCharWidth(int32_t
nFontIndex
,
132
if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(
nFontIndex
)) {
140
int32_t CPVT_Provider::GetTypeAscent(int32_t
nFontIndex
) {
141
if (CPDF_Font* pPDFFont = m_pFontMap->GetPDFFont(
nFontIndex
)) {
[
all
...]
pdf_vt.h
123
nFontIndex
(-1),
134
nFontIndex
(fontIndex),
143
nFontIndex
(-1),
153
nFontIndex
= word.
nFontIndex
;
167
int32_t
nFontIndex
;
446
int32_t GetCharWidth(int32_t
nFontIndex
,
450
int32_t GetTypeAscent(int32_t
nFontIndex
);
451
int32_t GetTypeDescent(int32_t
nFontIndex
);
452
int32_t GetWordFontIndex(FX_WORD word, int32_t charset, int32_t
nFontIndex
);
[
all
...]
doc_vt.cpp
613
pWord->
nFontIndex
, pWord->Word, m_pVT->m_wSubWord,
855
pNewProps->
nFontIndex
=
856
GetWordFontIndex(word, charset, pWordProps->
nFontIndex
);
859
int32_t
nFontIndex
=
862
return AddWord(newplace, CPVT_WordInfo(word, charset,
nFontIndex
, NULL));
[
all
...]
/external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h
59
virtual CPDF_Font* GetPDFFont(int32_t
nFontIndex
) = 0;
61
virtual CFX_ByteString GetPDFFontAlias(int32_t
nFontIndex
) = 0;
65
int32_t
nFontIndex
) = 0;
67
virtual int32_t CharCodeFromUnicode(int32_t
nFontIndex
, FX_WORD word) = 0;
255
virtual FX_BOOL SetRichFontIndex(int32_t
nFontIndex
) = 0;
572
int32_t
nFontIndex
,
fxet_edit.h
556
FX_BOOL SetRichFontIndex(int32_t
nFontIndex
) override;
801
int32_t GetCharWidth(int32_t
nFontIndex
,
804
int32_t GetTypeAscent(int32_t
nFontIndex
) override;
805
int32_t GetTypeDescent(int32_t
nFontIndex
) override;
808
int32_t
nFontIndex
) override;
Completed in 1213 milliseconds