Home
last modified time | relevance | path

Searched refs:IsTopLevelFunction (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h620 bool IsTopLevelFunction();
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp511 bool Function::IsTopLevelFunction() { in IsTopLevelFunction() function in Function
515 result = language->IsTopLevelFunction(*this); in IsTopLevelFunction()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h167 virtual bool IsTopLevelFunction(Function &function);
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp130 bool Language::IsTopLevelFunction(Function &function) { return false; } in IsTopLevelFunction() function in Language
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp566 if (sym_ctx.function && sym_ctx.function->IsTopLevelFunction()) in DoExecute()