Lines Matching full:language
13 #include "lldb/Target/Language.h"
22 lldb::LanguageType language, in ExceptionSearchFilter() argument
24 : SearchFilter(target_sp, FilterTy::Exception), m_language(language), in ExceptionSearchFilter()
104 ExceptionBreakpointResolver(lldb::LanguageType language, bool catch_bp, in ExceptionBreakpointResolver() argument
107 m_language(language), m_catch_bp(catch_bp), m_throw_bp(throw_bp) {} in ExceptionBreakpointResolver()
129 Language *language_plugin = Language::FindPlugin(m_language); in GetDescription()
134 Language::GetDefaultExceptionResolverDescription(m_catch_bp, m_throw_bp, in GetDescription()
203 lldb::LanguageType language) { in FindPlugin() argument
210 if (LanguageRuntime *runtime = create_callback(process, language)) in FindPlugin()
219 LanguageRuntime::GetExceptionPrecondition(LanguageType language, in GetExceptionPrecondition() argument
231 precondition_callback(language, throw_bp)) in GetExceptionPrecondition()
239 Target &target, lldb::LanguageType language, bool catch_bp, bool throw_bp, in CreateExceptionBreakpoint() argument
242 new ExceptionBreakpointResolver(language, catch_bp, throw_bp)); in CreateExceptionBreakpoint()
244 new ExceptionSearchFilter(target.shared_from_this(), language)); in CreateExceptionBreakpoint()
251 if (auto precond = GetExceptionPrecondition(language, throw_bp)) in CreateExceptionBreakpoint()
269 for (const lldb::LanguageType lang_type : Language::GetSupportedLanguages()) { in GetRuntimeUnwindPlan()
299 // the CommandObject vended by a Language plugin cannot be created once in InitializeCommands()