Home
last modified time | relevance | path

Searched refs:FXT_PSV (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/core/include/fxcrt/
Dfx_coordinates.h30 typedef CFX_PSVTemplate<baseType> FXT_PSV; typedef
33 void Set(baseType x, baseType y) { FXT_PSV::x = x, FXT_PSV::y = y; } in Set()
34 void Set(const FXT_PSV& psv) { FXT_PSV::x = psv.x, FXT_PSV::y = psv.y; } in Set()
35 void Add(baseType x, baseType y) { FXT_PSV::x += x, FXT_PSV::y += y; } in Add()
36 void Subtract(baseType x, baseType y) { FXT_PSV::x -= x, FXT_PSV::y -= y; } in Subtract()
37 void Reset() { FXT_PSV::x = FXT_PSV::y = 0; } in Reset()
38 FXT_PSV& operator+=(const FXT_PSV& obj) {
43 FXT_PSV& operator-=(const FXT_PSV& obj) {
48 FXT_PSV& operator*=(baseType lamda) {
53 FXT_PSV& operator/=(baseType lamda) {
[all …]