/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_format.py | 58 testboth("%.*d", (sys.maxint,1), overflowok=True) # expect overflow
|
test_grammar.py | 30 from sys import maxint namespace 31 if maxint == 2147483647: 41 elif maxint == 9223372036854775807: 52 self.fail('Weird maxint value %r' % maxint)
|
test_slice.py | 107 self.assertEqual(range(10)[::sys.maxint - 1], [0])
|
buffer_tests.py | 175 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4: 177 self.marshal(b'\ta\n\tb').expandtabs, sys.maxint)
|
test_gdb.py | 224 self.assertGdbRepr(sys.maxint) 225 self.assertGdbRepr(-sys.maxint)
|
test_str.py | 117 if sys.maxint > (1 << 32) or struct.calcsize('P') != 4: 119 self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxint)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 181 return nums or [ sys.maxint ]
|
__init__.py | 372 (self._handle & (_sys.maxint*2 + 1)), 373 id(self) & (_sys.maxint*2 + 1))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
CodeContext.py | 15 from sys import maxint as INFINITY
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 35 from sys import maxint namespace 36 if maxint == 2147483647: 46 elif maxint == 9223372036854775807: 57 self.fail('Weird maxint value %r' % maxint)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
list_tests.py | 392 self.assertEqual(a.index(0, -4*sys.maxint, 4*sys.maxint), 2) 393 self.assertRaises(ValueError, a.index, 0, 4*sys.maxint,-4*sys.maxint)
|
test_format.py | 58 testboth("%.*d", (sys.maxint,1), overflowok=True) # expect overflow
|
test_grammar.py | 30 from sys import maxint namespace 31 if maxint == 2147483647: 41 elif maxint == 9223372036854775807: 52 self.fail('Weird maxint value %r' % maxint)
|
test_slice.py | 107 self.assertEqual(range(10)[::sys.maxint - 1], [0])
|
buffer_tests.py | 175 if sys.maxint < (1 << 32) and struct.calcsize('P') == 4: 177 self.marshal(b'\ta\n\tb').expandtabs, sys.maxint)
|
test_gdb.py | 224 self.assertGdbRepr(sys.maxint) 225 self.assertGdbRepr(-sys.maxint)
|
test_str.py | 117 if sys.maxint > (1 << 32) or struct.calcsize('P') != 4: 119 self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxint)
|
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 204 return self._state.get(GetEntryType(item), sys.maxint) < item.version 712 for times in xrange(0, sys.maxint) for c in xrange(ord('A'),ord('Z'))) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
__init__.py | 372 (self._handle & (_sys.maxint*2 + 1)), 373 id(self) & (_sys.maxint*2 + 1))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
printing_unittest.py | 205 printer._meter.number_of_columns = lambda: sys.maxint
|
/external/chromium_org/third_party/cld/encodings/compact_lang_det/ |
cldutil.h | 961 static inline int maxint(int a, int b) {return (a > b) ? a: b;} function in namespace:cld [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/tests/ |
G711DecTest.c | 205 OMX_S16 maxint(OMX_S16 a, OMX_S16 b); 255 * maxint() 259 OMX_S16 maxint(OMX_S16 a, OMX_S16 b) function 576 OMX_S16 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]); 577 fdmax = maxint(fdmax,Event_Pipe[0]); [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_enc/tests/ |
G711EncTest.c | 193 int maxint(int a, int b); 229 int maxint(int a, int b) function 538 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]); 539 fdmax = maxint(fdmax,Event_Pipe[0]); [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/tests/ |
G722DecTest.c | 120 int maxint (int a, int b); 618 * @fn maxint() gives the maximum of two integers. 633 int maxint(int a, int b) function [all...] |
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/ |
G726EncTest.c | 271 int maxint(int a, int b); 300 int maxint(int a, int b) function 634 fdmax = maxint(IpBuf_Pipe[0], OpBuf_Pipe[0]); 635 fdmax = maxint(fdmax,Event_Pipe[0]); [all...] |