Home
last modified time | relevance | path

Searched refs:len_self (Results 1 – 4 of 4) 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.c2881 Py_ssize_t len_self, len_other; in dictview_richcompare() local
2894 len_self = PyObject_Size(self); in dictview_richcompare()
2895 if (len_self < 0) in dictview_richcompare()
2906 if (len_self == len_other) in dictview_richcompare()
2913 if (len_self < len_other) in dictview_richcompare()
2918 if (len_self <= len_other) in dictview_richcompare()
2923 if (len_self > len_other) in dictview_richcompare()
2928 if (len_self >= len_other) in dictview_richcompare()
/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):