Lines Matching defs:existing
173 StringRef existing = pair.first->second;
174 if (existing != to)
175 warn(s + ": already merged into " + existing);
732 Export *existing = pair.first->second.first;
733 if (e == *existing || e.name != existing->name)
735 // If the existing export comes from .OBJ directives, we are allowed to
738 if (existing->source == ExportSource::Directives) {
739 *existing = e;
743 if (existing->source == e.source) {
744 warn(Twine("duplicate ") + exportSourceName(existing->source) +
748 Twine(" first seen in " + exportSourceName(existing->source) +
779 std::pair<StringRef, InputFile *> existing = ctx.config.mustMatch[k];
780 if (!existing.first.empty() && v != existing.first) {
783 existing.second ? toString(existing.second) : "cmd-line";
785 existingStr + " has value " + existing.first + "\n>>> " + sourceStr +