Home
last modified time | relevance | path

Searched refs:function_name (Results 1 – 25 of 57) sorted by relevance

123

/llvm-project/libcxx/test/std/language.support/support.srcloc/
H A Dgeneral.pass.cpp38 static_assert(empty.function_name()[0] == '\0');
43 ASSERT_NOEXCEPT(empty.function_name());
47 std::same_as<const char*> auto function = empty.function_name();
56 static_assert(cur.function_name()[0] == '\0');
64 assert(strstr(local.function_name(), "main") != nullptr); in main()
71 assert(strcmp(local2.function_name(), cur.function_name()) == 0); in main()
78 assert(strcmp(local.function_name(), cur.function_name()) == 0); in main()
/llvm-project/third-party/benchmark/test/
H A Dbenchmark_name_gtest.cc16 name.function_name = "function_name"; in TEST()
22 name.function_name = "function_name"; in TEST()
29 name.function_name = "function_name"; in TEST()
37 name.function_name = "function_name"; in TEST()
45 name.function_name = "function_name"; in TEST()
53 name.function_name = "function_name"; in TEST()
61 name.function_name = "function_name"; in TEST()
69 name.function_name = "function_name"; in TEST()
/llvm-project/lldb/test/API/functionalities/breakpoint/objc/
H A DTestObjCBreakpoints.py44 function_name = bp_loc.GetAddress().GetSymbol().GetName()
47 function_name,
111 function_name = bp_loc.GetAddress().GetSymbol().GetName()
114 function_name,
136 function_name = bp_loc.GetAddress().GetSymbol().GetName()
139 function_name,
/llvm-project/compiler-rt/lib/gwp_asan/scripts/
H A Dsymbolize.sh21 function_name="$(echo $line | grep -oE '\([^+]*' | cut -c2-)"
26 if [ -z "$function_name" ]; then
34 grep -E " $function_name$" | cut -d' ' -f1)"
/llvm-project/llvm/test/tools/UpdateTestChecks/update_test_checks/
H A Dfunction-name.test3 # RUN: cp -f %S/Inputs/function_name.ll %t.ll && %update_test_checks %t.ll
4 # RUN: diff -u %t.ll %S/Inputs/function_name.ll.expected
7 # RUN: diff -u %t.ll %S/Inputs/function_name.ll.expected
/llvm-project/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py142 function_name = self.pipe.stdout.readline().rstrip()
143 if not function_name:
147 if not function_name.startswith("??") or not file_name.startswith("??"):
149 result.append("%s in %s %s" % (addr, function_name, file_name))
202 function_name = self.pipe.stdout.readline().rstrip()
203 logging.debug("read function_name='%s' from addr2line" % function_name)
210 if function_name == "-1":
217 elif function_name == "??":
221 elif not function_name
662 _filter_single_value(self, function_name, input_value) global() argument
[all...]
/llvm-project/third-party/benchmark/src/
H A Dbenchmark_api_internal.cc31 name_.function_name = benchmark_.name_; in BenchmarkInstance()
96 State st(name_.function_name, iters, args_, thread_id, threads_, timer, in Run()
104 State st(name_.function_name, /*iters*/ 1, args_, /*thread_id*/ 0, threads_, in Setup()
112 State st(name_.function_name, /*iters*/ 1, args_, /*thread_id*/ 0, threads_, in Teardown()
/llvm-project/lldb/test/API/functionalities/breakpoint/debugbreak/
H A DTestDebugBreak.py42 function_name = frame.GetFunctionName()
44 "bar", function_name, "Unexpected function name {}".format(function_name)
/llvm-project/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp75 const char *function_name = cur->info.function; in IsStackTraceSuppressed()
76 if (!function_name) { in IsStackTraceSuppressed()
81 if (suppression_ctx->Match(function_name, suppression, &s)) { in IsStackTraceSuppressed()
87 const char *function_name = cur->info.function; IsStackTraceSuppressed() local
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win_dll_thunk.h
H A Dsanitizer_symbolizer_libcdep.cpp341 char *function_name = nullptr; in ParseSymbolizePCOutput() local
342 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput()
343 CHECK(function_name); in ParseSymbolizePCOutput()
344 if (function_name[0] == '\0') { in ParseSymbolizePCOutput()
346 InternalFree(function_name); in ParseSymbolizePCOutput()
362 info->function = function_name; in ParseSymbolizePCOutput()
402 str = ExtractToken(str, "\n", &local.function_name); in ParseSymbolizeFrameOutput()
/llvm-project/lldb/test/API/api/multithreaded/
H A Dtest_listener_event_process_state.cpp.template47 const char* function_name = thread.GetFrameAtIndex(j).GetSymbol().GetName();
48 if (function_name)
49 g_frame_functions.push(string(function_name));
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp62 static void AddFrame(void *ctx, const char *function_name, const char *file, in AddFrame() argument
72 if (function_name) { in AddFrame()
73 info->function = internal_strdup(function_name); in AddFrame()
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dinconsistent-declaration-parameter-name-macros.cpp39 #define DECLARE_FUNCTION_WITH_PARAM_NAME(function_name, param_name) \ argument
40 void function_name(int param_name)
/llvm-project/lldb/source/Target/
H A DStackFrameRecognizer.cpp167 ConstString function_name = symctx.GetFunctionName(entry.symbol_mangling);
170 if (!llvm::is_contained(entry.symbols, function_name))
174 if (!entry.symbol_regexp->Execute(function_name.GetStringRef()))
111 ConstString function_name = symctx.GetFunctionName(); GetRecognizerForFrame() local
H A DThreadPlanStepInRange.cpp387 const char *function_name = sc.GetFunctionName().AsCString(); in DefaultShouldStopHereCallback() local
389 if (function_name == nullptr) in DefaultShouldStopHereCallback()
391 else if (strstr(function_name, target_name) == nullptr) in DefaultShouldStopHereCallback()
/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp1314 // format: "<module> . <function_name>" that is stored into the
1316 char function_name[256];
1318 if (funtion_name_length >= sizeof(function_name) - 1) {
1323 _memcpy(function_name, func, funtion_name_length);
1324 function_name[funtion_name_length] = '\0';
1325 char* separator = _strchr(function_name, '.');
1328 function_name);
1333 void* redirected_module = GetModuleHandleA(function_name);
1336 function_name);
1378 const char *function_name, upt
1041 char function_name[256]; InternalGetProcAddress() local
1082 OverrideImportedFunction(const char * module_to_patch,const char * imported_module,const char * function_name,uptr new_function,uptr * orig_old_func) OverrideImportedFunction() argument
[all...]
/llvm-project/compiler-rt/lib/dfsan/scripts/
H A Dbuild-libc-list.py59 function_name = line[59:].split("@")[0]
60 functions.append(function_name)
/llvm-project/openmp/runtime/test/ompt/misc/
H A Dapi_calls_places.c9 void print_list(char *function_name, int size, int list[]) { in print_list() argument
10 printf("%" PRIu64 ": %s(0)=(%d", ompt_get_thread_data()->value, function_name, in print_list()
/llvm-project/lldb/source/DataFormatters/
H A DTypeSummary.cpp166 const char *function_name, in FormatObject()
171 if (function_name) { in FormatObject()
172 m_function_name.assign(function_name); in FormatObject()
173 m_script_formatter_name = function_name; in FormatObject()
149 ScriptSummaryFormat(const TypeSummaryImpl::Flags & flags,const char * function_name,const char * python_script) ScriptSummaryFormat() argument
/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeSummary.h375 const char *function_name, in SetPythonScript()
384 void SetFunctionName(const char *function_name) {
385 if (function_name)
386 m_function_name.assign(function_name);
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Dprobe_process.py39 self.function_name = name.split("!")[-1]
62 self.basename, self.line, self.descr, self.function_name
/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h463 InterruptionReport(std::string function_name, std::string description)
464 : m_function_name(std::move(function_name)),
469 InterruptionReport(std::string function_name, in InterruptionReport()
473 InterruptionReport(std::string function_name, const char *format,
476 function_name,
455 InterruptionReport(std::string function_name,std::string description) InterruptionReport() argument
465 InterruptionReport(std::string function_name,const char * format,Args &&...args) InterruptionReport() argument
/llvm-project/libcxx/include/
H A Dsource_location23 constexpr const char* function_name() const noexcept;
79 _LIBCPP_HIDE_FROM_ABI constexpr const char* function_name() const noexcept {
/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h320 const char *function_name, StructuredData::ObjectSP extra_args_sp);
325 const char *function_name, in SetBreakpointCommandCallback()
335 virtual bool GetScriptedSummary(const char *function_name, in SetBreakpointCommandCallback()
346 virtual bool FormatterCallbackFunction(const char *function_name,
348 SetBreakpointCommandCallbackFunction(BreakpointOptions & bp_options,const char * function_name,StructuredData::ObjectSP extra_args_sp) SetBreakpointCommandCallbackFunction() argument
360 GetScriptedSummary(const char * function_name,lldb::ValueObjectSP valobj,StructuredData::ObjectSP & callee_wrapper_sp,const TypeSummaryOptions & options,std::string & retval) GetScriptedSummary() argument
371 FormatterCallbackFunction(const char * function_name,lldb::TypeImplSP type_impl_sp) FormatterCallbackFunction() argument

123