Home
last modified time | relevance | path

Searched refs:OSType (Results 1 – 25 of 80) sorted by relevance

1234

/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DStringSwitchTest.cpp157 enum class OSType { Windows, Linux, Unknown }; in TEST() enum
160 return llvm::StringSwitch<OSType>(S) in TEST()
162 OSType::Windows) in TEST()
163 .Cases("linux", "unix", "*nix", "posix", OSType::Linux) in TEST()
164 .Default(OSType::Unknown); in TEST()
167 EXPECT_EQ(OSType::Windows, Translate(llvm::StringRef("wind\0ws", 7))); in TEST()
168 EXPECT_EQ(OSType::Windows, Translate("win32")); in TEST()
169 EXPECT_EQ(OSType::Windows, Translate("winnt")); in TEST()
171 EXPECT_EQ(OSType::Linux, Translate("linux")); in TEST()
172 EXPECT_EQ(OSType::Linux, Translate("unix")); in TEST()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
DMipsAsmBackend.cpp22 MipsELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine, in MipsELFObjectWriter() argument
24 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, in MipsELFObjectWriter()
78 Triple::OSType OSType; member in __anon3a4bb5ec0111::MipsEB_AsmBackend
80 MipsEB_AsmBackend(const Target &T, Triple::OSType _OSType) in MipsEB_AsmBackend()
81 : MipsAsmBackend(T), OSType(_OSType) {} in MipsEB_AsmBackend()
89 return new MipsELFObjectWriter(false, OSType, ELF::EM_MIPS, false); in createELFObjectTargetWriter()
95 Triple::OSType OSType; member in __anon3a4bb5ec0111::MipsEL_AsmBackend
97 MipsEL_AsmBackend(const Target &T, Triple::OSType _OSType) in MipsEL_AsmBackend()
98 : MipsAsmBackend(T), OSType(_OSType) {} in MipsEL_AsmBackend()
106 return new MipsELFObjectWriter(false, OSType, ELF::EM_MIPS, false); in createELFObjectTargetWriter()
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
DPPCAsmBackend.cpp62 PPCELFObjectWriter(bool Is64Bit, Triple::OSType OSType, uint16_t EMachine, in PPCELFObjectWriter() argument
64 : MCELFObjectTargetWriter(Is64Bit, OSType, EMachine, HasRelocationAddend) {} in PPCELFObjectWriter()
147 Triple::OSType OSType; member in __anonc69f693d0211::ELFPPCAsmBackend
149 ELFPPCAsmBackend(const Target &T, Triple::OSType OSType) : in ELFPPCAsmBackend() argument
150 PPCAsmBackend(T), OSType(OSType) { } in ELFPPCAsmBackend()
170 OSType, in createObjectWriter()
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/
DMBlazeAsmBackend.cpp44 MBlazeELFObjectWriter(Triple::OSType OSType) in MBlazeELFObjectWriter() argument
45 : MCELFObjectTargetWriter(/*is64Bit*/ false, OSType, ELF::EM_MBLAZE, in MBlazeELFObjectWriter()
109 Triple::OSType OSType; member in __anone269c0700211::ELFMBlazeAsmBackend
110 ELFMBlazeAsmBackend(const Target &T, Triple::OSType _OSType) in ELFMBlazeAsmBackend()
111 : MBlazeAsmBackend(T), OSType(_OSType) { } in ELFMBlazeAsmBackend()
117 return createELFObjectWriter(new MBlazeELFObjectWriter(OSType), OS, in createObjectWriter()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Nios2/MCTargetDesc/
DNios2AsmBackend.h30 Triple::OSType OSType; variable
33 Nios2AsmBackend(const Target &T, Triple::OSType OSType) in Nios2AsmBackend() argument
34 : MCAsmBackend(support::little), OSType(OSType) {} in Nios2AsmBackend()
/external/llvm/lib/Target/Mips/MCTargetDesc/
DMipsAsmBackend.h30 Triple::OSType OSType; variable
35 MipsAsmBackend(const Target &T, Triple::OSType OSType, bool IsLittle, in MipsAsmBackend() argument
37 : MCAsmBackend(), OSType(OSType), IsLittle(IsLittle), Is64Bit(Is64Bit) {} in MipsAsmBackend()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
DAVRAsmBackend.h34 AVRAsmBackend(Triple::OSType OSType) in AVRAsmBackend() argument
35 : MCAsmBackend(support::little), OSType(OSType) {} in AVRAsmBackend()
75 Triple::OSType OSType;
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCELFObjectWriter.h18 const Triple::OSType OSType; variable
23 MCELFObjectTargetWriter(bool Is64Bit_, Triple::OSType OSType_,
31 Triple::OSType getOSType() { return OSType; } in getOSType()
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
DX86AsmBackend.cpp60 X86ELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine, in X86ELFObjectWriter() argument
62 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, HasRelocationAddend) {} in X86ELFObjectWriter()
313 Triple::OSType OSType; member in __anond24f24860211::ELFX86AsmBackend
314 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType) in ELFX86AsmBackend()
315 : X86AsmBackend(T), OSType(_OSType) { in ELFX86AsmBackend()
327 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType) in ELFX86_32AsmBackend() argument
328 : ELFX86AsmBackend(T, OSType) {} in ELFX86_32AsmBackend()
336 return new X86ELFObjectWriter(false, OSType, ELF::EM_386, false); in createELFObjectTargetWriter()
342 ELFX86_64AsmBackend(const Target &T, Triple::OSType OSType) in ELFX86_64AsmBackend() argument
343 : ELFX86AsmBackend(T, OSType) {} in ELFX86_64AsmBackend()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/MCTargetDesc/
DSparcAsmBackend.cpp280 Triple::OSType OSType; member in __anon16460bb80111::ELFSparcAsmBackend
282 ELFSparcAsmBackend(const Target &T, Triple::OSType OSType) : in ELFSparcAsmBackend() argument
283 SparcAsmBackend(T), OSType(OSType) { } in ELFSparcAsmBackend()
306 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType); in createObjectTargetWriter()
/external/llvm/lib/Target/Sparc/MCTargetDesc/
DSparcAsmBackend.cpp271 Triple::OSType OSType; member in __anonb6f0ad600111::ELFSparcAsmBackend
273 ELFSparcAsmBackend(const Target &T, Triple::OSType OSType) : in ELFSparcAsmBackend() argument
274 SparcAsmBackend(T), OSType(OSType) { } in ELFSparcAsmBackend()
294 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType); in createObjectWriter()
/external/python/cpython2/Mac/Modules/folder/
D_Foldermodule.c28 OSType folderType; in Folder_FindFolder()
54 OSType folderType; in Folder_ReleaseFolder()
72 OSType folderType; in Folder_FSFindFolder()
98 OSType badgeSignature; in Folder_AddFolderDescriptor()
99 OSType badgeType; in Folder_AddFolderDescriptor()
167 OSType foldType; in Folder_GetFolderName()
189 OSType fileType; in Folder_AddFolderRouting()
216 OSType fileType; in Folder_RemoveFolderRouting()
234 OSType fileType; in Folder_FindFolderRouting()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DTriple.h80 enum OSType { enum
123 mutable OSType OS;
131 static OSType ParseOS(StringRef OSName);
179 OSType getOS() const { in getOS()
304 void setOS(OSType Kind);
359 static const char *getOSTypeName(OSType Kind);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/MCTargetDesc/
DLanaiAsmBackend.cpp46 Triple::OSType OSType; member in __anon8a54c6100111::LanaiAsmBackend
49 LanaiAsmBackend(const Target &T, Triple::OSType OST) in LanaiAsmBackend()
50 : MCAsmBackend(support::big), OSType(OST) {} in LanaiAsmBackend()
135 return createLanaiELFObjectWriter(MCELFObjectTargetWriter::getOSABI(OSType)); in createObjectTargetWriter()
/external/llvm/lib/Target/Lanai/MCTargetDesc/
DLanaiAsmBackend.cpp46 Triple::OSType OSType; member in __anon2aff67b80111::LanaiAsmBackend
49 LanaiAsmBackend(const Target &T, Triple::OSType OST) in LanaiAsmBackend()
50 : MCAsmBackend(), OSType(OST) {} in LanaiAsmBackend()
127 MCELFObjectTargetWriter::getOSABI(OSType)); in createObjectWriter()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
DARMAsmBackend.cpp34 ARMELFObjectWriter(Triple::OSType OSType) in ARMELFObjectWriter() argument
35 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSType, ELF::EM_ARM, in ARMELFObjectWriter()
398 Triple::OSType OSType; member in __anon586449fa0211::ELFARMAsmBackend
400 Triple::OSType _OSType) in ELFARMAsmBackend()
401 : ARMAsmBackend(T, TT), OSType(_OSType) { } in ELFARMAsmBackend()
407 return createELFObjectWriter(new ARMELFObjectWriter(OSType), OS, in createObjectWriter()
/external/python/cpython2/Mac/Modules/menu/
Dmenuedit.py111 (OSType, 'inPropertyCreator', InMode),
112 (OSType, 'inPropertyTag', InMode),
120 (OSType, 'inPropertyCreator', InMode),
121 (OSType, 'inPropertyTag', InMode),
/external/swiftshader/third_party/LLVM/lib/MC/
DMCELFObjectTargetWriter.cpp15 Triple::OSType OSType_, in MCELFObjectTargetWriter()
18 : OSType(OSType_), EMachine(EMachine_), in MCELFObjectTargetWriter()
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h67 static uint8_t getOSABI(Triple::OSType OSType) { in getOSABI() argument
68 switch (OSType) { in getOSABI()
/external/python/cpython2/Mac/Modules/icn/
D_Icnmodule.c675 OSType iconType; in Icn_SetIconFamilyData()
699 OSType iconType; in Icn_GetIconFamilyData()
802 OSType creator; in Icn_GetIconRef()
803 OSType iconType; in Icn_GetIconRef()
859 OSType creator; in Icn_RegisterIconRefFromIconFamily()
860 OSType iconType; in Icn_RegisterIconRefFromIconFamily()
885 OSType creator; in Icn_RegisterIconRefFromResource()
886 OSType iconType; in Icn_RegisterIconRefFromResource()
914 OSType creator; in Icn_RegisterIconRefFromFSRef()
915 OSType iconType; in Icn_RegisterIconRefFromFSRef()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCELFObjectWriter.h72 static uint8_t getOSABI(Triple::OSType OSType) { in getOSABI() argument
73 switch (OSType) { in getOSABI()
/external/llvm/include/llvm/ADT/
DTriple.h140 enum OSType { enum
216 OSType OS;
271 OSType getOS() const { return OS; } in getOS()
607 void setOS(OSType Kind);
705 static const char *getOSTypeName(OSType Kind);
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DTriple.h144 enum OSType { enum
224 OSType OS;
279 OSType getOS() const { return OS; } in getOS()
624 void setOS(OSType Kind);
722 static StringRef getOSTypeName(OSType Kind);
/external/python/cpython2/Mac/Modules/ctl/
Dctlsupport.py62 DataBrowserViewStyle = OSType
72 DataBrowserPropertyPart = OSType
78 DataBrowserPropertyType = OSType
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DTriple.h151 enum OSType { enum
233 OSType OS;
294 OSType getOS() const { return OS; } in getOS()
702 void setOS(OSType Kind);
806 static StringRef getOSTypeName(OSType Kind);

1234