Home
last modified time | relevance | path

Searched refs:check_call (Results 1 – 25 of 32) sorted by relevance

12

/llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.visit/
H A Dvisit.pass.cpp115 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
117 assert(Fn::check_call<const int &>(Val)); in test_argument_forwarding()
119 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
130 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
132 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
134 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
136 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
144 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
146 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
148 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
[all …]
H A Dvisit_return_type.pass.cpp117 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
119 assert(Fn::check_call<const int &>(Val)); in test_argument_forwarding()
121 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
132 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
134 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
136 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
138 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
146 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
148 assert(Fn::check_call<int &>(Val)); in test_argument_forwarding()
150 assert(Fn::check_call<int &&>(Val)); in test_argument_forwarding()
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.not_fn/
H A Dnot_fn.pass.cpp304 assert(st.check_call<>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test()
306 assert(st.check_call<>(CT_NonConst | CT_RValue)); in call_operator_forwarding_test()
308 assert(st.check_call<>(CT_Const | CT_LValue)); in call_operator_forwarding_test()
310 assert(st.check_call<>(CT_Const | CT_RValue)); in call_operator_forwarding_test()
316 assert(st.check_call<int&>(CT_NonConst | CT_LValue)); in call_operator_forwarding_test()
344 assert(st.check_call<int&>(CT_Const | CT_LValue)); in call_operator_forwarding_test()
348 assert(st.check_call<int&&>(CT_Const | CT_LValue)); in call_operator_forwarding_test()
352 assert(st.check_call<int&&>(CT_Const | CT_LValue)); in call_operator_forwarding_test()
358 assert(st.check_call<int&>(CT_Const | CT_RValue)); in call_operator_forwarding_test()
362 assert(st.check_call<int&&>(CT_Const | CT_RValue)); in call_operator_forwarding_test()
[all …]
/llvm-project-15.0.7/clang/utils/analyzer/
H A Dentrypoint.py5 from subprocess import call, check_call, CalledProcessError
61 check_call(CMAKE_COMMAND + ' '.join(cmake_options) + ' /llvm-project/llvm',
66 check_call("ninja install", shell=True)
H A DSATestUtils.py5 from subprocess import CalledProcessError, check_call
127 check_call(*popenargs, **kwargs)
142 check_call(f"chmod +x '{script_path}'", cwd=cwd,
147 check_call(f"'{script_path}'", cwd=cwd,
H A DSATestUpdateDiffs.py13 from subprocess import check_call
44 check_call(command, shell=True, stdout=build_log_file)
H A DSATestBuild.py65 from subprocess import CalledProcessError, check_call
615 check_call(f"git clone --recursive {repo} {cached_source}",
618 check_call(f"git checkout --quiet {self.project.commit}",
656 check_call(f"patch -p1 < '{patchfile_path}'",
/llvm-project-15.0.7/lldb/test/API/api/command-return-object/
H A DTestSBCommandReturnObject.py28 check_call([self.driver_exe, self.driver_exe], env=env)
31 check_call([self.driver_exe, self.driver_exe],
/llvm-project-15.0.7/llvm/utils/
H A Dprepare-code-coverage-artifact.py28 subprocess.check_call([host_llvm_profdata, 'merge', '-sparse', '-f',
53 subprocess.check_call(invocation)
55 subprocess.check_call([host_llvm_cov, 'report'] + objects +
H A Dremote-exec.py85 subprocess.check_call(
100 subprocess.check_call(scp(args, tmpTar.name, remoteTarball))
137 subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp)))
H A Dsysroot.py17 subprocess.check_call(['mklink', '/j', dst, src], shell=True)
/llvm-project-15.0.7/lldb/test/API/api/multiple-targets/
H A DTestMultipleTargets.py38 check_call([self.driver_exe, self.driver_exe], env=env)
41 check_call([self.driver_exe, self.driver_exe],
/llvm-project-15.0.7/lldb/test/API/api/multiple-debuggers/
H A DTestMultipleDebuggers.py38 check_call([self.driver_exe, self.inferior_exe], env=env)
41 check_call([self.driver_exe, self.inferior_exe],
/llvm-project-15.0.7/libcxx/utils/
H A Dssh.py73 … subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
86 subprocess.check_call(scp(args, tmpTar.name, remoteTarball))
121 subprocess.check_call(ssh(args, 'rm -r {}'.format(tmp)))
H A Drun.py43 … subprocess.check_call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={})
/llvm-project-15.0.7/llvm/tools/llvm-shlib/
H A Dgen-msvc-exports.py28 from subprocess import check_call
72 check_call([nm, '-g', lib], stdout=dumpout_f)
/llvm-project-15.0.7/lldb/test/API/api/multithreaded/
H A DTestMultithreaded.py112 check_call(exe, env=env)
115 check_call(exe, env=env, stdout=fnull, stderr=fnull)
/llvm-project-15.0.7/llvm/utils/gn/build/
H A Dsync_source_lists_from_cmake.py48 subprocess.check_call([sys.executable, gn, 'format', '-q', gn_file])
53 def git(args): subprocess.check_call(['git'] + args, shell=os.name == 'nt')
/llvm-project-15.0.7/clang/utils/perf-training/
H A Dperf-helper.py46 subprocess.check_call(cmd)
105 subprocess.check_call(dtrace_args, stdout=f, stderr=subprocess.PIPE)
161 subprocess.check_call(cc1_cmd)
/llvm-project-15.0.7/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_exec_anatomy.py16 return subprocess.check_call(cmd,
H A D__init__.py37 return subprocess.check_call(cmd, *args, **kwargs)
/llvm-project-15.0.7/clang/tools/clang-format/
H A Dgit-clang-format539 subprocess.check_call(['git', 'diff', '--diff-filter=M', old_tree, new_tree,
551 subprocess.check_call(['git', 'diff', '--diff-filter=M', '--stat', old_tree, new_tree,
578 subprocess.check_call(['git', 'checkout', '--patch', new_tree])
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/tool/
H A Drun-clang-tidy.py322 subprocess.check_call(invocation, stdout=dev_null)
324 subprocess.check_call(invocation)
/llvm-project-15.0.7/libcxx/test/support/
H A Dvariant_test_helpers.h135 template <class... Args> static bool check_call(CallType type) { in check_call() function
/llvm-project-15.0.7/clang/utils/
H A Dcreduce-clang-crash.py229 subprocess.check_call(cmd_preprocess_no_lines)
234 subprocess.check_call(cmd_preprocess)

12