HomeSort by relevance Sort by last modified time
    Searched refs:bPrepended (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/fxcrt/
fx_coordinates.cpp 226 void CFX_Matrix::Concat(const CFX_Matrix& m, bool bPrepended) {
227 ConcatInternal(m, bPrepended);
230 void CFX_Matrix::ConcatInverse(const CFX_Matrix& src, bool bPrepended) {
231 Concat(src.GetInverse(), bPrepended);
242 void CFX_Matrix::Translate(float x, float y, bool bPrepended) {
243 if (bPrepended) {
252 void CFX_Matrix::Scale(float sx, float sy, bool bPrepended) {
255 if (bPrepended) {
267 void CFX_Matrix::Rotate(float fRadian, bool bPrepended) {
271 bPrepended);
    [all...]
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);

Completed in 74 milliseconds