Home
last modified time | relevance | path

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

/external/python/dateutil/dateutil/parser/
Disoparser.py201 len_str = len(dt_str)
204 if len_str < 4:
210 if pos >= len_str:
218 if len_str - pos < 2:
224 if pos >= len_str:
236 if len_str - pos < 2:
319 len_str = len(timestr)
327 has_sep = len_str >= 3 and timestr[2:3] == self._TIME_SEP
329 while pos < len_str and comp < 5:
335 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.c169 size_t len_str = strlen(str); in ucm_str_ends_with_suffix() local
171 if (len_suffix > len_str) in ucm_str_ends_with_suffix()
173 return strncmp(str + len_str - len_suffix, suffix, len_suffix) == 0; in ucm_str_ends_with_suffix()
/external/python/cpython3/Lib/
Ddatetime.py278 len_str = len(tstr)
283 if (len_str - pos) < 2:
299 if pos < len_str:
305 len_remainder = len_str - pos
317 len_str = len(tstr)
318 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);