Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_coordinates.h19 class CFX_PTemplate {
21 CFX_PTemplate() : x(0), y(0) {} in CFX_PTemplate() function
22 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() function
23 CFX_PTemplate(const CFX_PTemplate& other) : x(other.x), y(other.y) {} in CFX_PTemplate() function
25 CFX_PTemplate& operator=(const CFX_PTemplate& other) {
32 bool operator==(const CFX_PTemplate& other) const {
35 bool operator!=(const CFX_PTemplate& other) const {
38 CFX_PTemplate& operator+=(const CFX_PTemplate<BaseType>& obj) {
43 CFX_PTemplate& operator-=(const CFX_PTemplate<BaseType>& obj) {
48 CFX_PTemplate operator+(const CFX_PTemplate& other) const {
[all …]