Home | History | Annotate | Download | only in filters

Lines Matching refs:mCurrent

158     private StrokeData mCurrent; // used in the currently drawing style
174 + ((mCurrent == null) ? " no current "
175 : ("draw=" + mCurrent.mType + " " + mCurrent.noPoints));
183 return mCurrent;
210 if (representation.mCurrent != null) {
211 mCurrent = (StrokeData) representation.mCurrent.clone();
213 mCurrent = null;
242 if (fdRep.mCurrent == null ^ (mCurrent == null || mCurrent.mPath == null)) {
247 if (fdRep.mCurrent != null && mCurrent != null && mCurrent.mPath != null) {
248 if (fdRep.mCurrent.noPoints == mCurrent.noPoints) {
281 mCurrent = new StrokeData();
282 fillStrokeParameters(mCurrent);
283 mCurrent.mPath = new Path();
284 mCurrent.mPath.moveTo(x, y);
285 mCurrent.mPoints[0] = x;
286 mCurrent.mPoints[1] = y;
287 mCurrent.noPoints = 1;
291 int len = mCurrent.noPoints * 2;
292 mCurrent.mPath.lineTo(x, y);
293 if ((len+2) > mCurrent.mPoints.length) {
294 mCurrent.mPoints = Arrays.copyOf(mCurrent.mPoints, mCurrent.mPoints.length * 2);
296 mCurrent.mPoints[len] = x;
297 mCurrent.mPoints[len + 1] = y;
298 mCurrent.noPoints++;
303 mDrawing.add(mCurrent);
304 mCurrent = null;
308 mCurrent = null;
312 mCurrent = null;