Searched refs:len_str (Results 1 – 6 of 6) sorted by relevance
/external/python/dateutil/dateutil/parser/ |
D | isoparser.py | 201 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/ |
D | devshell.py | 88 len_str, json_str = header.split('\n', 1) 89 to_read = int(len_str) - len(json_str)
|
/external/python/oauth2client/tests/contrib/ |
D | test_devshell.py | 191 len_str, result = header.split('\n', 1) 192 to_read = int(len_str) - len(result)
|
/external/adhd/cras/src/server/ |
D | cras_alsa_ucm.c | 169 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/ |
D | datetime.py | 278 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/ |
D | typeobject.c | 5120 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);
|