Searched refs:is_normal (Results 1 – 11 of 11) sorted by relevance
/external/webrtc/webrtc/modules/desktop_capture/ |
D | window_capturer_x11.cc | 375 bool is_normal = (end != std::find( in IsDesktopElement() local 377 return !is_normal; in IsDesktopElement()
|
/external/webrtc/webrtc/base/ |
D | x11windowpicker.cc | 743 bool is_normal = (end != std::find( in IsDesktopElement() local 745 return !is_normal; in IsDesktopElement()
|
/external/python/cpython2/Lib/test/ |
D | test_decimal.py | 1935 d = c.is_normal(Decimal(10)) 1936 self.assertEqual(c.is_normal(10), d) 1937 self.assertRaises(TypeError, c.is_normal, '10')
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 2187 self.assertIs(z.is_normal(context=None), False) 2718 self.assertFalse(D("0.01").is_normal(context=xc)) 3137 d = c.is_normal(Decimal(10)) 3138 self.assertEqual(c.is_normal(10), d) 3139 self.assertRaises(TypeError, c.is_normal, '10') 4309 self.assertIs(Decimal("0.01").is_normal(), False)
|
/external/python/cpython2/Lib/ |
D | decimal.py | 3029 def is_normal(self, context=None): member in Decimal 4376 def is_normal(self, a): member in Context 4397 return a.is_normal(context=self)
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 3131 def is_normal(self, context=None): member in Decimal 4548 def is_normal(self, a): member in Context 4569 return a.is_normal(context=self)
|
/external/python/cpython2/Doc/library/ |
D | decimal.rst | 607 .. method:: is_normal() 1246 .. method:: is_normal(x)
|
/external/python/cpython3/Doc/library/ |
D | decimal.rst | 629 .. method:: is_normal(context=None) 1223 .. method:: is_normal(x)
|
/external/curl/tests/python_dependencies/impacket/ |
D | smb.py | 602 def is_normal(self): member in SharedFile
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 1878 Decimal.is_normal now returns True for numbers with exponent larger than
|
/external/python/cpython3/Misc/ |
D | HISTORY | 14006 - Issue #7099: Decimal.is_normal now returns True for numbers with exponent
|