Searched refs:str_in (Results 1 – 3 of 3) sorted by relevance
/external/python/dateutil/dateutil/parser/ |
D | isoparser.py | 22 def func(self, str_in, *args, **kwargs): argument 24 str_in = getattr(str_in, 'read', lambda: str_in)() 27 if isinstance(str_in, six.text_type): 30 str_in = str_in.encode('ascii') 35 return f(self, str_in, *args, **kwargs)
|
/external/toolchain-utils/binary_search_tool/ |
D | common.py | 127 def StrToBool(str_in): argument 128 if str_in.lower() in ['true', 't', '1']: 130 if str_in.lower() in ['false', 'f', '0']: 133 raise AttributeError('%s is not a valid boolean string' % str_in)
|
/external/python/cpython2/Objects/ |
D | unicodeobject.c | 7501 PyUnicode_Partition(PyObject *str_in, PyObject *sep_in) in PyUnicode_Partition() argument 7507 str_obj = PyUnicode_FromObject(str_in); in PyUnicode_Partition() 7529 PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) in PyUnicode_RPartition() argument 7535 str_obj = PyUnicode_FromObject(str_in); in PyUnicode_RPartition()
|