Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp478 bool Function::IsTopLevelFunction() { in IsTopLevelFunction() function in Function
482 result = language->IsTopLevelFunction(*this); in IsTopLevelFunction()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h630 bool IsTopLevelFunction();
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h164 virtual bool IsTopLevelFunction(Function &function);
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp119 bool Language::IsTopLevelFunction(Function &function) { return false; } in IsTopLevelFunction() function in Language
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp509 if (sym_ctx.function && sym_ctx.function->IsTopLevelFunction()) in DoExecute()