Searched refs:is_safe_attribute (Results 1 – 6 of 6) sorted by relevance
/third_party/node/tools/inspector_protocol/jinja2/ |
D | sandbox.py | 323 def is_safe_attribute(self, obj, attr, value): member in SandboxedEnvironment 375 if self.is_safe_attribute(obj, argument, value): 392 if self.is_safe_attribute(obj, attribute, value): 436 def is_safe_attribute(self, obj, attr, value): member in ImmutableSandboxedEnvironment 437 if not SandboxedEnvironment.is_safe_attribute(self, obj, attr, value):
|
D | filters.py | 931 environment.is_safe_attribute(obj, name, value):
|
/third_party/skia/third_party/externals/jinja2/ |
D | sandbox.py | 344 def is_safe_attribute(self, obj, attr, value): member in SandboxedEnvironment 397 if self.is_safe_attribute(obj, argument, value): 414 if self.is_safe_attribute(obj, attribute, value): 471 def is_safe_attribute(self, obj, attr, value): member in ImmutableSandboxedEnvironment 472 if not SandboxedEnvironment.is_safe_attribute(self, obj, attr, value):
|
D | filters.py | 1066 if environment.sandboxed and not environment.is_safe_attribute(
|
/third_party/jinja2/ |
D | sandbox.py | 258 def is_safe_attribute(self, obj: t.Any, attr: str, value: t.Any) -> bool: member in SandboxedEnvironment 316 if self.is_safe_attribute(obj, argument, value): 333 if self.is_safe_attribute(obj, attribute, value): 402 def is_safe_attribute(self, obj: t.Any, attr: str, value: t.Any) -> bool: member in ImmutableSandboxedEnvironment 403 if not super().is_safe_attribute(obj, attr, value):
|
D | filters.py | 1409 if not environment.is_safe_attribute(obj, name, value):
|