Lines Matching defs:KV
124 bool operator()(const orc::SymbolFlagsMap::value_type &KV) {
125 return flagsMatchCLOpts(KV.second);
130 bool operator()(const orc::SymbolMap::value_type &KV) {
131 return flagsMatchCLOpts(KV.second.getFlags());
174 raw_ostream &operator<<(raw_ostream &OS, const SymbolFlagsMap::value_type &KV) {
175 return OS << "(\"" << KV.first << "\", " << KV.second << ")";
178 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap::value_type &KV) {
179 return OS << "(\"" << KV.first << "\": " << KV.second << ")";
193 const SymbolDependenceMap::value_type &KV) {
194 return OS << "(" << KV.first->getName() << ", " << KV.second << ")";
241 const SymbolLookupSet::value_type &KV) {
242 return OS << "(" << KV.first << ", " << KV.second << ")";
258 for (auto &KV : llvm::drop_begin(SearchOrder)) {
259 assert(KV.first && "JITDylibList entries must not be null");
260 OS << ", (\"" << KV.first->getName() << "\", " << KV.second << ")";
269 for (auto &KV : Aliases)
270 OS << " " << *KV.first << ": " << KV.second.Aliasee << " "
271 << KV.second.AliasFlags;
297 for (auto &KV : SSP.Pool)
298 Vec.emplace_back(KV.first(), KV.second);