Searched refs:LanguageSet (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DTypeSystem.cpp33 LanguageSet::LanguageSet() : bitvector(eNumLanguageTypes, 0) {}
35 llvm::Optional<LanguageType> LanguageSet::GetSingularLanguage() {
41 void LanguageSet::Insert(LanguageType language) { bitvector.set(language); }
42 size_t LanguageSet::Size() const { return bitvector.count(); }
43 bool LanguageSet::Empty() const { return bitvector.none(); }
44 bool LanguageSet::operator[](unsigned i) const { return bitvector[i]; }
H A DSymbolFile.cpp139 LanguageSet languages,
H A DClangASTContext.cpp568 LanguageSet ClangASTContext::GetSupportedLanguagesForTypes() {
569 LanguageSet languages;
584 LanguageSet ClangASTContext::GetSupportedLanguagesForExpressions() {
585 LanguageSet languages;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h390 LanguageSet supported_languages_for_types,
391 LanguageSet supported_languages_for_expressions);
401 static LanguageSet GetAllTypeSystemSupportedLanguagesForTypes();
403 static LanguageSet GetAllTypeSystemSupportedLanguagesForExpressions();
408 LanguageSet supported_languages);
417 static LanguageSet GetREPLAllTypeSystemSupportedLanguages();
H A DModule.h428 void FindTypes(llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueLanguage.cpp43 LanguageSet languages_for_types = Language::GetLanguagesSupportingTypeSystems();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h267 static LanguageSet GetLanguagesSupportingTypeSystems();
268 static LanguageSet GetLanguagesSupportingTypeSystemsForExpressions();
269 static LanguageSet GetLanguagesSupportingREPLs();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp355 LanguageSet Language::GetLanguagesSupportingTypeSystems() {
359 LanguageSet Language::GetLanguagesSupportingTypeSystemsForExpressions() {
363 LanguageSet Language::GetLanguagesSupportingREPLs() {
H A DTarget.cpp209 LanguageSet repl_languages = Language::GetLanguagesSupportingREPLs();
2131 LanguageSet languages_for_expressions =
2156 LanguageSet languages_for_expressions =
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DPluginManager.cpp2089 LanguageSet supported_languages_for_types;
2090 LanguageSet supported_languages_for_expressions;
2108 LanguageSet supported_languages_for_types,
2109 LanguageSet supported_languages_for_expressions) {
2166 LanguageSet PluginManager::GetAllTypeSystemSupportedLanguagesForTypes() {
2168 LanguageSet all;
2175 LanguageSet PluginManager::GetAllTypeSystemSupportedLanguagesForExpressions() {
2177 LanguageSet all;
2192 LanguageSet supported_languages;
2209 LanguageSet supported_language
[all...]
H A DDebugger.cpp1599 LanguageSet repl_languages = Language::GetLanguagesSupportingREPLs();
H A DModule.cpp1009 llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h125 void FindTypes(llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
H A DSymbolFileBreakpad.cpp313 llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFile.h236 FindTypes(llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
H A DTypeSystem.h39 /// architectures a LanguageSet can be completely stack-allocated.
40 struct LanguageSet { struct in namespace:lldb_private
42 LanguageSet();
H A DClangASTContext.h88 static LanguageSet GetSupportedLanguagesForTypes();
89 static LanguageSet GetSupportedLanguagesForExpressions();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h147 lldb_private::LanguageSet languages,
H A DSymbolFilePDB.cpp1564 llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h144 void FindTypes(llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
H A DSymbolFileNativePDB.cpp1254 llvm::ArrayRef<CompilerContext> pattern, LanguageSet languages,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h130 lldb_private::LanguageSet languages,
H A DSymbolFileDWARF.h201 lldb_private::LanguageSet languages,
H A DSymbolFileDWARFDebugMap.cpp1188 llvm::ArrayRef<CompilerContext> context, LanguageSet languages,
H A DDWARFASTParserClang.cpp157 LanguageSet languages;

Completed in 240 milliseconds

12