Home
last modified time | relevance | path

Searched refs:str_in (Results 1 – 5 of 5) sorted by relevance

/external/python/dateutil/dateutil/parser/
Disoparser.py24 def func(self, str_in, *args, **kwargs): argument
26 str_in = getattr(str_in, 'read', lambda: str_in)()
29 if isinstance(str_in, six.text_type):
32 str_in = str_in.encode('ascii')
37 return f(self, str_in, *args, **kwargs)
/external/arm-trusted-firmware/drivers/partition/
Dgpt.c15 static int unicode_to_ascii(unsigned short *str_in, unsigned char *str_out) in unicode_to_ascii() argument
20 assert((str_in != NULL) && (str_out != NULL)); in unicode_to_ascii()
22 name = (uint8_t *)str_in; in unicode_to_ascii()
/external/toolchain-utils/binary_search_tool/
Dcommon.py130 def StrToBool(str_in): argument
131 if str_in.lower() in ['true', 't', '1']:
133 if str_in.lower() in ['false', 'f', '0']:
136 raise AttributeError('%s is not a valid boolean string' % str_in)
/external/python/cpython2/Objects/
Dunicodeobject.c7501 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()
/external/deqp-deps/amber/src/amberscript/
Dparser.cc57 std::unique_ptr<type::Type> ToType(const std::string& str_in) { in ToType() argument
58 std::string str = str_in; in ToType()