Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Target/
DLanguage.h164 virtual bool IsTopLevelFunction(Function &function);
/external/llvm-project/lldb/source/Symbol/
DFunction.cpp479 bool Function::IsTopLevelFunction() { in IsTopLevelFunction() function in Function
483 result = language->IsTopLevelFunction(*this); in IsTopLevelFunction()
/external/llvm-project/lldb/include/lldb/Symbol/
DFunction.h630 bool IsTopLevelFunction();
/external/llvm-project/lldb/source/Target/
DLanguage.cpp119 bool Language::IsTopLevelFunction(Function &function) { return false; } in IsTopLevelFunction() function in Language
/external/llvm-project/lldb/source/Commands/
DCommandObjectFrame.cpp516 if (sym_ctx.function && sym_ctx.function->IsTopLevelFunction()) in DoExecute()