Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp487 StringRef RealizedPlatform = A->getPlatform()->getName(); in getRealizedPlatform() local
489 return RealizedPlatform; in getRealizedPlatform()
490 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getRealizedPlatform()
492 return RealizedPlatform.slice(0, suffix); in getRealizedPlatform()
493 return RealizedPlatform; in getRealizedPlatform()
591 StringRef *RealizedPlatform) const { in getAvailability()
594 RealizedPlatform); in getAvailability()
622 if (RealizedPlatform) in getAvailability()
623 *RealizedPlatform = Availability->getPlatform()->getName(); in getAvailability()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp287 StringRef RealizedPlatform; in DiagnoseObjCImplementedDeprecations() local
290 &RealizedPlatform); in DiagnoseObjCImplementedDeprecations()
295 if (RealizedPlatform.empty()) in DiagnoseObjCImplementedDeprecations()
296 RealizedPlatform = S.Context.getTargetInfo().getPlatformName(); in DiagnoseObjCImplementedDeprecations()
299 if (RealizedPlatform.endswith("_app_extension")) in DiagnoseObjCImplementedDeprecations()
H A DSemaDeclAttr.cpp7342 StringRef RealizedPlatform = ActualPlatform; in getAttrForPlatform() local
7344 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getAttrForPlatform()
7346 RealizedPlatform = RealizedPlatform.slice(0, suffix); in getAttrForPlatform()
7352 if (RealizedPlatform == TargetPlatform) in getAttrForPlatform()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclBase.h649 StringRef *RealizedPlatform = nullptr) const;