HomeSort by relevance Sort by last modified time
    Searched defs:newl (Results 1 - 7 of 7) sorted by null

  /external/curl/src/
tool_cb_dbg.c 106 static bool newl = FALSE; local
114 if(!newl) {
119 newl = FALSE;
122 if(!newl)
126 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE;
131 if(!newl)
134 newl = (size && (data[size - 1] != '\n')) ? TRUE : FALSE;
147 if(!newl)
150 newl = FALSE;
156 newl = FALSE
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 377 Py_ssize_t newl; local
384 newl = oself->pos+l;
385 if (newl >= oself->buf_size) {
387 if (oself->buf_size <= newl) {
388 assert(newl + 1 < INT_MAX);
389 oself->buf_size = (int)(newl+1);
  /external/toybox/kconfig/lxdialog/
util.c 316 int newl, cur_x, cur_y; local
338 newl = 1;
351 (newl && wlen < 4 && sp
365 newl = 1;
367 newl = 0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 671 const char *newl[2] = {NULL, NULL}; local
694 newl[lineno] = s;
702 if (newl[0]) {
703 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl))
705 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) {
706 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0],
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c 651 const char *newl[2] = {NULL, NULL}; local
674 newl[lineno] = s;
682 if (newl[0]) {
683 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl))
685 if (tok->enc == NULL && newl[1]) {
686 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0],
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 675 const char *newl[2] = {NULL, NULL}; local
698 newl[lineno] = s;
706 if (newl[0]) {
707 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl))
709 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) {
710 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0],
    [all...]
  /external/python/cpython3/Parser/
tokenizer.c 755 const char *newl[2] = {NULL, NULL}; local
776 newl[lineno] = s;
784 if (newl[0]) {
785 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl))
787 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) {
788 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0],
    [all...]

Completed in 140 milliseconds