Home
last modified time | relevance | path

Searched refs:len_self (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Ddictobject.c4290 Py_ssize_t len_self, len_other; in dictview_richcompare() local
4301 len_self = PyObject_Size(self); in dictview_richcompare()
4302 if (len_self < 0) in dictview_richcompare()
4313 if (len_self == len_other) in dictview_richcompare()
4320 if (len_self < len_other) in dictview_richcompare()
4325 if (len_self <= len_other) in dictview_richcompare()
4330 if (len_self > len_other) in dictview_richcompare()
4335 if (len_self >= len_other) in dictview_richcompare()
4446 Py_ssize_t len_self; in _PyDictView_Intersect() local
4458 len_self = dictview_len((_PyDictViewObject *)self); in _PyDictView_Intersect()
[all …]
/third_party/python/Lib/unittest/
Dmock.py346 len_self = len(self)
347 if len_value > len_self:
350 for i in range(0, len_self - len_value + 1):