HomeSort by relevance Sort by last modified time
    Searched refs:len_self (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bufferobject.c 270 Py_ssize_t len_self, len_other, min_len; local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER))
277 min_len = (len_self < len_other) ? len_self : len_other;
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0;
dictobject.c 2851 Py_ssize_t len_self, len_other; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bufferobject.c 270 Py_ssize_t len_self, len_other, min_len; local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER))
277 min_len = (len_self < len_other) ? len_self : len_other;
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0;
dictobject.c 2817 Py_ssize_t len_self, len_other; local
    [all...]
  /external/python/cpython2/Objects/
bufferobject.c 270 Py_ssize_t len_self, len_other, min_len; local
273 if (!get_buf(self, &p1, &len_self, ANY_BUFFER))
277 min_len = (len_self < len_other) ? len_self : len_other;
283 return (len_self < len_other) ? -1 : (len_self > len_other) ? 1 : 0;
dictobject.c 2881 Py_ssize_t len_self, len_other; local
    [all...]
  /external/pdfium/third_party/pymock/
mock.py 417 len_self = len(self)
418 if len_value > len_self:
421 for i in range(0, len_self - len_value + 1):
    [all...]
  /external/python/cpython2/Lib/test/
_mock_backport.py 313 len_self = len(self)
314 if len_value > len_self:
317 for i in range(0, len_self - len_value + 1):
    [all...]

Completed in 138 milliseconds