Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DFunction.h628 bool IsTopLevelFunction();
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DFunction.cpp421 bool Function::IsTopLevelFunction() { in IsTopLevelFunction() function in Function
425 result = language->IsTopLevelFunction(*this); in IsTopLevelFunction()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DLanguage.h164 virtual bool IsTopLevelFunction(Function &function);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DLanguage.cpp121 bool Language::IsTopLevelFunction(Function &function) { return false; } in IsTopLevelFunction() function in Language
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectFrame.cpp540 if (sym_ctx.function && sym_ctx.function->IsTopLevelFunction()) in DoExecute()