Home | History | Annotate | Download | only in filters

Lines Matching refs:mCurrent

48     private StrokeData mCurrent; // used in the currently drawing style
64 + ((mCurrent == null) ? " no current "
65 : ("draw=" + mCurrent.mType + " " + mCurrent.noPoints));
73 return mCurrent;
92 if (representation.mCurrent != null) {
93 mCurrent = (StrokeData) representation.mCurrent.clone();
95 mCurrent = null;
120 if (fdRep.mCurrent == null && mCurrent.mPath == null) {
123 if (fdRep.mCurrent != null && mCurrent.mPath != null) {
124 if (fdRep.mCurrent.noPoints == mCurrent.noPoints) {
134 mCurrent = new StrokeData();
135 mCurrent.mColor = color;
136 mCurrent.mRadius = size;
137 mCurrent.mType = type;
138 mCurrent.mPath = new Path();
139 mCurrent.mPath.moveTo(x, y);
140 mCurrent.noPoints = 0;
144 mCurrent.noPoints++;
145 mCurrent.mPath.lineTo(x, y);
149 mCurrent.mPath.lineTo(x, y);
150 mCurrent.noPoints++;
151 mDrawing.add(mCurrent);
152 mCurrent = null;
156 mCurrent = null;
160 mCurrent = null;