OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:rcAnnot
(Results
1 - 6
of
6
) sorted by null
/external/pdfium/fpdfsdk/
cba_annotiterator.cpp
118
CFX_FloatRect
rcAnnot
= GetAnnotRect(sa[i]);
119
if (
rcAnnot
.top > fTop) {
121
fTop =
rcAnnot
.top;
131
CFX_FloatRect
rcAnnot
= GetAnnotRect(sa[i]);
132
float fCenterY = (
rcAnnot
.top +
rcAnnot
.bottom) / 2.0f;
150
CFX_FloatRect
rcAnnot
= GetAnnotRect(sa[i]);
153
fLeft =
rcAnnot
.left;
154
} else if (
rcAnnot
.left < fLeft) {
156
fLeft =
rcAnnot
.left
[
all
...]
fpdf_flatten.cpp
218
CFX_Matrix GetMatrix(CFX_FloatRect
rcAnnot
,
227
float a =
rcAnnot
.Width() / rcStream.Width();
228
float d =
rcAnnot
.Height() / rcStream.Height();
230
float e =
rcAnnot
.left - rcStream.left * a;
231
float f =
rcAnnot
.bottom - rcStream.bottom * d;
333
CFX_FloatRect
rcAnnot
= pAnnotDic->GetRectFor("Rect");
334
rcAnnot
.Normalize();
400
CFX_Matrix m = GetMatrix(
rcAnnot
, rcStream, matrix);
cpdfsdk_widget.cpp
816
CFX_FloatRect
rcAnnot
= GetRect();
818
pathData.AppendRect(
rcAnnot
.left,
rcAnnot
.bottom,
rcAnnot
.right,
819
rcAnnot
.top);
902
CFX_FloatRect
rcAnnot
= GetRect();
903
float fWidth =
rcAnnot
.right -
rcAnnot
.left;
904
float fHeight =
rcAnnot
.top -
rcAnnot
.bottom
[
all
...]
/external/pdfium/fpdfsdk/formfiller/
cffl_formfiller.cpp
54
CFX_FloatRect
rcAnnot
= m_pWidget->GetRect();
56
rcAnnot
= PWLtoFFL(pWnd->GetWindowRect());
58
CFX_FloatRect rcWin =
rcAnnot
;
cffl_interactiveformfiller.cpp
551
CFX_FloatRect
rcAnnot
= pWidget->GetRect();
557
fTop = rcPageView.top -
rcAnnot
.top;
558
fBottom =
rcAnnot
.bottom - rcPageView.bottom;
561
fTop =
rcAnnot
.left - rcPageView.left;
562
fBottom = rcPageView.right -
rcAnnot
.right;
565
fTop =
rcAnnot
.bottom - rcPageView.bottom;
566
fBottom = rcPageView.top -
rcAnnot
.top;
569
fTop = rcPageView.right -
rcAnnot
.right;
570
fBottom =
rcAnnot
.left - rcPageView.left;
/external/pdfium/fxjs/
cjs_document.cpp
437
CFX_FloatRect
rcAnnot
= pWidget->GetRect();
438
--
rcAnnot
.left;
439
--
rcAnnot
.bottom;
440
++
rcAnnot
.right;
441
++
rcAnnot
.top;
443
std::vector<CFX_FloatRect> aRefresh(1,
rcAnnot
);
[
all
...]
Completed in 85 milliseconds