Home
last modified time | relevance | path

Searched refs:not_callable (Results 1 – 7 of 7) sorted by relevance

/external/python/mock/mock/tests/
Dtesthelpers.py1171 not_callable = staticmethod(None) variable in TestCallablePredicate.test_non_callable_staticmethod.BadStaticMethod
1172 self.assertFalse(_callable(BadStaticMethod.not_callable))
1182 not_callable = classmethod(None) variable in TestCallablePredicate.test_non_callable_classmethod.BadClassMethod
1183 self.assertFalse(_callable(BadClassMethod.not_callable))
/external/python/cpython3/Lib/unittest/test/testmock/
Dtesthelpers.py1090 not_callable = staticmethod(None) variable in TestCallablePredicate.test_non_callable_staticmethod.BadStaticMethod
1091 self.assertFalse(_callable(BadStaticMethod.not_callable))
1101 not_callable = classmethod(None) variable in TestCallablePredicate.test_non_callable_classmethod.BadClassMethod
1102 self.assertFalse(_callable(BadClassMethod.not_callable))
/external/v8/src/ic/
Dkeyed-store-generic.cc912 Label not_callable(this); in EmitGenericPropertyStore() local
921 GotoIfNot(IsCallableMap(setter_map), &not_callable); in EmitGenericPropertyStore()
926 BIND(&not_callable); in EmitGenericPropertyStore()
/external/python/cpython2/Lib/test/
D_mock_backport.py1247 not_callable = '__call__' not in this_spec
1249 not_callable = not callable(this_spec)
1250 if not_callable:
/external/pdfium/third_party/pymock/
Dmock.py1301 not_callable = '__call__' not in this_spec
1303 not_callable = not _callable(this_spec)
1304 if not_callable:
/external/python/mock/mock/
Dmock.py1427 not_callable = '__call__' not in this_spec
1429 not_callable = not _callable(this_spec)
1430 if not_callable:
/external/python/cpython3/Lib/unittest/
Dmock.py1445 not_callable = '__call__' not in this_spec
1447 not_callable = not callable(this_spec)
1450 elif not_callable: