Lines Matching refs:ClipHistoryEntry
262 // ClipHistoryEntry
265 class ClipHistoryEntry {
268 ClipHistoryEntry(GfxPath *clipPath = NULL, GfxClipType clipType = clipNormal);
269 virtual ~ClipHistoryEntry();
272 ClipHistoryEntry *save();
273 ClipHistoryEntry *restore();
281 ClipHistoryEntry *saved; // next clip path on stack
286 ClipHistoryEntry(ClipHistoryEntry *other);
314 clipHistory(new ClipHistoryEntry()),
371 clipHistory(new ClipHistoryEntry()),
3340 // ClipHistoryEntry
3343 ClipHistoryEntry::ClipHistoryEntry(GfxPath *clipPathA, GfxClipType clipTypeA) :
3350 ClipHistoryEntry::~ClipHistoryEntry()
3358 void ClipHistoryEntry::setClip(GfxPath *clipPathA, GfxClipType clipTypeA) {
3372 ClipHistoryEntry *ClipHistoryEntry::save() {
3373 ClipHistoryEntry *newEntry = new ClipHistoryEntry(this);
3379 ClipHistoryEntry *ClipHistoryEntry::restore() {
3380 ClipHistoryEntry *oldEntry;
3393 ClipHistoryEntry::ClipHistoryEntry(ClipHistoryEntry *other) {