/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_collections.py | 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args 49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args 83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod 127 self.assertEqual(Zero._make([]), ()) 134 self.assertEqual(Dot._make([1]), (1,)) 149 self.assertEqual(Big._make(range(n)), tuple(range(n))) 201 # test _make 202 t = T._make(values) 209 t = T._make(values [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_collections.py | 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args 49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args 83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod 127 self.assertEqual(Zero._make([]), ()) 134 self.assertEqual(Dot._make([1]), (1,)) 149 self.assertEqual(Big._make(range(n)), tuple(range(n))) 201 # test _make 202 t = T._make(values) 209 t = T._make(values [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
collections.py | 247 def _make(cls, iterable, new=tuple.__new__, len=len): 264 result = _self._make(map(kwds.pop, {field_names!r}, _self)) 680 'Point class with optimized _make() and _replace() without error-checking' 682 _make = classmethod(tuple.__new__) variable in class:Counter.Point 684 return self._make(_map(kwds.get, ('x', 'y'), self))
|
difflib.py | 529 return map(Match._make, self.matching_blocks) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
collections.py | 247 def _make(cls, iterable, new=tuple.__new__, len=len): 264 result = _self._make(map(kwds.pop, {field_names!r}, _self)) 680 'Point class with optimized _make() and _replace() without error-checking' 682 _make = classmethod(tuple.__new__) variable in class:Counter.Point 684 return self._make(_map(kwds.get, ('x', 'y'), self))
|
difflib.py | 529 return map(Match._make, self.matching_blocks) [all...] |
/external/chromium_org/build/android/pylib/ |
android_commands.py | 205 return [HashAndPath._make(s) for s in split_lines if len(s) == 2] [all...] |
/external/dropbear/libtomcrypt/ |
crypt.tex | 360 Certain functions such as \textit{rsa\_make\_key()} require a Pseudo Random Number Generator (PRNG). These functions do not setup 366 \index{register\_prng()} \index{rsa\_make\_key()} [all...] |