Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dbufferobject.c270 Py_ssize_t len_self, len_other, min_len; in buffer_compare() local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER)) in buffer_compare()
277 min_len = (len_self < len_other) ? len_self : len_other; in buffer_compare()
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0; in buffer_compare()
Ddictobject.c2944 Py_ssize_t len_self, len_other; in dictview_richcompare() local
2957 len_self = PyObject_Size(self); in dictview_richcompare()
2958 if (len_self < 0) in dictview_richcompare()
2969 if (len_self == len_other) in dictview_richcompare()
2976 if (len_self < len_other) in dictview_richcompare()
2981 if (len_self <= len_other) in dictview_richcompare()
2986 if (len_self > len_other) in dictview_richcompare()
2991 if (len_self >= len_other) in dictview_richcompare()
/external/python/cpython3/Objects/
Ddictobject.c3801 Py_ssize_t len_self, len_other; in dictview_richcompare() local
3812 len_self = PyObject_Size(self); in dictview_richcompare()
3813 if (len_self < 0) in dictview_richcompare()
3824 if (len_self == len_other) in dictview_richcompare()
3831 if (len_self < len_other) in dictview_richcompare()
3836 if (len_self <= len_other) in dictview_richcompare()
3841 if (len_self > len_other) in dictview_richcompare()
3846 if (len_self >= len_other) in dictview_richcompare()
4026 Py_ssize_t len_self = dictview_len((_PyDictViewObject *)self); in dictviews_isdisjoint() local
4031 if ((len_other > len_self)) { in dictviews_isdisjoint()
/external/pdfium/third_party/pymock/
Dmock.py417 len_self = len(self)
418 if len_value > len_self:
421 for i in range(0, len_self - len_value + 1):
/external/python/cpython2/Lib/test/
D_mock_backport.py313 len_self = len(self)
314 if len_value > len_self:
317 for i in range(0, len_self - len_value + 1):
/external/python/cpython3/Lib/unittest/
Dmock.py308 len_self = len(self)
309 if len_value > len_self:
312 for i in range(0, len_self - len_value + 1):
/external/python/mock/mock/
Dmock.py430 len_self = len(self)
431 if len_value > len_self:
434 for i in range(0, len_self - len_value + 1):