Searched refs:decorators (Results 1 – 7 of 7) sorted by relevance
16 from .decorators import *181 def ApplyDecoratorsToFunction(func, decorators): argument183 if isinstance(decorators, list):184 for decorator in decorators:186 elif hasattr(decorators, '__call__'):187 tmp = decorators(tmp)191 def MakeInlineTest(__file, __globals, decorators=None, name=None, argument204 test_func = ApplyDecoratorsToFunction(InlineTest._test, decorators)
11 from lldbsuite.test.decorators import *
17 from lldbsuite.test.decorators import *
56 from . import decorators1704 @decorators.add_test_categories([cat])
12 from lldbsuite.test.decorators import *
137 tests using decorators. You'll see them a lot. The debugger can be sensitive to139 version etc. LLDB comes with a range of predefined decorators for these146 Another great thing about these decorators is that they're very easy to extend,
49 @decorators.add_test_categories([cat])