Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/util/
Dfunction_utils_test.py74 def fn(a, test_arg): argument
75 if test_arg != expected_test_arg:
79 wrapped_fn = functools.partial(fn, test_arg=123)
86 def fn(test_arg, a): argument
87 if test_arg != expected_test_arg:
188 def fn_has_kwargs(test_arg, **x): argument
189 if test_arg != expected_test_arg:
193 wrapped_fn = functools.partial(fn_has_kwargs, test_arg=123)
198 def fn_has_no_kwargs(x, test_arg): argument
199 if test_arg != expected_test_arg:
[all …]
/external/libaom/libaom/test/
Drt_end_to_end_test.cc58 std::ostream &operator<<(std::ostream &os, const TestVideoParam &test_arg) { in operator <<() argument
59 return os << "TestVideoParam { filename:" << test_arg.filename in operator <<()
60 << " input_bit_depth:" << test_arg.input_bit_depth in operator <<()
61 << " fmt:" << test_arg.fmt << " bit_depth:" << test_arg.bit_depth in operator <<()
62 << " profile:" << test_arg.profile << " }"; in operator <<()
Dend_to_end_test.cc57 std::ostream &operator<<(std::ostream &os, const TestVideoParam &test_arg) { in operator <<() argument
58 return os << "TestVideoParam { filename:" << test_arg.filename in operator <<()
59 << " input_bit_depth:" << test_arg.input_bit_depth in operator <<()
60 << " fmt:" << test_arg.fmt << " bit_depth:" << test_arg.bit_depth in operator <<()
61 << " profile:" << test_arg.profile << " }"; in operator <<()
Dhorz_superres_test.cc45 std::ostream &operator<<(std::ostream &os, const TestVideoParam &test_arg) { in operator <<() argument
46 return os << "TestVideoParam { filename:" << test_arg.filename in operator <<()
47 << " fmt:" << test_arg.fmt << " bit_depth:" << test_arg.bit_depth in operator <<()
48 << " profile:" << test_arg.profile << " limit:" << test_arg.limit in operator <<()
49 << " screen_content:" << test_arg.screen_content in operator <<()
50 << " psnr_threshold:" << test_arg.psnr_threshold << " }"; in operator <<()
Dfwd_kf_test.cc32 std::ostream &operator<<(std::ostream &os, const FwdKfTestParam &test_arg) { in operator <<() argument
33 return os << "FwdKfTestParam { max_kf_dist:" << test_arg.max_kf_dist in operator <<()
34 << " psnr_thresh:" << test_arg.psnr_thresh << " }"; in operator <<()
Dfft_test.cc84 std::ostream &operator<<(std::ostream &os, const FFTTestArg &test_arg) { in operator <<() argument
85 return os << "fft_arg { n:" << test_arg.n << " fft:" << test_arg.fft << " }"; in operator <<()
168 std::ostream &operator<<(std::ostream &os, const IFFTTestArg &test_arg) { in operator <<() argument
169 return os << "ifft_arg { n:" << test_arg.n << " fft:" << test_arg.ifft in operator <<()
/external/tensorflow/tensorflow/tools/ci_build/release/ubuntu_16/tpu_py37_full/
Dnonpip.sh59 --test_arg=--tpu="${TPU_NAME}" \
60 --test_arg=--zone="${TPU_ZONE}" \
61 --test_arg=--test_dir_base=gs://kokoro-tpu-testing/tempdir/ \
/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/llvm-project/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.ll16 ; CHECK-LABEL: test_arg
19 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.py177 test_arg = 'suite:' + suite_name
233 afe, test_arg=test_arg, remote=remote, build=build,
Dtest_runner_utils.py182 def fetch_local_suite(autotest_path, suite_predicate, afe, test_arg, remote, argument
228 get_predicate_for_possible_test_arg(test_arg))
618 suite = fetch_local_suite(autotest_path, predicate, afe, test_arg=test,
/external/toolchain-utils/
Drun_tests_for.py139 pretty_test = ' '.join(pipes.quote(test_arg) for test_arg in test.command)
/external/antlr/runtime/Ruby/test/unit/
Dtest-tree-wizard.rb64 def test_arg method in TestPatternLexer
/external/rust/crates/grpcio-sys/grpc/summerofcode/2018/
Dnaresh.md124 …le_strategy=standalone //src/python/grpcio_tests/tests/unit/_rpc_test --test_arg=RPCTest.testUnrec…
/external/grpc-grpc/summerofcode/2018/
Dnaresh.md124 …le_strategy=standalone //src/python/grpcio_tests/tests/unit/_rpc_test --test_arg=RPCTest.testUnrec…
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_lib_test.py167 self.assertEqual("foo", replica_context.merge_call(None, test_arg="foo"))
/external/python/cpython3/Lib/test/
Dtest_regrtest.py337 def test_arg(self): member in ParseArgsTestCase