OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:text_page
(Results
1 - 5
of
5
) sorted by null
/external/pdfium/fpdfsdk/src/
fpdf_searchex.cpp
12
FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE
text_page
, int nTextIndex) {
13
if (!
text_page
)
15
return ((IPDF_TextPage*)
text_page
)->CharIndexFromTextIndex(nTextIndex);
fpdftext.cpp
38
DLLEXPORT void STDCALL FPDFText_ClosePage(FPDF_TEXTPAGE
text_page
) {
39
delete (IPDF_TextPage*)
text_page
;
41
DLLEXPORT int STDCALL FPDFText_CountChars(FPDF_TEXTPAGE
text_page
) {
42
if (!
text_page
)
44
IPDF_TextPage* textpage = (IPDF_TextPage*)
text_page
;
48
DLLEXPORT unsigned int STDCALL FPDFText_GetUnicode(FPDF_TEXTPAGE
text_page
,
50
if (!
text_page
)
52
IPDF_TextPage* textpage = (IPDF_TextPage*)
text_page
;
62
DLLEXPORT double STDCALL FPDFText_GetFontSize(FPDF_TEXTPAGE
text_page
,
64
if (!
text_page
)
[
all
...]
/external/pdfium/public/
fpdf_searchex.h
17
// Get the actually char index in
text_page
's internal char list.
19
//
text_page
- Handle to a text page information structure.
26
FPDFText_GetCharIndexFromTextIndex(FPDF_TEXTPAGE
text_page
, int nTextIndex);
fpdf_text.h
35
//
text_page
- Handle to a text page information structure.
40
DLLEXPORT void STDCALL FPDFText_ClosePage(FPDF_TEXTPAGE
text_page
);
45
//
text_page
- Handle to a text page information structure.
58
DLLEXPORT int STDCALL FPDFText_CountChars(FPDF_TEXTPAGE
text_page
);
63
//
text_page
- Handle to a text page information structure.
72
DLLEXPORT unsigned int STDCALL FPDFText_GetUnicode(FPDF_TEXTPAGE
text_page
,
78
//
text_page
- Handle to a text page information structure.
86
DLLEXPORT double STDCALL FPDFText_GetFontSize(FPDF_TEXTPAGE
text_page
,
92
//
text_page
- Handle to a text page information structure.
108
DLLEXPORT void STDCALL FPDFText_GetCharBox(FPDF_TEXTPAGE
text_page
,
[
all
...]
/external/pdfium/samples/
pdfium_test.cc
344
FPDF_TEXTPAGE
text_page
= FPDFText_LoadPage(page);
local
394
FPDFText_ClosePage(
text_page
);
Completed in 1153 milliseconds