Home
last modified time | relevance | path

Searched refs:ScopeRange (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDemangledNameInfo.cpp52 NameInfo.ScopeRange.first = getCurrentPosition(); in updateScopeStart()
59 NameInfo.ScopeRange.second = getCurrentPosition(); in updateScopeEnd()
103 if (NameInfo.ScopeRange.first > NameInfo.ScopeRange.second) in finalizeEnd()
104 NameInfo.ScopeRange.second = NameInfo.ScopeRange.first; in finalizeEnd()
105 NameInfo.BasenameRange.first = NameInfo.ScopeRange.second; in finalizeEnd()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDemangledNameInfo.h40 std::pair<size_t, size_t> ScopeRange; member
79 bool hasScope() const { return ScopeRange.second >= ScopeRange.first; } in hasScope()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp302 if (info.ScopeRange.first >= demangled_name.size()) in GetDemangledReturnTypeLHS()
307 return demangled_name.substr(0, info.ScopeRange.first); in GetDemangledReturnTypeLHS()
355 return demangled_name.slice(info.ScopeRange.first, info.ScopeRange.second); in GetDemangledScope()