Home
last modified time | relevance | path

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

/external/v8/src/ic/
Dkeyed-store-generic.cc836 Label not_callable(this); in EmitGenericPropertyStore() local
844 GotoIfNot(IsCallableMap(setter_map), &not_callable); in EmitGenericPropertyStore()
850 BIND(&not_callable); in EmitGenericPropertyStore()
/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/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/python/cpython3/Lib/unittest/
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.py1402 not_callable = '__call__' not in this_spec
1404 not_callable = not _callable(this_spec)
1405 if not_callable: