HomeSort by relevance Sort by last modified time
    Searched defs:OSType (Results 1 - 21 of 21) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.h 34 AVRAsmBackend(Triple::OSType OSType)
35 : MCAsmBackend(support::little), OSType(OSType) {}
75 Triple::OSType OSType;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Nios2/MCTargetDesc/
Nios2AsmBackend.h 30 Triple::OSType OSType;
33 Nios2AsmBackend(const Target &T, Triple::OSType OSType)
34 : MCAsmBackend(support::little), OSType(OSType) {}
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.h 30 Triple::OSType OSType;
35 MipsAsmBackend(const Target &T, Triple::OSType OSType, bool IsLittle,
37 : MCAsmBackend(), OSType(OSType), IsLittle(IsLittle), Is64Bit(Is64Bit) {}
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCELFObjectWriter.h 18 const Triple::OSType OSType;
23 MCELFObjectTargetWriter(bool Is64Bit_, Triple::OSType OSType_,
31 Triple::OSType getOSType() { return OSType; }
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
StringSwitchTest.cpp 157 enum class OSType { Windows, Linux, Unknown };
160 return llvm::StringSwitch<OSType>(S)
162 OSType::Windows)
163 .Cases("linux", "unix", "*nix", "posix", OSType::Linux)
164 .Default(OSType::Unknown);
167 EXPECT_EQ(OSType::Windows, Translate(llvm::StringRef("wind\0ws", 7)));
168 EXPECT_EQ(OSType::Windows, Translate("win32"));
169 EXPECT_EQ(OSType::Windows, Translate("winnt"));
171 EXPECT_EQ(OSType::Linux, Translate("linux"));
172 EXPECT_EQ(OSType::Linux, Translate("unix"))
    [all...]
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 271 Triple::OSType OSType;
273 ELFSparcAsmBackend(const Target &T, Triple::OSType OSType) :
274 SparcAsmBackend(T), OSType(OSType) { }
294 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType);
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/MCTargetDesc/
MBlazeAsmBackend.cpp 44 MBlazeELFObjectWriter(Triple::OSType OSType)
45 : MCELFObjectTargetWriter(/*is64Bit*/ false, OSType, ELF::EM_MBLAZE,
109 Triple::OSType OSType;
110 ELFMBlazeAsmBackend(const Target &T, Triple::OSType _OSType)
111 : MBlazeAsmBackend(T), OSType(_OSType) { }
117 return createELFObjectWriter(new MBlazeELFObjectWriter(OSType), OS,
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 22 MipsELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine,
24 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine,
78 Triple::OSType OSType;
80 MipsEB_AsmBackend(const Target &T, Triple::OSType _OSType)
81 : MipsAsmBackend(T), OSType(_OSType) {}
89 return new MipsELFObjectWriter(false, OSType, ELF::EM_MIPS, false);
95 Triple::OSType OSType;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 280 Triple::OSType OSType;
282 ELFSparcAsmBackend(const Target &T, Triple::OSType OSType) :
283 SparcAsmBackend(T), OSType(OSType) { }
306 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(OSType);
  /external/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiAsmBackend.cpp 46 Triple::OSType OSType;
49 LanaiAsmBackend(const Target &T, Triple::OSType OST)
50 : MCAsmBackend(), OSType(OST) {}
127 MCELFObjectTargetWriter::getOSABI(OSType));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/MCTargetDesc/
LanaiAsmBackend.cpp 46 Triple::OSType OSType;
49 LanaiAsmBackend(const Target &T, Triple::OSType OST)
50 : MCAsmBackend(support::big), OSType(OST) {}
135 return createLanaiELFObjectWriter(MCELFObjectTargetWriter::getOSABI(OSType));
  /device/linaro/bootloader/edk2/BaseTools/Source/C/BootSectImage/
mbr.h 33 UINT8 OSType;
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 62 PPCELFObjectWriter(bool Is64Bit, Triple::OSType OSType, uint16_t EMachine,
64 : MCELFObjectTargetWriter(Is64Bit, OSType, EMachine, HasRelocationAddend) {}
147 Triple::OSType OSType;
149 ELFPPCAsmBackend(const Target &T, Triple::OSType OSType) :
150 PPCAsmBackend(T), OSType(OSType) { }
170 OSType,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 60 X86ELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine,
62 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, HasRelocationAddend) {}
313 Triple::OSType OSType;
314 ELFX86AsmBackend(const Target &T, Triple::OSType _OSType)
315 : X86AsmBackend(T), OSType(_OSType) {
327 ELFX86_32AsmBackend(const Target &T, Triple::OSType OSType)
328 : ELFX86AsmBackend(T, OSType) {}
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 34 ARMELFObjectWriter(Triple::OSType OSType)
35 : MCELFObjectTargetWriter(/*Is64Bit*/ false, OSType, ELF::EM_ARM,
398 Triple::OSType OSType;
400 Triple::OSType _OSType)
401 : ARMAsmBackend(T, TT), OSType(_OSType) { }
407 return createELFObjectWriter(new ARMELFObjectWriter(OSType), OS,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
macsupport.py 53 # OSType and ResType: 4-byte character strings
56 OSType = OSTypeType("OSType")
  /external/python/cpython2/Tools/bgen/bgen/
macsupport.py 53 # OSType and ResType: 4-byte character strings
56 OSType = OSTypeType("OSType")
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
Triple.h 80 enum OSType {
123 mutable OSType OS;
131 static OSType ParseOS(StringRef OSName);
179 OSType getOS() const {
304 void setOS(OSType Kind);
359 static const char *getOSTypeName(OSType Kind);
  /external/llvm/include/llvm/ADT/
Triple.h 140 enum OSType {
216 OSType OS;
271 OSType getOS() const { return OS; }
607 void setOS(OSType Kind);
705 static const char *getOSTypeName(OSType Kind);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
Triple.h 151 enum OSType {
233 OSType OS;
294 OSType getOS() const { return OS; }
702 void setOS(OSType Kind);
806 static StringRef getOSTypeName(OSType Kind);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Triple.h 144 enum OSType {
224 OSType OS;
279 OSType getOS() const { return OS; }
624 void setOS(OSType Kind);
722 static StringRef getOSTypeName(OSType Kind);

Completed in 1784 milliseconds