Home
last modified time | relevance | path

Searched refs:first_arg (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp24 typename get_nth_type<0, Args...>::type first_arg(Args...);
31 int *ip1 = first_arg<int *>(0); in test_explicit_spec_simple()
32 int *ip2 = first_arg<int *, float*>(0, 0); in test_explicit_spec_simple()
33 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_simple()
40 int *ip1 = first_arg<int *>(0, 0); in test_explicit_spec_extension()
41 int *ip2 = first_arg<int *, float*>(0, 0, 0, 0); in test_explicit_spec_extension()
42 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_extension()
44 double *dp1 = first_arg<>(dp); in test_explicit_spec_extension()
/llvm-project-15.0.7/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp1-0x.cpp30 typename get_nth_type<0, Args...>::type first_arg(Args...);
36 int *ip1 = first_arg(ip); in test_simple_deduction()
37 int *ip2 = first_arg(ip, fp); in test_simple_deduction()
38 int *ip3 = first_arg(ip, fp, dp); in test_simple_deduction()
39 no_type nt1 = first_arg(); in test_simple_deduction()
/llvm-project-15.0.7/lldb/source/Utility/
H A DProcessInfo.cpp87 const char *first_arg = m_arguments.GetArgumentAtIndex(0); in SetArguments() local
88 if (first_arg) { in SetArguments()
92 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
103 const char *first_arg = m_arguments.GetArgumentAtIndex(0); in SetArguments() local
104 if (first_arg) { in SetArguments()
108 m_executable.SetFile(first_arg, FileSpec::Style::native); in SetArguments()
/llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/
H A Dmultivalue-stackify.py169 first_arg = tmp
183 args = make_llvm_args(first_arg, len(uses))
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp493 bool first_arg = true; in ForEachMacro() local
498 if (!first_arg) in ForEachMacro()
501 first_arg = false; in ForEachMacro()
507 if (first_arg) in ForEachMacro()
/llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp995 const char *first_arg = args.GetArgumentAtIndex(0); in ParseAutoEnableOptions() local
996 if (first_arg && (strcmp(first_arg, "--") == 0)) in ParseAutoEnableOptions()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2051 llvm::StringRef first_arg = request.GetParsedLine().GetArgumentAtIndex(0); in HandleCompletion() local
2053 if (!first_arg.empty()) { in HandleCompletion()
2054 if (first_arg.front() == m_comment_char) in HandleCompletion()
2056 if (first_arg.front() == CommandHistory::g_repeat_char) { in HandleCompletion()
2057 if (auto hist_str = m_command_history.FindString(first_arg)) in HandleCompletion()