• Home
  • Raw
  • Download

Lines Matching refs:strokes

66 void CXFA_Rectangle::GetFillPath(const std::vector<CXFA_Stroke*>& strokes,  in GetFillPath()  argument
70 CXFA_Stroke* stroke1 = strokes[0]; in GetFillPath()
72 CXFA_Stroke* stroke2 = strokes[i]; in GetFillPath()
81 stroke1 = strokes[0]; in GetFillPath()
83 CXFA_Stroke* stroke2 = strokes[i]; in GetFillPath()
92 stroke1 = strokes[0]; in GetFillPath()
113 auto* corner1 = static_cast<CXFA_Corner*>(strokes[i]); in GetFillPath()
114 auto* corner2 = static_cast<CXFA_Corner*>(strokes[(i + 2) % 8]); in GetFillPath()
200 void CXFA_Rectangle::Draw(const std::vector<CXFA_Stroke*>& strokes, in Draw() argument
206 if (strokes[j * 2 + 1]->IsVisible()) { in Draw()
215 float fThickness = std::fmax(0.0, strokes[i]->GetThickness()); in Draw()
253 Stroke(strokes, pGS, rtWidget, matrix); in Draw()
256 void CXFA_Rectangle::Stroke(const std::vector<CXFA_Stroke*>& strokes, in Stroke() argument
290 CXFA_Stroke* stroke1 = strokes[0]; in Stroke()
292 CXFA_Stroke* stroke2 = strokes[i]; in Stroke()
300 stroke1 = strokes[0]; in Stroke()
303 CXFA_Stroke* stroke2 = strokes[i]; in Stroke()
312 stroke1 = strokes[0]; in Stroke()
323 CXFA_Stroke* stroke = strokes[i]; in Stroke()
334 GetPath(strokes, rtWidget, path, i, bStart, !bSameStyles); in Stroke()
336 bStart = !stroke->SameStyles(strokes[(i + 1) % 8], 0); in Stroke()
348 if (strokes[7]) in Stroke()
349 strokes[7]->Stroke(&path, pGS, matrix); in Stroke()
442 void CXFA_Rectangle::GetPath(const std::vector<CXFA_Stroke*>& strokes, in GetPath() argument
451 auto* corner1 = static_cast<CXFA_Corner*>(strokes[n]); in GetPath()
452 auto* corner2 = static_cast<CXFA_Corner*>(strokes[(n + 2) % 8]); in GetPath()
462 CXFA_Stroke* stroke = strokes[nIndex]; in GetPath()
464 CXFA_Stroke* strokeBefore = strokes[(nIndex + 1 * 8 - 1) % 8]; in GetPath()
465 CXFA_Stroke* strokeAfter = strokes[nIndex + 1]; in GetPath()
473 CXFA_Stroke* strokeBefore = strokes[(nIndex + 8 - 2) % 8]; in GetPath()
474 CXFA_Stroke* strokeAfter = strokes[(nIndex + 2) % 8]; in GetPath()