Searched refs:inputstr (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | FSM.py | 329 inputstr = (input if PY3 else raw_input)('> ') # analysis:ignore 330 f.process_list(inputstr)
|
/external/python/cpython2/Modules/ |
D | _struct.c | 1457 s_unpack(PyObject *self, PyObject *inputstr) in s_unpack() argument 1466 if (inputstr == NULL) in s_unpack() 1468 if (PyString_Check(inputstr) && in s_unpack() 1469 PyString_GET_SIZE(inputstr) == soself->s_size) { in s_unpack() 1470 return s_unpack_internal(soself, PyString_AS_STRING(inputstr)); in s_unpack() 1472 args = PyTuple_Pack(1, inputstr); in s_unpack() 1936 PyObject *s_object, *fmt, *inputstr, *result; in unpack() local 1938 if (!PyArg_UnpackTuple(args, "unpack", 2, 2, &fmt, &inputstr)) in unpack() 1944 result = s_unpack(s_object, inputstr); in unpack()
|