Lines Matching defs:new_sc
600 SymbolContext &new_sc) {
603 if (old_sc.module_sp.get() == new_sc.module_sp.get()) {
606 if (old_sc.comp_unit && new_sc.comp_unit &&
607 (old_sc.comp_unit == new_sc.comp_unit)) {
608 if (old_sc.function && new_sc.function &&
609 (old_sc.function == new_sc.function)) {
612 } else if (old_sc.symbol && new_sc.symbol &&
613 (old_sc.symbol == new_sc.symbol)) {
618 if (old_sc.comp_unit && new_sc.comp_unit) {
620 new_sc.comp_unit->GetPrimaryFile()) {
622 if (old_sc.function && new_sc.function &&
623 (old_sc.function->GetName() == new_sc.function->GetName())) {
627 } else if (old_sc.symbol && new_sc.symbol) {
629 new_sc.symbol->GetMangled()) == 0) {
684 SymbolContext old_sc, new_sc;
691 new_loc_sp->GetAddress().CalculateSymbolContext(&new_sc)) {
693 SymbolContextsMightBeEquivalent(old_sc, new_sc);