Home | History | Annotate | Download | only in animator

Lines Matching full:gettype

68     virtual SkDisplayTypes getType() const;
71 SkDisplayTypes type = getType();
73 bool isApply() const { return getType() == SkType_Apply; }
74 bool isColor() const { return getType() == SkType_Color; }
76 bool isGroup() const { return getType() == SkType_Group ||
77 getType() == SkType_Save || getType() == SkType_DrawTo ||
78 getType() == SkType_SaveLayer; }
79 bool isMatrix() const { return getType() == SkType_Matrix; }
80 virtual bool isPaint() const { return getType() == SkType_Paint; }
82 bool isPost() const { return getType() == SkType_Post; }
91 bool isDataInput() const { return getType() == SkType_DataInput; };
92 bool isEvent() const { return getType() == SkType_Event; }
94 bool isPatch() const { return getType() == SkType_3D_Patch; }