Home
last modified time | relevance | path

Searched refs:decorator (Results 1 – 10 of 10) sorted by relevance

/tools/asuite/aidegen/lib/
Dcommon_util_unittest.py306 decorator = common_util.io_error_handle(some_io_error_func)
307 decorator()
327 decorator = common_util.check_args(name=str, text=str)
328 decorator(parse_rule(None, 'text'))
330 decorator = common_util.check_args(name=str, text=str)
331 decorator(parse_rule('Paul', ''))
333 decorator = common_util.check_args(name=str, text=str)
334 decorator(parse_rule(1, 2))
Dcommon_util.py544 def decorator(func): function
573 return decorator
/tools/security/gdb/gdb_json_printer/gdb_json_printer/
Dprinters.py38 def decorator(self, *args, **kwargs): function
43 return decorator
59 def decorator(self): function
69 return decorator
/tools/asuite/atest/docs/
Ddevelop_test_finders.md41 ```test_finder_base.find_method_register``` decorator. This decorator will
51 Decorate each find method with the ```test_finder_base.register``` decorator.
52 This is used by the class decorator to identify the find methods of the class.
/tools/test/connectivity/acts/framework/acts/libs/test_binding/
Dall_tests_decorator.py4 def for_all_tests(decorator): argument
23 decorator(getattr(decorated, test_name)))
/tools/test/connectivity/acts/framework/tests/libs/test_bindings/
Dall_tests_decorator_test.py25 def decorator(decorated): function
31 @for_all_tests(decorator)
/tools/test/connectivity/acts/framework/acts/libs/
Dversion_selector.py79 def decorator(func): function
106 return decorator
/tools/test/connectivity/acts/framework/acts/
Dtest_decorators.py86 def decorator(func): function
127 return decorator
Dutils.py567 def decorator(func): function
584 return decorator
/tools/asuite/atest/integration_tests/
Dsplit_build_test_script.py562 update_result = lambda decorator: result.update( argument
565 and decorator.__name__ == getattr(func, cls._DECORATOR_NAME, None),
587 is_decorated = lambda decorator, test: decorator.__name__ == getattr( argument