HomeSort by relevance Sort by last modified time
    Searched refs:pMatrix (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/pdfium/xfa/fwl/theme/
cfwl_monthcalendartp.h 36 void DrawTotalBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
37 void DrawHeadBk(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
38 void DrawLButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
39 void DrawRButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
40 void DrawDatesInBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
41 void DrawDatesInCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
42 void DrawTodayCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
43 void DrawHSeperator(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
44 void DrawWeekNumSep(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
cfwl_comboboxtp.h 23 CFX_Matrix* pMatrix);
26 CFX_Matrix* pMatrix);
cfwl_checkboxtp.h 42 CFX_Matrix* pMatrix);
46 CFX_Matrix* pMatrix);
50 CFX_Matrix* pMatrix);
54 CFX_Matrix* pMatrix);
58 CFX_Matrix* pMatrix);
62 CFX_Matrix* pMatrix);
66 CFX_Matrix* pMatrix);
cfwl_datetimepickertp.h 21 void DrawDropDownButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix);
cfwl_scrollbartp.h 37 CFX_Matrix* pMatrix = nullptr);
43 CFX_Matrix* pMatrix = nullptr);
48 CFX_Matrix* pMatrix = nullptr);
53 CFX_Matrix* pMatrix = nullptr);
cfwl_widgettp.h 59 CFX_Matrix* pMatrix = nullptr);
62 CFX_Matrix* pMatrix = nullptr);
66 CFX_Matrix* pMatrix = nullptr);
76 CFX_Matrix* pMatrix = nullptr);
79 CFX_Matrix* pMatrix = nullptr);
84 CFX_Matrix* pMatrix = nullptr);
88 CFX_Matrix* pMatrix = nullptr);
93 CFX_Matrix* pMatrix = nullptr);
cfwl_carettp.h 25 CFX_Matrix* pMatrix = nullptr);
cfwl_listboxtp.h 25 CFX_Matrix* pMatrix = nullptr);
cfwl_monthcalendartp.cpp 106 CFX_Matrix* pMatrix) {
112 pParams->m_pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
117 CFX_Matrix* pMatrix) {
123 pParams->m_pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
128 CFX_Matrix* pMatrix) {
135 pParams->m_pGraphics->StrokePath(&path, pMatrix);
139 pParams->m_pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
143 pParams->m_pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
156 pParams->m_pGraphics->StrokePath(&path, pMatrix);
161 CFX_Matrix* pMatrix) {
    [all...]
cfwl_carettp.cpp 41 CFX_Matrix* pMatrix) {
50 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
cfwl_datetimepickertp.cpp 35 CFX_Matrix* pMatrix) {
60 FWLTHEME_DIRECTION_Down, eState, pMatrix);
cfwl_widgettp.cpp 52 CFX_Matrix* pMatrix = &pParams->m_matrix;
53 pMatrix->Concat(*pGraphics->GetMatrix());
54 m_pTextOut->SetMatrix(*pMatrix);
105 CFX_Matrix* pMatrix) {
115 pGraphics->FillPath(&path, FXFILL_ALTERNATE, pMatrix);
121 CFX_Matrix* pMatrix) {
122 FillSoildRect(pGraphics, FWLTHEME_COLOR_Background, pRect, pMatrix);
128 CFX_Matrix* pMatrix) {
136 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
149 CFX_Matrix* pMatrix) {
    [all...]
cfwl_checkboxtp.cpp 69 CFX_Matrix* pMatrix) {
75 mt.Concat(*pMatrix);
85 CFX_Matrix* pMatrix) {
90 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
97 CFX_Matrix* pMatrix) {
108 pGraphics->StrokePath(&path, pMatrix);
115 CFX_Matrix* pMatrix) {
128 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
135 CFX_Matrix* pMatrix) {
141 pGraphics->FillPath(&path, FXFILL_WINDING, pMatrix);
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTTrans.cpp 206 @Input pMatrix
218 - *pMatrix is the World, View & Projection matrices combined.
223 const PVRTMATRIX * const pMatrix,
240 fX = pMatrix->f[ 0]*pBoundingBox->Point[i].x +
241 pMatrix->f[ 4]*pBoundingBox->Point[i].y +
242 pMatrix->f[ 8]*pBoundingBox->Point[i].z +
243 pMatrix->f[12];
244 fY = pMatrix->f[ 1]*pBoundingBox->Point[i].x +
245 pMatrix->f[ 5]*pBoundingBox->Point[i].y +
246 pMatrix->f[ 9]*pBoundingBox->Point[i].z
    [all...]
PVRTTrans.h 69 @param[in] pMatrix
81 - *pMatrix is the World, View & Projection matrices combined.
86 const PVRTMATRIX * const pMatrix,
95 @param[in] pMatrix Matrix to transform the vectors
97 @brief Transform all vertices [X Y Z 1] in pV by pMatrix and
105 const PVRTMATRIX * const pMatrix,
113 @param[in] pMatrix Matrix to transform the vectors
115 @brief Transform all vertices in pVertex by pMatrix and store them in
120 - pMatrix is the matrix used to transform the object.
126 const PVRTMATRIX * const pMatrix,
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_path.cpp 40 void CPDF_Path::Transform(const CFX_Matrix* pMatrix) {
41 m_Ref.GetPrivateCopy()->Transform(pMatrix);
44 void CPDF_Path::Append(const CPDF_Path& other, const CFX_Matrix* pMatrix) {
45 m_Ref.GetPrivateCopy()->Append(other.GetObject(), pMatrix);
48 void CPDF_Path::Append(const CFX_PathData* pData, const CFX_Matrix* pMatrix) {
49 m_Ref.GetPrivateCopy()->Append(pData, pMatrix);
cpdf_path.h 35 void Transform(const CFX_Matrix* pMatrix);
37 void Append(const CPDF_Path& other, const CFX_Matrix* pMatrix);
38 void Append(const CFX_PathData* pData, const CFX_Matrix* pMatrix);
cpdf_pageobject.cpp 96 FX_RECT CPDF_PageObject::GetBBox(const CFX_Matrix* pMatrix) const {
98 if (pMatrix)
99 rect = pMatrix->TransformRect(rect);
  /external/pdfium/core/fpdfapi/render/
cpdf_type3cache.h 27 const CFX_Matrix* pMatrix,
37 const CFX_Matrix* pMatrix,
cpdf_type3cache.cpp 87 const CFX_Matrix* pMatrix,
92 4, FXSYS_round(pMatrix->a * 10000), FXSYS_round(pMatrix->b * 10000),
93 FXSYS_round(pMatrix->c * 10000), FXSYS_round(pMatrix->d * 10000));
109 RenderGlyph(pSizeCache, charcode, pMatrix, retinaScaleX, retinaScaleY);
118 const CFX_Matrix* pMatrix,
125 CFX_Matrix text_matrix(pMatrix->a, pMatrix->b, pMatrix->c, pMatrix->d, 0, 0)
    [all...]
  /external/pdfium/core/fxge/
cfx_facecache.h 32 const CFX_Matrix* pMatrix,
52 const CFX_Matrix* pMatrix,
58 const CFX_Matrix* pMatrix,
62 const CFX_Matrix* pMatrix,
cfx_pathdata.h 52 void Transform(const CFX_Matrix* pMatrix);
54 bool GetZeroAreaPath(const CFX_Matrix* pMatrix,
59 bool IsRect(const CFX_Matrix* pMatrix, CFX_FloatRect* rect) const;
61 void Append(const CFX_PathData* pSrc, const CFX_Matrix* pMatrix);
cfx_facecache.cpp 75 const CFX_Matrix* pMatrix,
82 ft_matrix.xx = (signed long)(pMatrix->a / 64 * 65536);
83 ft_matrix.xy = (signed long)(pMatrix->c / 64 * 65536);
84 ft_matrix.yx = (signed long)(pMatrix->b / 64 * 65536);
85 ft_matrix.yy = (signed long)(pMatrix->d / 64 * 65536);
218 const CFX_Matrix* pMatrix,
226 int nMatrixA = static_cast<int>(pMatrix->a * 10000);
227 int nMatrixB = static_cast<int>(pMatrix->b * 10000);
228 int nMatrixC = static_cast<int>(pMatrix->c * 10000);
229 int nMatrixD = static_cast<int>(pMatrix->d * 10000)
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_annotlist.h 31 const CFX_Matrix* pMatrix,
39 const CFX_Matrix* pMatrix,
55 const CFX_Matrix* pMatrix,
  /external/pdfium/xfa/fwl/
cfwl_monthcalendar.h 94 const CFX_Matrix* pMatrix);
97 const CFX_Matrix* pMatrix);
100 const CFX_Matrix* pMatrix);
103 const CFX_Matrix* pMatrix);
106 const CFX_Matrix* pMatrix);
109 const CFX_Matrix* pMatrix);
112 const CFX_Matrix* pMatrix);
115 const CFX_Matrix* pMatrix);
118 const CFX_Matrix* pMatrix);
121 const CFX_Matrix* pMatrix);
    [all...]

Completed in 506 milliseconds

1 2 3 4 5