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

  /external/skia/src/animator/
SkParseSVGPath.cpp 118 SkPoint lastc = {0, 0}; local
175 points[0].fX -= lastc.fX - c.fX;
176 points[0].fY -= lastc.fY - c.fY;
186 //if we are using the quadApprox, lastc is what it would have been if we had used
188 lastc = points[1];
198 points[0].fX = c.fX * 2 - lastc.fX;
199 points[0].fY = c.fY * 2 - lastc.fY;
203 lastc = points[0];
  /external/skia/src/utils/
SkParsePath.cpp 74 SkPoint lastc = {0, 0}; local
130 points[0].fX -= lastc.fX - c.fX;
131 points[0].fY -= lastc.fY - c.fY;
135 lastc = points[1];
145 points[0].fX = c.fX * 2 - lastc.fX;
146 points[0].fY = c.fY * 2 - lastc.fY;
150 lastc = points[0];
  /external/llvm/lib/Support/
regengine.inc 691 int lastc; /* previous c */
704 lastc = c;
709 /* is there an EOL and/or BOL between lastc and c? */
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
713 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
733 if ( (lastc != OUT && ISWORD(lastc)) &&
776 int lastc; /* previous c *
    [all...]
  /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...]
  /ndk/sources/host-tools/ndk-stack/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...]
  /ndk/sources/host-tools/make-3.81/
vmsjobs.c 120 register struct child *lastc, *c; local
132 lastc = 0;
134 for (c = children; c != 0 && c != child; lastc = c, c = c->next)
189 if (lastc == 0)
192 lastc->next = c->next;
job.c 479 register struct child *lastc, *c;
691 lastc = 0;
692 for (c = children; c != 0; lastc = c, c = c->next)
822 if (lastc == 0)
825 lastc->next = c->next;
475 register struct child *lastc, *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 4375 milliseconds