Home
last modified time | relevance | path

Searched refs:lastc (Results 1 – 12 of 12) sorted by relevance

/external/skqp/src/utils/
DSkParsePath.cpp79 SkPoint lastc = {0, 0}; in FromSVGString() local
142 points[0].fX -= lastc.fX - c.fX; in FromSVGString()
143 points[0].fY -= lastc.fY - c.fY; in FromSVGString()
147 lastc = points[1]; in FromSVGString()
157 points[0].fX -= lastc.fX - c.fX; in FromSVGString()
158 points[0].fY -= lastc.fY - c.fY; in FromSVGString()
162 lastc = points[0]; in FromSVGString()
/external/skia/src/utils/
DSkParsePath.cpp79 SkPoint lastc = {0, 0}; in FromSVGString() local
142 points[0].fX -= lastc.fX - c.fX; in FromSVGString()
143 points[0].fY -= lastc.fY - c.fY; in FromSVGString()
147 lastc = points[1]; in FromSVGString()
157 points[0].fX -= lastc.fX - c.fX; in FromSVGString()
158 points[0].fY -= lastc.fY - c.fY; in FromSVGString()
162 lastc = points[0]; in FromSVGString()
/external/swiftshader/third_party/LLVM/lib/Support/
Dregengine.inc691 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 */
789 lastc = c;
792 /* is there an EOL and/or BOL between lastc and c? */
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Dregengine.inc691 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 */
789 lastc = c;
792 /* is there an EOL and/or BOL between lastc and c? */
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregengine.inc691 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 */
789 lastc = c;
792 /* is there an EOL and/or BOL between lastc and c? */
[all …]
/external/llvm/lib/Support/
Dregengine.inc691 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 */
789 lastc = c;
792 /* is there an EOL and/or BOL between lastc and c? */
[all …]
/external/curl/lib/
Dcookie.c443 struct Cookie *lastc = NULL; in Curl_cookie_add() local
1059 lastc = clist; in Curl_cookie_add()
1065 lastc = clist; in Curl_cookie_add()
1078 if(lastc) in Curl_cookie_add()
1079 lastc->next = co; in Curl_cookie_add()
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java900 char lastc = 0; in split() local
904 if (!dq && c == '\'' && lastc != '\\') { in split()
908 else if (!sq && c == '\"' && lastc != '\\') { in split()
921 lastc = c; in split()
/external/python/cpython3/Tools/scripts/
Dtexi2html.py2001 lastc = s[-1]
2002 if lastc in sequence:
2003 i = sequence.index(lastc) + 1
/external/python/cpython2/Tools/scripts/
Dtexi2html.py2004 lastc = s[-1]
2005 if lastc in sequence:
2006 i = sequence.index(lastc) + 1
/external/python/cpython2/Modules/
Dsocketmodule.c550 char *lastc = &outbuf[ strlen(outbuf)-1 ]; in set_error() local
551 while (lastc > outbuf && in set_error()
552 isspace(Py_CHARMASK(*lastc))) { in set_error()
554 *lastc-- = '\0'; in set_error()
Dposixmodule.c789 char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; in os2_formatmsg() local
791 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc))) in os2_formatmsg()
792 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */ in os2_formatmsg()