Home
last modified time | relevance | path

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

/AOO41X/main/tools/source/generic/
H A Dpoly.cxx98 mnPoints = nInitSize; in ImplPolygon()
105 if ( rImpPoly.mnPoints ) in ImplPolygon()
107 mpPointAry = (Point*)new char[(sal_uIntPtr)rImpPoly.mnPoints*sizeof(Point)]; in ImplPolygon()
108 memcpy( mpPointAry, rImpPoly.mpPointAry, (sal_uIntPtr)rImpPoly.mnPoints*sizeof(Point) ); in ImplPolygon()
112 mpFlagAry = new sal_uInt8[ rImpPoly.mnPoints ]; in ImplPolygon()
113 memcpy( mpFlagAry, rImpPoly.mpFlagAry, rImpPoly.mnPoints ); in ImplPolygon()
125 mnPoints = rImpPoly.mnPoints; in ImplPolygon()
152 mnPoints = nInitSize; in ImplPolygon()
172 if( mnPoints == nNewSize ) in ImplSetSize()
184 if ( mnPoints < nNewSize ) in ImplSetSize()
[all …]
/AOO41X/main/vcl/source/glyphs/
H A Dgcach_ftyp.cxx2141 sal_uInt16 mnPoints; member in PolyArgs
2152 mnPoints(0), in PolyArgs()
2173 DBG_ASSERT( (mnPoints < mnMaxPoints), "FTGlyphOutline: AddPoint overflow!" ); in AddPoint()
2174 if( mnPoints >= mnMaxPoints ) in AddPoint()
2179 mpPointAry[ mnPoints ] = Point( nX, nY ); in AddPoint()
2180 mpFlagAry[ mnPoints++ ]= aFlag; in AddPoint()
2193 DBG_ASSERT( (mnPoints >= 2), "FTGlyphOutline: PolyFinishNum failed!" ); in ClosePolygon()
2194 --mnPoints; in ClosePolygon()
2195 DBG_ASSERT( (mpPointAry[0]==mpPointAry[mnPoints]), "FTGlyphOutline: PolyFinishEq failed!" ); in ClosePolygon()
2197 DBG_ASSERT( (mpFlagAry[mnPoints]==POLY_NORMAL), "FTGlyphOutline: PolyFinishFS failed!" ); in ClosePolygon()
[all …]
/AOO41X/main/tools/inc/
H A Dpoly.h40 sal_uInt16 mnPoints; variable