Home | History | Annotate | Download | only in core

Lines Matching full:const

18     SkAAClip(const SkAAClip&);
21 SkAAClip& operator=(const SkAAClip&);
22 friend bool operator==(const SkAAClip&, const SkAAClip&);
23 friend bool operator!=(const SkAAClip& a, const SkAAClip& b) {
29 bool isEmpty() const { return nullptr == fRunHead; }
30 const SkIRect& getBounds() const { return fBounds; }
34 bool isRect() const;
37 bool setRect(const SkIRect&);
38 bool setRect(const SkRect&, bool doAA = true);
39 bool setPath(const SkPath&, const SkRegion* clip = nullptr, bool doAA = true);
40 bool setRegion(const SkRegion&);
41 bool set(const SkAAClip&);
43 bool op(const SkAAClip&, const SkAAClip&, SkRegion::Op);
46 bool op(const SkIRect&, SkRegion::Op);
47 bool op(const SkRect&, SkRegion::Op, bool doAA);
48 bool op(const SkAAClip&, SkRegion::Op);
50 bool translate(int dx, int dy, SkAAClip* dst) const;
59 void copyToMask(SkMask*) const;
63 bool quickContains(int left, int top, int right, int bottom) const;
64 bool quickContains(const SkIRect& r) const {
68 const uint8_t* findRow(int y, int* lastYForRow = nullptr) const;
69 const uint8_t* findX(const uint8_t data[], int x, int* initialCount = nullptr) const;
77 void validate() const;
78 void debug(bool compress_y=false) const;
80 void validate() const {}
81 void debug(bool compress_y=false) const {}
105 void init(SkBlitter* blitter, const SkAAClip* aaclip) {
113 void blitAntiH(int x, int y, const SkAlpha[], const int16_t runs[]) override;
116 void blitMask(const SkMask&, const SkIRect& clip) override;
117 const SkPixmap* justAnOpaqueColor(uint32_t* value) override;
121 const SkAAClip* fAAClip;