Home
last modified time | relevance | path

Searched refs:is_allowlisted (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/impl/
Dconversion_test.py51 self.assertFalse(conversion.is_allowlisted(test_fn))
52 self.assertTrue(conversion.is_allowlisted(utils))
53 self.assertTrue(conversion.is_allowlisted(constant_op.constant))
63 self.assertFalse(conversion.is_allowlisted(tf_like.test_fn))
93 self.assertTrue(conversion.is_allowlisted(TestClass.__call__))
94 self.assertTrue(conversion.is_allowlisted(tc))
95 self.assertTrue(conversion.is_allowlisted(tc.__call__))
96 self.assertTrue(conversion.is_allowlisted(tc.allowlisted_method))
97 self.assertFalse(conversion.is_allowlisted(Subclass))
98 self.assertFalse(conversion.is_allowlisted(tc.converted_method))
[all …]
Dconversion.py116 def is_allowlisted( function
164 …if (type(o) != type(o.__call__)) and is_allowlisted(o.__call__): # pylint: disable=unidiomatic-ty…
194 if is_allowlisted(
Dapi.py400 if not options.user_requested and conversion.is_allowlisted(f):
/external/toolchain-utils/debug_info_test/
Dcheck_ngcc.py10 from allowlist import is_allowlisted
24 if is_allowlisted('ngcc_comp_path', comp_path):
27 if is_allowlisted('ngcc_dso_path', dso_path):
Dcheck_exist.py13 from allowlist import is_allowlisted
28 if is_allowlisted('exist_debug_info', dso_path):
50 if is_allowlisted('exist_producer', dso_path):
Dallowlist.py21 def is_allowlisted(list_name, pattern): function
/external/rust/crates/bindgen/src/ir/
Ddot.rs35 let is_allowlisted = ctx.allowlisted_items().contains(&id); in write_dot_file() localVariable
41 if is_allowlisted { "black" } else { "gray" } in write_dot_file()
59 if is_allowlisted { "black" } else { "gray" } in write_dot_file()
/external/tensorflow/tensorflow/python/autograph/pyct/
Derror_utils.py95 is_allowlisted=False)
109 is_allowlisted=True)
119 is_allowlisted=False)
190 elif frame_info.is_allowlisted: