Lines Matching defs:ArrayImpl
68 struct ArrayImpl struct
70 CellVec maCells;
71 LongVec maWidths;
72 LongVec maHeights;
73 mutable LongVec maXCoords;
74 mutable LongVec maYCoords;
75 size_t mnWidth;
76 size_t mnHeight;
77 size_t mnFirstClipCol;
78 size_t mnFirstClipRow;
79 size_t mnLastClipCol;
80 size_t mnLastClipRow;
81 mutable bool mbXCoordsDirty;
82 mutable bool mbYCoordsDirty;
83 bool mbDiagDblClip;
87 inline bool IsValidPos( size_t nCol, size_t nRow ) const in IsValidPos()
89 inline size_t GetIndex( size_t nCol, size_t nRow ) const in GetIndex()
112 inline size_t GetMirrorCol( size_t nCol ) const { return mnWidth - nCol - 1; } in GetMirrorCol()
113 inline size_t GetMirrorRow( size_t nRow ) const { return mnHeight - nRow - 1; } in GetMirrorRow()