Home
last modified time | relevance | path

Searched refs:isfunction (Results 1 – 25 of 828) sorted by relevance

12345678910>>...34

/dports/math/gap/gap-4.11.0/pkg/CAP-2019.06.07/doc/
H A Dmanual.six2501 "addderivation for isderivedmethodgraph isfunction isfunction",
2507 "addderivationpair for isderivedmethodgraph isfunction isfunction isdens\
2512 "addderivationpair for isderivedmethodgraph isfunction isfunction isdens\
2516 function, isdenselist, isfunction, isfunction", "8.3-10", [ 8, 3, 10 ], 196,
2518 "addderivationpair for isderivedmethodgraph isfunction isfunction isdens\
2519 elist isfunction isfunction", "X801E2F4E86008850" ],
2522 function, isfunction, isfunction", "8.3-11", [ 8, 3, 11 ], 200, 116,
2595 [ "\033[2XPrintTree\033[102X for isobject, isfunction, isfunction",
2597 "printtree for isobject isfunction isfunction", "X7E59037F7B4E42D0" ],
2598 [ "\033[2XPrintTreeRec\033[102X for isobject, isfunction, isfunction, isint"
[all …]
/dports/math/gap/gap-4.11.0/pkg/MonoidalCategories-2019.06.07/doc/
H A Dmanual.six74 ategory, isfunction", "1.1-8", [ 1, 1, 8 ], 102, 4,
122 ry, isfunction", "1.1-19", [ 1, 1, 19 ], 201, 6,
148 ory, isfunction", "1.1-25", [ 1, 1, 25 ], 252, 7,
242 ry, isfunction", "1.2-6", [ 1, 2, 6 ], 449, 10,
309 ry, isfunction", "1.4-13", [ 1, 4, 13 ], 598, 13,
435 capcategory isfunction", "X871C6B55843A0AF3" ],
452 ategory isfunction", "X78D1B6AF8654A950" ],
469 gory isfunction", "X86D3AF4A80FA738D" ],
496 gory isfunction", "X7A4A4C668706D593" ],
576 gory isfunction", "X78ED7FCC83D091AB" ],
[all …]
/dports/devel/swig/swig-4.0.2/Examples/test-suite/
H A Drename_predicates.i4 %rename("AF_%(utitle)s", %$isfunction) "";
5 %rename("MF_%(utitle)s", %$isfunction, %$ismember) "";
6 %rename("GF_%(utitle)s", %$isfunction, %$not %$ismember) "";
53 %rename("EX_%(upper)s", %$isfunction, %$isextendmember) "";
H A Drename_pcre_encoder.i7 %rename("%(regex:/^Set(.*)/put_\\l\\1/)s", %$isfunction) "";
8 %rename("%(regex:/^Get(.*)/get_\\l\\1/)s", %$isfunction) "";
H A Drename_camel.i3 %rename("%(utitle)s",%$isfunction,%$ismember) "";
62 %rename("%(lowercase)s",sourcefmt="%(regex:/GSL_(.*)/\\1/)s",%$isfunction) "";
/dports/science/pynn/PyNN-0.10.0/test/unittests/
H A Dtest_lowlevelapi.py7 from inspect import isfunction
14 assert isfunction(create_function)
25 assert isfunction(connect_function)
54 assert isfunction(record_function)
68 assert isfunction(record_function)
/dports/devel/py-tartiflette/tartiflette-1.4.1/tartiflette/utils/
H A Dcallables.py4 isfunction,
22 if isfunction(coroutine) or ismethod(coroutine)
39 if isfunction(generator) or ismethod(generator)
/dports/devel/py-cysignals/cysignals-1.11.1/docs/source/
H A Dconf.py272 def isfunction(obj): function
276 inspect.isfunction = isfunction
/dports/math/py-cypari2/cypari2-2.1.2/docs/source/
H A Dconf.py174 def isfunction(obj): function
178 inspect.isfunction = isfunction
/dports/devel/py-pyinstaller/PyInstaller-3.5/tests/functional/scripts/
H A Dpyi_lib_boto.py10 from inspect import getmembers, isfunction
30 if isfunction(func)
42 if isfunction(connect_func):
/dports/math/py-fpylll/fpylll-0.5.6/docs/
H A Dconf.py313 def isfunction(obj): function
317 inspect.isfunction = isfunction
/dports/devel/nuitka/Nuitka-0.6.17/tests/basics/
H A DInspection.py51 assert inspect.isfunction(compiledFunction) is True
70 assert inspect.isfunction(CompiledClass) is False
95 assert inspect.isfunction(compiledGenerator) is True
103 assert inspect.isfunction(compiledGenerator()) is False
/dports/devel/py-dpcontracts/dpcontracts-0.6.0/
H A Ddpcontracts.py420 from inspect import isfunction, ismethod, iscoroutinefunction, getfullargspec
474 assert isfunction(predicate), "contract predicates must be functions"
501 elif isfunction(f):
538 assert isfunction(transformer), "transformers must be functions"
591 if not ismethod(func) and not isfunction(func):
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pycharm/nose_helper/
H A Dloader.py10 from inspect import isfunction, ismethod
79 elif isfunction(test) and self.selector.wantFunction(test):
100 if isfunction(item):
128 if isfunction(obj) and parent and not isinstance(parent, types.ModuleType):
151 elif isfunction(obj):
/dports/www/py-pecan/pecan-1.3.3/pecan/
H A Dsecure.py2 from inspect import getmembers, isfunction
94 isfunction(x) or
106 if ismethod(func_or_obj) or isfunction(func_or_obj):
148 if (isfunction if six.PY3 else ismethod)(value):
/dports/devel/py-dill/dill-0.3.4/dill/
H A Ddetect.py13 from inspect import ismethod, isfunction, istraceback, isframe, iscode
43 elif isfunction(func):
51 elif isfunction(func):
97 if isfunction(func): func = getattr(func, func_code)
155 if isfunction(func):
199 if isfunction(func):
/dports/devel/py-pydecor/pydecor-2.0.1/src/pydecor/decorators/
H A D_utility.py17 from inspect import isfunction, ismethod
60 if decor_name in cls_dict and isfunction(cls_dict[decor_name]):
126 if ismethod(attr) or isfunction(attr):
/dports/devel/py-dotty-dict/dotty_dict-1.3.0/example/
H A D__init__.py6 from inspect import getmembers, isfunction
25 example_func.extend([o[1] for o in getmembers(mod) if isfunction(o[1])])
/dports/math/py-numpy/numpy-1.20.3/numpy/f2py/
H A Dauxfuncs.py257 def isfunction(rout): function
264 return wrapfuncs and isfunction(rout) and (not isexternal(rout))
293 return isfunction(rout) or issubroutine(rout)
297 if not isfunction(rout):
309 if not isfunction(rout):
321 if not isfunction(rout):
333 if not isfunction(rout):
359 if not isfunction(rout):
502 if not isfunction(rout):
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/wx/lib/pubsub/core/
H A Dcallables.py15 from inspect import getargspec, ismethod, isfunction
42 elif isfunction(sc):
59 if isfunction(callable_):
/dports/math/gap/gap-4.11.0/pkg/datastructures-0.2.5/doc/
H A Dmanual.six275 "\033[2XOrderedSetDS\033[102X for isorderedsetds, isfunction, islistorcolle\
277 "orderedsetds for isorderedsetds isfunction islistorcollection israndoms\
280 "\033[2XOrderedSetDS\033[102X for isorderedsetds, isfunction, israndomsourc\
282 "orderedsetds for isorderedsetds isfunction israndomsource",
290 "\033[2XOrderedSetDS\033[102X for isorderedsetds, isfunction, islistorcolle\
292 "orderedsetds for isorderedsetds isfunction islistorcollection",
294 [ "\033[2XOrderedSetDS\033[102X for isorderedsetds, isfunction", "10.2-7",
295 [ 10, 2, 7 ], 108, 26, "orderedsetds for isorderedsetds isfunction",
348 [ "\033[2XPositionSortedOp\033[102X for isorderedsetds, isobject, isfunction\
350 "positionsortedop for isorderedsetds isobject isfunction",
/dports/devel/py-platformdirs/platformdirs-2.4.0/tests/
H A Dtest_comp_with_appdirs.py2 from inspect import getmembers, isfunction
19 …appdirs_function_names = [f[0] for f in getmembers(appdirs, isfunction) if not f[0].startswith("_"…
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/execution/
H A Dmiddleware.py2 from inspect import isfunction
58 if isfunction(middleware):
/dports/devel/py-rauth/rauth-0.7.2/tests/
H A Dbase.py23 from inspect import stack, isfunction # NOQA
58 if not isfunction(f):
/dports/devel/py-promise/promise-2.3/promise/
H A Dutils.py17 if inspect.isclass(reason) or inspect.isfunction(reason):
23 if inspect.isfunction(cls_or_func):

12345678910>>...34