/external/chromium_org/third_party/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/chromium_org/third_party/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/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®_NEWLINE) || 713 (lastc == OUT && !(m->eflags®_NOTBOL)) ) { 729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 733 if ( (lastc != OUT && ISWORD(lastc)) && 776 int lastc; /* previous c * [all...] |
/bionic/libc/upstream-netbsd/libc/regex/ |
engine.c | 784 int lastc; /* previous c */ local 801 lastc = c; 806 /* is there an EOL and/or BOL between lastc and c? */ 809 if ( (lastc == '\n' && m->g->cflags®_NEWLINE) || 810 (lastc == OUT && !(m->eflags®_NOTBOL)) ) { 826 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 830 if ( (lastc != OUT && ISWORD(lastc)) && 879 int lastc; /* previous c * local [all...] |
/ndk/sources/host-tools/ndk-stack/regex/ |
engine.c | 681 int lastc; /* previous c */ local 694 lastc = c; 699 /* is there an EOL and/or BOL between lastc and c? */ 702 if ( (lastc == '\n' && m->g->cflags®_NEWLINE) || 703 (lastc == OUT && !(m->eflags®_NOTBOL)) ) { 719 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) && 723 if ( (lastc != OUT && ISWORD(lastc)) && 765 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/toolbox/grep/ |
grep.c | 323 int c, lastc, needpattern, newarg, prevoptind; local 360 lastc = '\0'; 404 if (newarg || !isdigit(lastc)) 631 lastc = c;
|
/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);
|