Searched refs:SecurityError (Results 1 – 10 of 10) sorted by relevance
/external/python/jinja/tests/ |
D | test_security.py | 5 from jinja2.exceptions import SecurityError 41 SecurityError, env.from_string("{{ foo.foo() }}").render, foo=PrivateStuff() 46 SecurityError, env.from_string("{{ foo._foo() }}").render, foo=PublicStuff() 53 SecurityError, 60 pytest.raises(SecurityError, env.from_string("{{ [].append(23) }}").render) 61 pytest.raises(SecurityError, env.from_string("{{ {1:2}.clear() }}").render) 97 pytest.raises(SecurityError, tmpl.render, cls=int)
|
/external/python/jinja/src/jinja2/ |
D | sandbox.py | 15 from .exceptions import SecurityError 345 exc=SecurityError, 379 raise SecurityError(f"{__obj!r} is not safely callable")
|
D | exceptions.py | 138 class SecurityError(TemplateRuntimeError): class
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | CommonBugCategories.cpp | 23 const char *const SecurityError = "Security error"; variable
|
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | CommonBugCategories.h | 22 extern const char *const SecurityError;
|
/external/libchrome/third_party/jinja2/ |
D | sandbox.py | 19 from jinja2.exceptions import SecurityError 403 ), name=attribute, obj=obj, exc=SecurityError) 426 raise SecurityError('%r is not safely callable' % (__obj,))
|
D | exceptions.py | 137 class SecurityError(TemplateRuntimeError): class
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/ |
D | PutenvWithAutoChecker.cpp | 31 categories::SecurityError};
|
/external/python/jinja/docs/ |
D | sandbox.rst | 15 SecurityError: access to attribute 'func_code' of 'function' object is unsafe. 29 .. autoexception:: SecurityError
|
D | api.rst | 301 is usually one of :exc:`UndefinedError` or :exc:`SecurityError`.
|