Searched refs:wasInserted (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DSymbolTable.cpp42 bool wasInserted; local
43 std::tie(s, wasInserted) = insert(name);
45 if (!wasInserted && isa<Defined>(s))
54 bool wasInserted; local
55 std::tie(s, wasInserted) = insert(name);
57 if (wasInserted)
66 bool wasInserted; local
67 std::tie(s, wasInserted) = insert(name);
69 if (wasInserted || isa<Undefined>(s))
77 bool wasInserted; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp500 bool wasInserted; local
501 std::tie(s, wasInserted) = insert(name, f);
502 if (wasInserted || (s->isLazy() && isWeakAlias)) {
514 bool wasInserted; local
515 std::tie(s, wasInserted) = insert(name);
516 if (wasInserted) {
529 bool wasInserted; local
530 std::tie(s, wasInserted) = insert(n, f);
531 if (wasInserted) {
611 bool wasInserted; local
626 bool wasInserted; local
641 bool wasInserted; local
655 bool wasInserted; local
669 bool wasInserted; local
685 bool wasInserted; local
697 bool wasInserted; local
712 bool wasInserted; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp1381 bool wasInserted; local
1382 std::tie(it, wasInserted) = symtab->soNames.try_emplace(soName, this);
1389 if (!wasInserted)

Completed in 125 milliseconds