OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtBBox
(Results
1 - 7
of
7
) sorted by null
/external/pdfium/core/src/fxge/android/
fpf_skiafont.cpp
86
FX_BOOL CFPF_SkiaFont::GetGlyphBBox(int32_t iGlyphIndex, FX_RECT&
rtBBox
) {
108
rtBBox
.left = FPF_EM_ADJUST(x_ppem, cbox.xMin);
109
rtBBox
.right = FPF_EM_ADJUST(x_ppem, cbox.xMax);
110
rtBBox
.top = FPF_EM_ADJUST(y_ppem, cbox.yMax);
111
rtBBox
.bottom = FPF_EM_ADJUST(y_ppem, cbox.yMin);
112
rtBBox
.top = std::min(
rtBBox
.top, GetAscent());
113
rtBBox
.bottom = std::max(
rtBBox
.bottom, GetDescent());
122
rtBBox
.left = FPF_EM_ADJUST(FXFT_Get_Face_UnitsPerEM(m_Face)
[
all
...]
fpf_skiafont.h
34
FX_BOOL GetGlyphBBox(int32_t iGlyphIndex, FX_RECT&
rtBBox
) override;
35
FX_BOOL GetBBox(FX_RECT&
rtBBox
) override;
/external/pdfium/xfa/src/fgas/src/layout/
fx_unicode.cpp
96
CFX_Rect
rtBBox
;
97
rtBBox
.Reset();
98
if (pFont->GetCharBBox(wch,
rtBBox
, bMBCSCode)) {
101
ptOffset.y = fFontSize * (1000 -
rtBBox
.height) / 1200.0f;
104
ptOffset.y = fFontSize * (1000 -
rtBBox
.height) / 6000.0f;
109
ptOffset.x = fFontSize * (600 -
rtBBox
.right()) / 1000.0f;
112
ptOffset.x = fFontSize * (950 -
rtBBox
.right()) / 1000.0f;
fx_textbreak.cpp
[
all
...]
fx_rtfbreak.cpp
[
all
...]
/external/pdfium/core/include/fxge/
fpf.h
43
virtual FX_BOOL GetGlyphBBox(int32_t iGlyphIndex, FX_RECT&
rtBBox
) = 0;
44
virtual FX_BOOL GetBBox(FX_RECT&
rtBBox
) = 0;
/external/pdfium/xfa/src/fgas/src/font/
fx_gefont.cpp
447
FX_RECT
rtBBox
;
448
if (m_pFont->GetGlyphBBox(iGlyph,
rtBBox
)) {
451
rt.Set(
rtBBox
.left,
rtBBox
.top,
rtBBox
.Width(),
rtBBox
.Height());
Completed in 223 milliseconds