Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/objc/
H A DTestObjCBreakpoints.py43 function_name = bp_loc.GetAddress().GetSymbol().GetName()
45 " myCategoryFunction]" in function_name,
94 function_name = bp_loc.GetAddress().GetSymbol().GetName()
96 " count]" in function_name,
114 function_name = bp_loc.GetAddress().GetSymbol().GetName()
116 " isEqual:]" in function_name,
/llvm-project-15.0.7/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-15.0.7/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-15.0.7/lldb/test/API/functionalities/breakpoint/debugbreak/
H A DTestDebugBreak.py37 function_name = frame.GetFunctionName()
38 self.assertIn('bar', function_name,
39 "Unexpected function name {}".format(function_name))
/llvm-project-15.0.7/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py121 if not function_name:
125 if (not function_name.startswith('??') or
187 if function_name == '-1':
194 elif function_name == '??':
198 elif not function_name:
202 if not function_name and not file_name:
204 function_name = '??'
206 lines.append((function_name, file_name))
285 function_name = match.group(1)
393 function_name, file_name, line_no = res
[all …]
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_suppressions.cpp87 const char *function_name = cur->info.function; in IsStackTraceSuppressed() local
88 if (!function_name) { in IsStackTraceSuppressed()
92 if (suppression_ctx->Match(function_name, kInterceptorViaFunction, in IsStackTraceSuppressed()
/llvm-project-15.0.7/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-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win_dll_thunk.h56 static const char function_name[] = #name; \
57 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \
71 static const char function_name[] = #name; \
72 for (const char* ptr = &function_name[0]; *ptr; ++ptr) \
H A Dsanitizer_symbolizer_libcdep.cpp329 char *function_name = nullptr; in ParseSymbolizePCOutput() local
330 str = ExtractToken(str, "\n", &function_name); in ParseSymbolizePCOutput()
331 CHECK(function_name); in ParseSymbolizePCOutput()
332 if (function_name[0] == '\0') { in ParseSymbolizePCOutput()
334 InternalFree(function_name); in ParseSymbolizePCOutput()
350 info->function = function_name; in ParseSymbolizePCOutput()
390 str = ExtractToken(str, "\n", &local.function_name); in ParseSymbolizeFrameOutput()
/llvm-project-15.0.7/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-15.0.7/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-15.0.7/compiler-rt/lib/tsan/rtl-old/
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-15.0.7/compiler-rt/lib/interception/
H A Dinterception_win.cpp965 char function_name[256]; in InternalGetProcAddress() local
967 if (funtion_name_length >= sizeof(function_name) - 1) in InternalGetProcAddress()
970 _memcpy(function_name, func, funtion_name_length); in InternalGetProcAddress()
971 function_name[funtion_name_length] = '\0'; in InternalGetProcAddress()
972 char* separator = _strchr(function_name, '.'); in InternalGetProcAddress()
977 void* redirected_module = GetModuleHandleA(function_name); in InternalGetProcAddress()
1006 const char *function_name, uptr new_function, in OverrideImportedFunction() argument
1048 if (strcmp(funcname, function_name) == 0) in OverrideImportedFunction()
/llvm-project-15.0.7/compiler-rt/lib/dfsan/scripts/
H A Dbuild-libc-list.py54 function_name = line[59:].split('@')[0]
55 functions.append(function_name)
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrameRecognizer.cpp111 ConstString function_name = symctx.GetFunctionName(); in GetRecognizerForFrame() local
132 if (!llvm::is_contained(entry.symbols, function_name)) in GetRecognizerForFrame()
136 if (!entry.symbol_regexp->Execute(function_name.GetStringRef())) in GetRecognizerForFrame()
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-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-remark-size-diff.rst74 (++|--|==) (>|<) function_name, N instrs, M stack B
79 Which of OLD and NEW the ``function_name`` is present in.
86 Denotes if ``function_name`` has more instructions or fewer instructions in
92 ``function_name``
180 "FunctionName" : "function_name"
/llvm-project-15.0.7/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-15.0.7/lldb/source/DataFormatters/
H A DTypeSummary.cpp146 const char *function_name, in ScriptSummaryFormat() argument
150 if (function_name) in ScriptSummaryFormat()
151 m_function_name.assign(function_name); in ScriptSummaryFormat()
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DTypeSummary.h358 const char *function_name,
367 void SetFunctionName(const char *function_name) { in SetFunctionName()
368 if (function_name) in SetFunctionName()
369 m_function_name.assign(function_name); in SetFunctionName()
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A Dprobe_process.py38 self.function_name = name.split('!')[-1]
62 return '{}:{}({}) {}'.format(self.basename, self.line, self.descr, self.function_name)
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DScriptInterpreter.cpp123 const char *function_name, StructuredData::ObjectSP extra_args_sp) { in SetBreakpointCommandCallbackFunction() argument
126 error = SetBreakpointCommandCallbackFunction(bp_options, function_name, in SetBreakpointCommandCallbackFunction()
/llvm-project-15.0.7/lldb/test/API/functionalities/postmortem/minidump/
H A DTestMiniDump.py136 function_name = frame.GetFunctionName()
137 self.assertIn(name, function_name)
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dbenchmark_name.cc55 return join('/', function_name, args, min_time, iterations, repetitions, in str()

12