Searched refs:len_str (Results 1 – 6 of 6) sorted by relevance
/external/python/dateutil/dateutil/parser/ |
D | isoparser.py | 213 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/ |
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 | 173 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/ |
D | datetime.py | 282 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/ |
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);
|