Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DLineEntry.cpp198 auto symbol_context_scope = lldb::eSymbolContextLineEntry; in GetSameLineContiguousAddressRange() local
201 symbol_context_scope |= lldb::eSymbolContextBlock; in GetSameLineContiguousAddressRange()
207 range_end.CalculateSymbolContext(&next_line_sc, symbol_context_scope); in GetSameLineContiguousAddressRange()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp3247 SymbolContextScope *symbol_context_scope = nullptr; in ParseVariableDIE() local
3345 symbol_context_scope = exe_symbol; in ParseVariableDIE()
3391 if (symbol_context_scope == nullptr) { in ParseVariableDIE()
3397 symbol_context_scope = in ParseVariableDIE()
3399 if (symbol_context_scope == nullptr) in ParseVariableDIE()
3400 symbol_context_scope = sc.function; in ParseVariableDIE()
3405 symbol_context_scope = sc.comp_unit; in ParseVariableDIE()
3410 if (symbol_context_scope) { in ParseVariableDIE()
3421 die.GetID(), name, mangled, type_sp, scope, symbol_context_scope, in ParseVariableDIE()
DDWARFASTParserClang.cpp1385 SymbolContextScope *symbol_context_scope = nullptr; in UpdateSymbolContextScopeForType() local
1388 symbol_context_scope = sc.comp_unit; in UpdateSymbolContextScopeForType()
1390 symbol_context_scope = in UpdateSymbolContextScopeForType()
1392 if (symbol_context_scope == nullptr) in UpdateSymbolContextScopeForType()
1393 symbol_context_scope = sc.function; in UpdateSymbolContextScopeForType()
1395 symbol_context_scope = sc.module_sp.get(); in UpdateSymbolContextScopeForType()
1398 if (symbol_context_scope != nullptr) in UpdateSymbolContextScopeForType()
1399 type_sp->SetSymbolContextScope(symbol_context_scope); in UpdateSymbolContextScopeForType()