OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PlatformKind
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/TextAPI/
Platform.cpp
21
PlatformKind
mapToPlatformKind(
PlatformKind
Platform, bool WantSim) {
25
case
PlatformKind
::iOS:
26
return WantSim ?
PlatformKind
::iOSSimulator :
PlatformKind
::iOS;
27
case
PlatformKind
::tvOS:
28
return WantSim ?
PlatformKind
::tvOSSimulator :
PlatformKind
::tvOS;
29
case
PlatformKind
::watchOS:
30
return WantSim ?
PlatformKind
::watchOSSimulator : PlatformKind::watchOS
[
all
...]
Target.cpp
25
PlatformKind
Platform;
26
Platform = StringSwitch<
PlatformKind
>(PlatformStr)
27
.Case("macos",
PlatformKind
::macOS)
28
.Case("ios",
PlatformKind
::iOS)
29
.Case("tvos",
PlatformKind
::tvOS)
30
.Case("watchos",
PlatformKind
::watchOS)
31
.Case("bridgeos",
PlatformKind
::bridgeOS)
32
.Case("maccatalyst",
PlatformKind
::macCatalyst)
33
.Case("ios-simulator",
PlatformKind
::iOSSimulator)
34
.Case("tvos-simulator",
PlatformKind
::tvOSSimulator
[
all
...]
TextStubCommon.cpp
52
if (Ctx && Ctx->FileKind == TBD_V3 && Values.count(
PlatformKind
::macOS) &&
53
Values.count(
PlatformKind
::macCatalyst)) {
63
case
PlatformKind
::macOS:
66
case
PlatformKind
::iOSSimulator:
68
case
PlatformKind
::iOS:
71
case
PlatformKind
::watchOSSimulator:
73
case
PlatformKind
::watchOS:
76
case
PlatformKind
::tvOSSimulator:
78
case
PlatformKind
::tvOS:
81
case
PlatformKind
::bridgeOS
[
all
...]
TextStub.cpp
383
case
PlatformKind
::macOS:
386
case
PlatformKind
::iOS:
389
case
PlatformKind
::tvOS:
392
case
PlatformKind
::watchOS:
395
case
PlatformKind
::bridgeOS:
398
case
PlatformKind
::macCatalyst:
401
case
PlatformKind
::iOSSimulator:
404
case
PlatformKind
::tvOSSimulator:
407
case
PlatformKind
::watchOSSimulator:
410
case
PlatformKind
::driverKit
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
Platform.h
22
enum class
PlatformKind
: unsigned {
36
using PlatformSet = SmallSet<
PlatformKind
, 3>;
38
PlatformKind
mapToPlatformKind(
PlatformKind
Platform, bool WantSim);
39
PlatformKind
mapToPlatformKind(const Triple &Target);
41
StringRef getPlatformName(
PlatformKind
Platform);
42
PlatformKind
getPlatformFromName(StringRef Name);
Target.h
27
Target(Architecture Arch,
PlatformKind
Platform)
37
PlatformKind
Platform;
/src/external/apache2/llvm/dist/llvm/tools/llvm-ifs/
llvm-ifs.cpp
210
[](const llvm::Triple &T) -> llvm::Expected<llvm::MachO::
PlatformKind
> {
212
return llvm::MachO::
PlatformKind
::macOS;
214
return llvm::MachO::
PlatformKind
::tvOS;
216
return llvm::MachO::
PlatformKind
::watchOS;
220
return llvm::MachO::
PlatformKind
::iOS;
224
return llvm::MachO::
PlatformKind
::macOS;
232
PlatformKind
Plat = PlatformKindOrError.get();
/src/external/apache2/llvm/dist/llvm/lib/Object/
TapiFile.cpp
53
if (interface.getPlatforms().count(
PlatformKind
::macOS) &&
Completed in 78 milliseconds
Indexes created Wed Jun 17 00:25:26 UTC 2026