Searched refs:rawmode (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Parser/pegen/ |
D | parse_string.c | 162 _PyPegen_parsestr(Parser *p, int *bytesmode, int *rawmode, PyObject **result, in _PyPegen_parsestr() argument 174 *rawmode = 0; in _PyPegen_parsestr() 178 while (!*bytesmode || !*rawmode) { in _PyPegen_parsestr() 188 *rawmode = 1; in _PyPegen_parsestr() 250 *rawmode = *rawmode || strchr(s, '\\') == NULL; in _PyPegen_parsestr() 262 if (*rawmode) { in _PyPegen_parsestr() 270 if (*rawmode) { in _PyPegen_parsestr()
|
/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 302 char rawmode[5], *m; in io_open() local 367 m = rawmode; in io_open() 416 "Osi", file, rawmode, closefd); in io_open()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 241 char rawmode[6], *m; in _io_open_impl() local 314 m = rawmode; in _io_open_impl() 385 path_or_fd, rawmode, in _io_open_impl()
|
/external/python/cpython3/Lib/ |
D | socket.py | 316 rawmode = "" 318 rawmode += "r" 320 rawmode += "w" 321 raw = SocketIO(self, rawmode)
|
/external/mksh/src/ |
D | funcs.c | 1590 bool rawmode = false, expanding = false; in c_read() local 1645 rawmode = true; in c_read() 1827 } else if (!rawmode && c == '\\') { in c_read() 1927 } else if (!rawmode && ch == '\\') { in c_read() 1946 if (lastparmmode && !expanding && !rawmode && ch == '\\') { in c_read()
|
/external/python/cpython2/Python/ |
D | ast.c | 3393 decode_unicode(struct compiling *c, const char *s, size_t len, int rawmode, const char *encoding) in decode_unicode() argument 3447 if (rawmode) in decode_unicode() 3465 int rawmode = 0; in parsestr() local 3482 rawmode = 1; in parsestr() 3520 return decode_unicode(c, s, len, rawmode, c->c_encoding); in parsestr() 3526 if (rawmode || strchr(s, '\\') == NULL) { in parsestr()
|
/external/openssh/ |
D | mux.c | 1905 int r, i, devnull, rawmode; in mux_client_request_session() local 2021 rawmode = tty_flag; in mux_client_request_session() 2049 rawmode = 0; in mux_client_request_session() 2075 if (rawmode) in mux_client_request_session()
|
/external/python/cpython3/Python/ |
D | ast.c | 5644 parsestr(struct compiling *c, const node *n, int *bytesmode, int *rawmode, in parsestr() argument 5652 *rawmode = 0; in parsestr() 5656 while (!*bytesmode || !*rawmode) { in parsestr() 5666 *rawmode = 1; in parsestr() 5728 *rawmode = *rawmode || strchr(s, '\\') == NULL; in parsestr() 5740 if (*rawmode) in parsestr() 5745 if (*rawmode) in parsestr()
|