Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclBase.cpp534 StringRef RealizedPlatform = A->getPlatform()->getName(); in getRealizedPlatform() local
536 return RealizedPlatform; in getRealizedPlatform()
537 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getRealizedPlatform()
539 return RealizedPlatform.slice(0, suffix); in getRealizedPlatform()
540 return RealizedPlatform; in getRealizedPlatform()
638 StringRef *RealizedPlatform) const { in getAvailability()
641 RealizedPlatform); in getAvailability()
669 if (RealizedPlatform) in getAvailability()
670 *RealizedPlatform = Availability->getPlatform()->getName(); in getAvailability()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaAvailability.cpp38 StringRef RealizedPlatform = ActualPlatform; in getAttrForPlatform() local
40 size_t suffix = RealizedPlatform.rfind("_app_extension"); in getAttrForPlatform()
42 RealizedPlatform = RealizedPlatform.slice(0, suffix); in getAttrForPlatform()
48 if (RealizedPlatform == TargetPlatform) in getAttrForPlatform()
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()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclBase.h705 StringRef *RealizedPlatform = nullptr) const;