Lines Matching defs:new_sc
601 SymbolContext &new_sc) {
604 if (old_sc.module_sp.get() == new_sc.module_sp.get()) {
607 if (old_sc.comp_unit && new_sc.comp_unit &&
608 (old_sc.comp_unit == new_sc.comp_unit)) {
609 if (old_sc.function && new_sc.function &&
610 (old_sc.function == new_sc.function)) {
613 } else if (old_sc.symbol && new_sc.symbol &&
614 (old_sc.symbol == new_sc.symbol)) {
619 if (old_sc.comp_unit && new_sc.comp_unit) {
621 new_sc.comp_unit->GetPrimaryFile()) {
623 if (old_sc.function && new_sc.function &&
624 (old_sc.function->GetName() == new_sc.function->GetName())) {
628 } else if (old_sc.symbol && new_sc.symbol) {
630 new_sc.symbol->GetMangled()) == 0) {
685 SymbolContext old_sc, new_sc;
692 new_loc_sp->GetAddress().CalculateSymbolContext(&new_sc)) {
694 SymbolContextsMightBeEquivalent(old_sc, new_sc);