/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SymbolRewriter.cpp | 298 Key = dyn_cast<yaml::ScalarNode>(Entry.getKey()); in parseEntry() 300 YS.printError(Entry.getKey(), "rewrite type must be a scalar"); in parseEntry() 318 YS.printError(Entry.getKey(), "unknown rewrite type"); in parseEntry() 338 Key = dyn_cast<yaml::ScalarNode>(Field.getKey()); in parseRewriteFunctionDescriptor() 340 YS.printError(Field.getKey(), "descriptor key must be a scalar"); in parseRewriteFunctionDescriptor() 356 YS.printError(Field.getKey(), "invalid regex: " + Error); in parseRewriteFunctionDescriptor() 369 YS.printError(Field.getKey(), "unknown key for function"); in parseRewriteFunctionDescriptor() 407 Key = dyn_cast<yaml::ScalarNode>(Field.getKey()); in parseRewriteGlobalVariableDescriptor() 409 YS.printError(Field.getKey(), "descriptor Key must be a scalar"); in parseRewriteGlobalVariableDescriptor() 425 YS.printError(Field.getKey(), "invalid regex: " + Error); in parseRewriteGlobalVariableDescriptor() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGPointerAuth.cpp | 88 return CGPointerAuthInfo(Schema.getKey(), Schema.getAuthenticationMode(), in getFunctionPointerAuthInfo() 123 return CGPointerAuthInfo(Schema.getKey(), Schema.getAuthenticationMode(), in EmitPointerAuthInfo() 181 return Left.getKey() == Right.getKey() && in equalAuthPolicies() 209 auto *CurKey = Builder.getInt32(CurAuth.getKey()); in emitPointerAuthResignCall() 210 auto *NewKey = Builder.getInt32(NewAuth.getKey()); in emitPointerAuthResignCall() 333 return getConstantSignedPointer(Pointer, Schema.getKey(), StorageAddress, in getConstantSignedPointer() 347 Pointer, PointerAuth.getKey(), /*StorageAddress=*/nullptr, in getFunctionPointer() 379 return CGPointerAuthInfo(Schema.getKey(), Schema.getAuthenticationMode(), in getMemberFunctionPointerAuthInfo() 388 Pointer, PointerAuth.getKey(), nullptr, in getMemberFunctionPointer() 410 unsigned Key = DefaultAuthentication.getKey(); in computeVTPointerAuthentication() [all …]
|
H A D | CGPointerAuthInfo.h | 53 unsigned getKey() const { in getKey() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugCrossImpSubsection.cpp | 82 return Strings.getIdForString(L1->getKey()) < in commit() 83 Strings.getIdForString(L2->getKey()); in commit() 88 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); in commit()
|
H A D | DebugStringTableSubsection.cpp | 53 IdToString.insert({P.first->getValue(), P.first->getKey()}); in insert() 73 StringRef S = Pair.getKey(); in commit()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/ |
H A D | StringPool.h |
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | AssumeBundleQueries.cpp | 54 if (BOI.Tag->getKey() != AttrName) in hasAttributeInAssume() 73 nullptr, Attribute::getAttrKindFromName(Bundles.Tag->getKey())}; in fillMapFromAssume() 105 Result.AttrKind = Attribute::getAttrKindFromName(BOI.Tag->getKey()); in getKnowledgeFromBundle() 131 return BOI.Tag->getKey() != IgnoreBundleTag;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | ScopedHashTable.h | 55 const K &getKey() const { return Key; } in getKey() function 243 assert(HT.TopLevelMap[ThisEntry->getKey()] == ThisEntry && in ~ScopedHashTableScope() 245 HT.TopLevelMap.erase(ThisEntry->getKey()); in ~ScopedHashTableScope() 247 ScopedHashTableVal<K, V> *&KeyEntry = HT.TopLevelMap[ThisEntry->getKey()]; in ~ScopedHashTableScope()
|
H A D | StringMap.h | 176 static_cast<MapEntryTy *>(Bucket)->getKey(), getAllocator(), in StringMap() 280 return count(MapEntry.getKey()); in count() 289 auto FindInRHS = RHS.find(KeyValue.getKey()); 309 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert() 529 StringRef operator*() const { return this->wrapped()->getKey(); }
|
H A D | ConcurrentHashtable.h | 88 static inline const KeyTy &getKey(const KeyDataTy &KeyData) { 89 return KeyData.getKey(); in getKey() function 208 if (Info::isEqual(Info::getKey(*EntryData), NewValue)) { in insert()
|
H A D | StringSet.h | 51 return insert(mapEntry.getKey()); in insert()
|
H A D | ImmutableMap.h | 162 key_type_ref getKey() const { return (*this)->first; } in getKey() function 292 key_type_ref getKey() const { return (*this)->first; } in getKey() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVStringPool.h | 71 return (Index >= Entries.size()) ? StringRef() : Entries[Index]->getKey(); in getString() 79 << "Key: '" << Entry->getKey() << "'\n"; in print()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Testing/ADT/ |
H A D | StringMapEntry.h | 34 OS << "{\"" << E.getKey().data() << "\": "; 77 if (!KeyMatcher.MatchAndExplain(Entry.getKey().data(), &KeyListener)) {
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | CombinerUtils.cpp | 20 return It->getKey(); in insertStrRef()
|
/freebsd/contrib/llvm-project/clang/lib/Testing/ |
H A D | TestAST.cpp | 116 Extra.getKey(), /*ModificationTime=*/0, in TestAST() 117 llvm::MemoryBuffer::getMemBufferCopy(Extra.getValue(), Extra.getKey())); in TestAST()
|
/freebsd/contrib/wpa/src/eap_server/ |
H A D | eap_server_tls.c | 443 eap->getKey = eap_tls_getKey; in eap_server_tls_register() 470 eap->getKey = eap_tls_getKey; in eap_server_unauth_tls_register() 497 eap->getKey = eap_tls_getKey; in eap_server_wfa_unauth_tls_register()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | NonRelocatableStringpool.cpp | 30 return InsertResult.first->getKey(); in internString()
|
/freebsd/contrib/wpa/src/eap_peer/ |
H A D | eap_tls.c | 444 eap->getKey = eap_tls_getKey; in eap_peer_tls_register() 471 eap->getKey = eap_tls_getKey; in eap_peer_unauth_tls_register() 499 eap->getKey = eap_tls_getKey; in eap_peer_wfa_unauth_tls_register()
|
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
H A D | StringEntryToDwarfStringPoolEntryMap.h | 36 DataPtr->String = String->getKey(); in add()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | PassTimingInfo.cpp | 226 StringRef PassID = I.getKey(); in dump() 236 StringRef PassID = I.getKey(); in dump()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | SourceManagerInternals.h | 105 return FilenamesByID[ID]->getKey(); in getFilename()
|
H A D | PointerAuthOptions.h | 141 unsigned getKey() const { in getKey() function
|
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/ |
H A D | DiagnosticBuilderWrappers.cpp | 104 OS << LibAttr.getKey() << " [ " << LibAttr.getValue() << " ]"; in operator <<()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | OptRSTEmitter.cpp | 47 std::string GroupName = KV.getKey().upper(); in EmitOptRST()
|