Home | History | Annotate | Download | only in input

Lines Matching refs:other

51     bool operator==(const DisplayViewport& other) const {
52 return displayId == other.displayId
53 && orientation == other.orientation
54 && logicalLeft == other.logicalLeft
55 && logicalTop == other.logicalTop
56 && logicalRight == other.logicalRight
57 && logicalBottom == other.logicalBottom
58 && physicalLeft == other.physicalLeft
59 && physicalTop == other.physicalTop
60 && physicalRight == other.physicalRight
61 && physicalBottom == other.physicalBottom
62 && deviceWidth == other.deviceWidth
63 && deviceHeight == other.deviceHeight
64 && uniqueId == other.uniqueId;
67 bool operator!=(const DisplayViewport& other) const {
68 return !(*this == other);