HomeSort by relevance Sort by last modified time
    Searched refs:lastc (Results 1 - 3 of 3) sorted by null

  /external/skia/src/animator/
SkParseSVGPath.cpp 126 SkPoint lastc = {0, 0}; local
183 points[0].fX -= lastc.fX - c.fX;
184 points[0].fY -= lastc.fY - c.fY;
194 //if we are using the quadApprox, lastc is what it would have been if we had used
196 lastc = points[1];
206 points[0].fX = c.fX * 2 - lastc.fX;
207 points[0].fY = c.fY * 2 - lastc.fY;
211 lastc = points[0];
  /bionic/libc/regex/
engine.c 679 int lastc; /* previous c */ local
692 lastc = c;
697 /* is there an EOL and/or BOL between lastc and c? */
700 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
701 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
717 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
721 if ( (lastc != OUT && ISWORD(lastc)) &&
763 int lastc; /* previous c * local
    [all...]
  /system/core/sh/
expand.c 418 char lastc; local
439 lastc = '\0';
451 lastc = *p++;
452 if (lastc != '\0') {
453 if (quotes && syntax[(int)lastc] == CCTL)
455 STPUTC(lastc, dest);

Completed in 24 milliseconds