Home
last modified time | relevance | path

Searched refs:RealizedPlatform (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp629 StringRef RealizedPlatform = A->getPlatform()->getName(); in getRealizedPlatform() local
631 return RealizedPlatform; in getRealizedPlatform()
632 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getRealizedPlatform()
634 return RealizedPlatform.slice(0, suffix); in getRealizedPlatform()
635 return RealizedPlatform; in getRealizedPlatform()
750 StringRef *RealizedPlatform) const { in getAvailability()
753 RealizedPlatform); in getAvailability()
781 if (RealizedPlatform) in getAvailability()
782 *RealizedPlatform = Availability->getPlatform()->getName(); in getAvailability()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp62 StringRef RealizedPlatform = ActualPlatform; in getAttrForPlatform() local
64 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getAttrForPlatform()
66 RealizedPlatform = RealizedPlatform.slice(0, suffix); in getAttrForPlatform()
72 if (RealizedPlatform == TargetPlatform) { in getAttrForPlatform()
H A DSemaDeclObjC.cpp294 StringRef RealizedPlatform; in DiagnoseObjCImplementedDeprecations() local
297 &RealizedPlatform); in DiagnoseObjCImplementedDeprecations()
302 if (RealizedPlatform.empty()) in DiagnoseObjCImplementedDeprecations()
303 RealizedPlatform = S.Context.getTargetInfo().getPlatformName(); in DiagnoseObjCImplementedDeprecations()
306 if (RealizedPlatform.ends_with("_app_extension")) in DiagnoseObjCImplementedDeprecations()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h740 StringRef *RealizedPlatform = nullptr) const;