Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DFunction.cpp477 bool Function::IsTopLevelFunction() { in IsTopLevelFunction() function in Function
481 result = language->IsTopLevelFunction(*this); in IsTopLevelFunction()
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DFunction.h624 bool IsTopLevelFunction();
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DLanguage.h163 virtual bool IsTopLevelFunction(Function &function);
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DLanguage.cpp130 bool Language::IsTopLevelFunction(Function &function) { return false; } in IsTopLevelFunction() function in Language
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectFrame.cpp514 if (sym_ctx.function && sym_ctx.function->IsTopLevelFunction()) in DoExecute()