HomeSort by relevance Sort by last modified time
    Searched refs:divmod (Results 76 - 100 of 238) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_long_future.py 43 q, r = divmod(a, b)
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
utils.py 158 hours, minutes = divmod(abs(offset), 3600)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_long_future.py 43 q, r = divmod(a, b)
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 4216 def divmod(self, a, b): member in class:Context
    [all...]
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /external/python/cpython2/Lib/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /external/python/cpython2/Lib/test/
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
test_long.py 132 q, r = divmod(x, y)
136 eq(q, q2, Frm("divmod returns different quotient than / for %r and %r", x, y))
137 eq(r, r2, Frm("divmod returns different mod than %% for %r and %r", x, y))
138 eq(x, q*y + r, Frm("x != q*y + r after divmod on x=%r, y=%r", x, y))
140 self.assertTrue(0 <= r < y, Frm("bad mod from divmod on %r and %r", x, y))
142 self.assertTrue(y < r <= 0, Frm("bad mod from divmod on %r and %r", x, y))
299 x, r = divmod(x, base)
699 expected = divmod(longx, longy)
700 got = divmod(longx, longy)
701 checkit(x, 'divmod', y
    [all...]
  /external/python/cpython2/Misc/Vim/
python.vim 69 syn keyword pythonBuiltin delattr dict dir divmod enumerate eval execfile
  /prebuilts/gdb/darwin-x86/lib/python2.7/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
test_long.py 126 q, r = divmod(x, y)
130 eq(q, q2, Frm("divmod returns different quotient than / for %r and %r", x, y))
131 eq(r, r2, Frm("divmod returns different mod than %% for %r and %r", x, y))
132 eq(x, q*y + r, Frm("x != q*y + r after divmod on x=%r, y=%r", x, y))
134 self.assertTrue(0 <= r < y, Frm("bad mod from divmod on %r and %r", x, y))
136 self.assertTrue(y < r <= 0, Frm("bad mod from divmod on %r and %r", x, y))
278 x, r = divmod(x, base)
667 expected = divmod(longx, longy)
668 got = divmod(longx, longy)
669 checkit(x, 'divmod', y
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_class.py 20 "divmod",
195 divmod(testme,1)
199 divmod(1, testme)
test_long.py 126 q, r = divmod(x, y)
130 eq(q, q2, Frm("divmod returns different quotient than / for %r and %r", x, y))
131 eq(r, r2, Frm("divmod returns different mod than %% for %r and %r", x, y))
132 eq(x, q*y + r, Frm("x != q*y + r after divmod on x=%r, y=%r", x, y))
134 self.assertTrue(0 <= r < y, Frm("bad mod from divmod on %r and %r", x, y))
136 self.assertTrue(y < r <= 0, Frm("bad mod from divmod on %r and %r", x, y))
278 x, r = divmod(x, base)
667 expected = divmod(longx, longy)
668 got = divmod(longx, longy)
669 checkit(x, 'divmod', y
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
formatter.py 145 counter, x = divmod(counter-1, 26)
159 counter, x = divmod(counter, 10)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_long.py 124 q, r = divmod(x, y)
128 eq(q, q2, Frm("divmod returns different quotient than / for %r and %r", x, y))
129 eq(r, r2, Frm("divmod returns different mod than %% for %r and %r", x, y))
130 eq(x, q*y + r, Frm("x != q*y + r after divmod on x=%r, y=%r", x, y))
132 self.assertTrue(0 <= r < y, Frm("bad mod from divmod on %r and %r", x, y))
134 self.assertTrue(y < r <= 0, Frm("bad mod from divmod on %r and %r", x, y))
276 x, r = divmod(x, base)
665 expected = divmod(longx, longy)
666 got = divmod(longx, longy)
667 checkit(x, 'divmod', y)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
test_case.py 731 [], [divmod, 'x', 1, 5j, 2j, frozenset()])
735 self.assertItemsEqual([1, 'x', divmod, []], [divmod, [], 'x', 1])
737 [], [divmod, [], 'x', 1, 5j, 2j, set()])
    [all...]
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 105 packet, remainder = divmod(col, 5)
  /external/python/cpython2/Lib/unittest/test/
test_case.py 732 [], [divmod, 'x', 1, 5j, 2j, frozenset()])
736 self.assertItemsEqual([1, 'x', divmod, []], [divmod, [], 'x', 1])
738 [], [divmod, [], 'x', 1, 5j, 2j, set()])
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_case.py 732 [], [divmod, 'x', 1, 5j, 2j, frozenset()])
736 self.assertItemsEqual([1, 'x', divmod, []], [divmod, [], 'x', 1])
738 [], [divmod, [], 'x', 1, 5j, 2j, set()])
    [all...]

Completed in 697 milliseconds

1 2 34 5 6 7 8 910