Home
last modified time | relevance | path

Searched refs:len_str (Results 1 – 6 of 6) sorted by relevance

/external/python/dateutil/dateutil/parser/
Disoparser.py213 len_str = len(dt_str)
216 if len_str < 4:
222 if pos >= len_str:
230 if len_str - pos < 2:
236 if pos >= len_str:
248 if len_str - pos < 2:
331 len_str = len(timestr)
339 has_sep = len_str >= 3 and timestr[2:3] == self._TIME_SEP
341 while pos < len_str and comp < 5:
347 pos = len_str
[all …]
/external/python/oauth2client/oauth2client/contrib/
Ddevshell.py88 len_str, json_str = header.split('\n', 1)
89 to_read = int(len_str) - len(json_str)
/external/python/oauth2client/tests/contrib/
Dtest_devshell.py191 len_str, result = header.split('\n', 1)
192 to_read = int(len_str) - len(result)
/external/adhd/cras/src/server/
Dcras_alsa_ucm.c173 size_t len_str = strlen(str); in ucm_str_ends_with_suffix() local
175 if (len_suffix > len_str) in ucm_str_ends_with_suffix()
177 return strncmp(str + len_str - len_suffix, suffix, len_suffix) == 0; in ucm_str_ends_with_suffix()
/external/python/cpython3/Lib/
Ddatetime.py282 len_str = len(tstr)
287 if (len_str - pos) < 2:
303 if pos < len_str:
309 len_remainder = len_str - pos
321 len_str = len(tstr)
322 if len_str < 2:
/external/python/cpython2/Objects/
Dtypeobject.c5120 static PyObject *len_str; local
5121 PyObject *res = call_method(self, "__len__", &len_str, "()");
5330 static PyObject *nonzero_str, *len_str; local
5338 func = lookup_maybe(self, "__len__", &len_str);