Home
last modified time | relevance | path

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

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