Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_coordinates.h20 class CFX_PTemplate {
22 CFX_PTemplate() : x(0), y(0) {} in CFX_PTemplate() function
23 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() function
24 CFX_PTemplate(const CFX_PTemplate& other) : x(other.x), y(other.y) {} in CFX_PTemplate() function
26 CFX_PTemplate& operator=(const CFX_PTemplate& other) {
33 bool operator==(const CFX_PTemplate& other) const {
36 bool operator!=(const CFX_PTemplate& other) const {
39 CFX_PTemplate& operator+=(const CFX_PTemplate<BaseType>& obj) {
44 CFX_PTemplate& operator-=(const CFX_PTemplate<BaseType>& obj) {
49 CFX_PTemplate operator+(const CFX_PTemplate& other) const {
[all …]