Home
last modified time | relevance | path

Searched refs:LanguageSet (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp26 LanguageSet::LanguageSet() : bitvector(eNumLanguageTypes, false) {} in LanguageSet() function in LanguageSet
28 std::optional<LanguageType> LanguageSet::GetSingularLanguage() { in GetSingularLanguage()
34 void LanguageSet::Insert(LanguageType language) { bitvector.set(language); } in Insert()
35 size_t LanguageSet::Size() const { return bitvector.count(); } in Size()
36 bool LanguageSet::Empty() const { return bitvector.none(); } in Empty()
37 bool LanguageSet::operator[](unsigned i) const { return bitvector[i]; } in operator []()
347 LanguageSet languages = in SupportsLanguageStatic()
H A DType.cpp120 m_languages = LanguageSet(); in AddLanguage()
124 void TypeQuery::SetLanguages(LanguageSet languages) { in SetLanguages()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h562 LanguageSet supported_languages_for_types,
563 LanguageSet supported_languages_for_expressions);
570 static LanguageSet GetAllTypeSystemSupportedLanguagesForTypes();
572 static LanguageSet GetAllTypeSystemSupportedLanguagesForExpressions();
596 LanguageSet supported_languages);
602 static LanguageSet GetREPLSupportedLanguagesAtIndex(uint32_t idx);
604 static LanguageSet GetREPLAllTypeSystemSupportedLanguages();
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp1766 LanguageSet supported_languages_for_types, in TypeSystemInstance()
1767 LanguageSet supported_languages_for_expressions) in TypeSystemInstance()
1774 LanguageSet supported_languages_for_types;
1775 LanguageSet supported_languages_for_expressions;
1788 LanguageSet supported_languages_for_types, in RegisterPlugin()
1789 LanguageSet supported_languages_for_expressions) { in RegisterPlugin()
1804 LanguageSet PluginManager::GetAllTypeSystemSupportedLanguagesForTypes() { in GetAllTypeSystemSupportedLanguagesForTypes()
1806 LanguageSet all; in GetAllTypeSystemSupportedLanguagesForTypes()
1812 LanguageSet PluginManager::GetAllTypeSystemSupportedLanguagesForExpressions() { in GetAllTypeSystemSupportedLanguagesForExpressions()
1814 LanguageSet all; in GetAllTypeSystemSupportedLanguagesForExpressions()
[all …]
H A DDebugger.cpp2344 LanguageSet repl_languages = Language::GetLanguagesSupportingREPLs(); in RunREPL()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h442 static LanguageSet GetLanguagesSupportingTypeSystems();
443 static LanguageSet GetLanguagesSupportingTypeSystemsForExpressions();
444 static LanguageSet GetLanguagesSupportingREPLs();
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h38 struct LanguageSet { struct
40 LanguageSet(); argument
260 void SetLanguages(LanguageSet languages); in LLDB_MARK_AS_BITMASK_ENUM()
337 std::optional<LanguageSet> m_languages; in LLDB_MARK_AS_BITMASK_ENUM()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp424 LanguageSet Language::GetLanguagesSupportingTypeSystems() { in GetLanguagesSupportingTypeSystems()
428 LanguageSet Language::GetLanguagesSupportingTypeSystemsForExpressions() { in GetLanguagesSupportingTypeSystemsForExpressions()
432 LanguageSet Language::GetLanguagesSupportingREPLs() { in GetLanguagesSupportingREPLs()
H A DTarget.cpp313 LanguageSet repl_languages = Language::GetLanguagesSupportingREPLs(); in GetREPL()
2604 LanguageSet languages_for_expressions = in GetScratchTypeSystemForLanguage()
2640 LanguageSet languages_for_expressions = in GetScratchTypeSystems()
H A DProcess.cpp6080 LanguageSet plugins = in PrintWarningUnsupportedLanguage()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp47 LanguageSet languages_for_types = Language::GetLanguagesSupportingTypeSystems(); in SetValueFromString()
H A DCommandInterpreter.cpp2498 LanguageSet repl_languages = Language::GetLanguagesSupportingREPLs(); in GetHomeREPLInitFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.cpp27 LanguageSet languages; in Initialize()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp46 LanguageSet supported_languages = in Create()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h153 static LanguageSet GetSupportedLanguagesForTypes();
154 static LanguageSet GetSupportedLanguagesForExpressions();
H A DTypeSystemClang.cpp561 LanguageSet TypeSystemClang::GetSupportedLanguagesForTypes() { in GetSupportedLanguagesForTypes()
562 LanguageSet languages; in GetSupportedLanguagesForTypes()
579 LanguageSet TypeSystemClang::GetSupportedLanguagesForExpressions() { in GetSupportedLanguagesForExpressions()
580 LanguageSet languages; in GetSupportedLanguagesForExpressions()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp160 LanguageSet languages_for_expressions = in SetOptionValue()