Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
DDeclBase.cpp520 StringRef RealizedPlatform = A->getPlatform()->getName(); in getRealizedPlatform() local
522 return RealizedPlatform; in getRealizedPlatform()
523 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getRealizedPlatform()
525 return RealizedPlatform.slice(0, suffix); in getRealizedPlatform()
526 return RealizedPlatform; in getRealizedPlatform()
624 StringRef *RealizedPlatform) const { in getAvailability()
627 RealizedPlatform); in getAvailability()
655 if (RealizedPlatform) in getAvailability()
656 *RealizedPlatform = Availability->getPlatform()->getName(); in getAvailability()
/external/llvm-project/clang/lib/Sema/
DSemaAvailability.cpp37 StringRef RealizedPlatform = ActualPlatform; in getAttrForPlatform() local
39 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getAttrForPlatform()
41 RealizedPlatform = RealizedPlatform.slice(0, suffix); in getAttrForPlatform()
47 if (RealizedPlatform == TargetPlatform) in getAttrForPlatform()
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()
/external/clang/lib/AST/
DDeclBase.cpp414 StringRef RealizedPlatform = ActualPlatform; in CheckAvailability() local
416 size_t suffix = RealizedPlatform.rfind("_app_extension"); in CheckAvailability()
418 RealizedPlatform = RealizedPlatform.slice(0, suffix); in CheckAvailability()
424 if (RealizedPlatform != TargetPlatform) in CheckAvailability()
/external/clang/lib/Sema/
DSemaDeclAttr.cpp6232 StringRef RealizedPlatform = ActualPlatform; in getAttrForPlatform() local
6234 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getAttrForPlatform()
6236 RealizedPlatform = RealizedPlatform.slice(0, suffix); in getAttrForPlatform()
6242 if (RealizedPlatform == TargetPlatform) in getAttrForPlatform()
/external/llvm-project/clang/include/clang/AST/
DDeclBase.h670 StringRef *RealizedPlatform = nullptr) const;