Home
last modified time | relevance | path

Searched refs:test_arg (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/python/util/
Dfunction_utils_test.py65 def fn(a, test_arg): argument
66 if test_arg != expected_test_arg:
70 wrapped_fn = functools.partial(fn, test_arg=123)
77 def fn(test_arg, a): argument
78 if test_arg != expected_test_arg:
179 def fn_has_kwargs(test_arg, **x): argument
180 if test_arg != expected_test_arg:
184 wrapped_fn = functools.partial(fn_has_kwargs, test_arg=123)
189 def fn_has_no_kwargs(x, test_arg): argument
190 if test_arg != expected_test_arg:
[all …]
/external/libaom/libaom/test/
Drt_end_to_end_test.cc39 std::ostream &operator<<(std::ostream &os, const TestVideoParam &test_arg) { in operator <<() argument
40 return os << "TestVideoParam { filename:" << test_arg.filename in operator <<()
41 << " input_bit_depth:" << test_arg.input_bit_depth in operator <<()
42 << " fmt:" << test_arg.fmt << " bit_depth:" << test_arg.bit_depth in operator <<()
43 << " profile:" << test_arg.profile << "}"; in operator <<()
Dend_to_end_test.cc56 std::ostream &operator<<(std::ostream &os, const TestVideoParam &test_arg) { in operator <<() argument
57 return os << "TestVideoParam { filename:" << test_arg.filename in operator <<()
58 << " input_bit_depth:" << test_arg.input_bit_depth in operator <<()
59 << " fmt:" << test_arg.fmt << " bit_depth:" << test_arg.bit_depth in operator <<()
60 << " profile:" << test_arg.profile << "}"; in operator <<()
Dfft_test.cc83 std::ostream &operator<<(std::ostream &os, const FFTTestArg &test_arg) { in operator <<() argument
84 return os << "fft_arg { n:" << test_arg.n << " fft:" << test_arg.fft << " }"; in operator <<()
167 std::ostream &operator<<(std::ostream &os, const IFFTTestArg &test_arg) { in operator <<() argument
168 return os << "ifft_arg { n:" << test_arg.n << " fft:" << test_arg.ifft in operator <<()
/external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
Dvec_call.ll3 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
9 …%X = call <4 x i32> @test_arg( <4 x i32> zeroinitializer, <4 x i32> zeroinitializer ) ; <<4 x i32…
Dvec_vrsave.ll10 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
/external/llvm/test/CodeGen/PowerPC/
Dvec_call.ll3 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
9 …%X = call <4 x i32> @test_arg( <4 x i32> zeroinitializer, <4 x i32> zeroinitializer ) ; <<4 x i32…
Dvec_vrsave.ll10 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/
Dvec_call.ll3 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
9 …%X = call <4 x i32> @test_arg( <4 x i32> zeroinitializer, <4 x i32> zeroinitializer ) ; <<4 x i32…
Dvec_vrsave.ll10 define <4 x i32> @test_arg(<4 x i32> %A, <4 x i32> %B) {
/external/autotest/test_suites/
Dcontrol.test_that_wrapper45 parsed_test_arguments = [test_runner_utils.get_predicate_for_test_arg(test_arg)
46 for test_arg in args_dict['tests']]
/external/autotest/site_utils/
Dtest_runner_utils_unittest.py264 test_arg = 'suite:' + suite_name
319 afe, test_arg=test_arg, remote=remote, build=build,
Dtest_runner_utils.py170 def fetch_local_suite(autotest_path, suite_predicate, afe, test_arg, remote, argument
215 get_predicate_for_possible_test_arg(test_arg))
570 suite = fetch_local_suite(autotest_path, predicate, afe, test_arg=test,
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_lib_test.py84 self.assertEqual("foo", replica_context.merge_call(None, test_arg="foo"))
/external/antlr/runtime/Ruby/test/unit/
Dtest-tree-wizard.rb64 def test_arg method in TestPatternLexer
/external/grpc-grpc/summerofcode/2018/
Dnaresh.md124 …le_strategy=standalone //src/python/grpcio_tests/tests/unit/_rpc_test --test_arg=RPCTest.testUnrec…
/external/python/cpython3/Lib/test/
Dtest_regrtest.py323 def test_arg(self): member in ParseArgsTestCase