Searched refs:bPrepended (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.cpp | 226 void CFX_Matrix::Concat(const CFX_Matrix& m, bool bPrepended) { in Concat() argument 227 ConcatInternal(m, bPrepended); in Concat() 230 void CFX_Matrix::ConcatInverse(const CFX_Matrix& src, bool bPrepended) { in ConcatInverse() argument 231 Concat(src.GetInverse(), bPrepended); in ConcatInverse() 242 void CFX_Matrix::Translate(float x, float y, bool bPrepended) { in Translate() argument 243 if (bPrepended) { in Translate() 252 void CFX_Matrix::Scale(float sx, float sy, bool bPrepended) { in Scale() argument 255 if (bPrepended) { in Scale() 267 void CFX_Matrix::Rotate(float fRadian, bool bPrepended) { in Rotate() argument 271 bPrepended); in Rotate() [all …]
|
D | fx_coordinates.h | 622 void Concat(const CFX_Matrix& m, bool bPrepended = false); 623 void ConcatInverse(const CFX_Matrix& m, bool bPrepended = false); 633 void Translate(float x, float y, bool bPrepended = false); 634 void Translate(int32_t x, int32_t y, bool bPrepended = false) { 635 Translate(static_cast<float>(x), static_cast<float>(y), bPrepended); 638 void Scale(float sx, float sy, bool bPrepended = false); 639 void Rotate(float fRadian, bool bPrepended = false); 640 void RotateAt(float fRadian, float x, float y, bool bPrepended = false); 642 void Shear(float fAlphaRadian, float fBetaRadian, bool bPrepended = false);
|