Lines Matching full:runtime
149 LanguageRuntime *runtime = nullptr;
154 runtime = process->GetLanguageRuntime(known_type);
156 runtime->GetPreferredLanguageRuntime(*m_parent)) {
157 // Try the preferred runtime first.
162 // Set the operative `runtime` for later use in this function.
163 runtime = preferred_runtime;
166 // Fallback to the runtime for `known_type`.
167 found_dynamic_type = runtime->GetDynamicTypeAndAddress(
171 runtime = process->GetLanguageRuntime(lldb::eLanguageTypeC_plus_plus);
172 if (runtime)
173 found_dynamic_type = runtime->GetDynamicTypeAndAddress(
178 runtime = process->GetLanguageRuntime(lldb::eLanguageTypeObjC);
179 if (runtime)
180 found_dynamic_type = runtime->GetDynamicTypeAndAddress(
191 if (runtime && found_dynamic_type) {
195 runtime->FixUpDynamicType(class_type_or_name, *m_parent)
249 if (runtime)
251 runtime->FixUpDynamicType(m_dynamic_type_info, *m_parent);