Lines Matching refs:Key
134 Result.Key = HMAP_EmptyBucketKey;
142 Result.Key = getEndianAdjustedWord(BucketPtr->Key);
187 if (B.Key == HMAP_EmptyBucketKey) continue;
189 StringRef Key = getStringOrInvalid(B.Key);
192 llvm::dbgs() << " " << i << ". " << Key << " -> '" << Prefix << "' '"
208 if (B.Key == HMAP_EmptyBucketKey) return StringRef(); // Hash miss.
211 std::optional<StringRef> Key = getString(B.Key);
212 if (LLVM_UNLIKELY(!Key))
214 if (!Filename.equals_insensitive(*Key))
240 if (B.Key == HMAP_EmptyBucketKey)
243 std::optional<StringRef> Key = getString(B.Key);
246 if (LLVM_LIKELY(Key && Prefix && Suffix)) {
251 ReverseMap[Value] = *Key;
254 RetKey = *Key;