Home
last modified time | relevance | path

Searched defs:Type (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Ddelayed-template-parsing.cpp5 struct Type { struct
7 void Foo() {} in Foo()
9 void Foo<0>() {} in Foo()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/
H A DMCELFObjectWriter.h82 uint8_t getRType(uint32_t Type) const { in getRType()
85 uint8_t getRType2(uint32_t Type) const { in getRType2()
88 uint8_t getRType3(uint32_t Type) const { in getRType3()
91 uint8_t getRSsym(uint32_t Type) const { in getRSsym()
96 unsigned setRType(unsigned Value, unsigned Type) const { in setRType()
99 unsigned setRType2(unsigned Value, unsigned Type) const { in setRType2()
102 unsigned setRType3(unsigned Value, unsigned Type) const { in setRType3()
105 unsigned setRSsym(unsigned Value, unsigned Type) const { in setRSsym()
/minix3/external/bsd/llvm/dist/clang/lib/Driver/
H A DAction.cpp59 types::ID Type) in JobAction()
62 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) in JobAction()
110 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) in LinkJobAction()
116 LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) in LipoJobAction()
122 DsymutilJobAction::DsymutilJobAction(ActionList &Inputs, types::ID Type) in DsymutilJobAction()
129 std::unique_ptr<Action> Input, types::ID Type) in VerifyJobAction()
136 types::ID Type) in VerifyJobAction()
145 std::unique_ptr<Action> Input, types::ID Type) in VerifyDebugInfoJobAction()
151 types::ID Type) in VerifyPCHJobAction()
/minix3/external/bsd/llvm/dist/clang/test/Parser/
H A Dms-if-exists.cpp5 typedef int Type; typedef in MayExist
36 __if_exists(MayExist::Type) { in __if_exists()
44 __if_not_exists(MayExist::Type) { in __if_not_exists()
82 __if_exists(MayExist::Type) { in __if_exists()
94 __if_not_exists(MayExist::Type) { in __if_not_exists()
H A Dms-if-exists.c4 struct Type { struct
35 __if_exists(Type) { in __if_exists() argument
43 __if_not_exists(Type) { in __if_not_exists() argument
H A Dcxx-decl.cpp7 struct Type { struct
8 int Type; member
52 int Type : fooenum; member
56 int Type; in test() local
/minix3/external/bsd/llvm/dist/llvm/lib/Object/
H A DSymbolicFile.cpp22 SymbolicFile::SymbolicFile(unsigned int Type, MemoryBufferRef Source) in SymbolicFile()
28 MemoryBufferRef Object, sys::fs::file_magic Type, LLVMContext *Context) { in createSymbolicFile()
H A DBinary.cpp30 Binary::Binary(unsigned int Type, MemoryBufferRef Source) in Binary()
41 sys::fs::file_magic Type = sys::fs::identify_magic(Buffer.getBuffer()); in createBinary() local
H A DObjectFile.cpp28 ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source) in ObjectFile()
51 ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) { in createObjectFile()
/minix3/minix/drivers/power/acpi/namespace/
H A Dnssearch.c101 ACPI_OBJECT_TYPE Type, in AcpiNsSearchOneScope()
204 ACPI_OBJECT_TYPE Type, in AcpiNsSearchParentTree()
299 ACPI_OBJECT_TYPE Type, in AcpiNsSearchAndEnter()
H A Dnswalk.c113 ACPI_OBJECT_TYPE Type, in AcpiNsGetNextNodeTyped()
191 ACPI_OBJECT_TYPE Type, in AcpiNsWalkNamespace()
/minix3/minix/drivers/power/acpi/dispatcher/
H A Ddsmthdat.c272 UINT8 Type, in AcpiDsMethodDataGetNode()
344 UINT8 Type, in AcpiDsMethodDataSetValue()
403 UINT8 Type, in AcpiDsMethodDataGetValue()
516 UINT8 Type, in AcpiDsMethodDataDeleteValue()
582 UINT8 Type, in AcpiDsStoreObjectToLocal()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DInheritViz.cpp46 void WriteGraph(QualType Type) { in WriteGraph()
63 void InheritanceHierarchyWriter::WriteNode(QualType Type, bool FromVirtual) { in WriteNode()
125 InheritanceHierarchyWriter::WriteNodeReference(QualType Type, in WriteNodeReference()
/minix3/minix/drivers/power/acpi/utilities/
H A Dutdecode.c248 ACPI_OBJECT_TYPE Type) in AcpiUtGetTypeName()
542 ACPI_OBJECT_TYPE Type) in AcpiUtGetNotifyName()
608 ACPI_OBJECT_TYPE Type) in AcpiUtValidObjectType()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticOptions.h41 #define ENUM_DIAGOPT(Name, Type, Bits, Default) argument
48 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits; argument
69 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \ argument
76 #define ENUM_DIAGOPT(Name, Type, Bits, Default) set##Name(Default); in DiagnosticOptions() argument
/minix3/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMipsRegisterInfo.h25 class Type; variable
/minix3/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstantFold.h27 class Type; variable
/minix3/external/bsd/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go34 Type struct { struct
35 C C.LLVMTypeRef
74 func (c Type) IsNil() bool { return c.C == nil }
84 func llvmTypeRefPtr(t *Type) *C.LLVMTypeRef { return (*C.LLVMTypeRef)(unsafe.Pointer(t)) }
469 func (t Type) TypeKind() TypeKind { return TypeKind(C.LLVMGetTypeKind(t.C)) }
472 func (t Type) Context() (c Context) {
499 func (t Type) IntTypeWidth() int {
517 func FunctionType(returnType Type, paramTypes []Type, isVarArg bool) (t Type) {
531 func (t Type) IsFunctionVarArg() bool { return C.LLVMIsFunctionVarArg(t.C) != 0 }
532 func (t Type) ReturnType() (rt Type) { rt.C = C.LLVMGetReturnType(t.C); return }
[all …]
/minix3/external/bsd/llvm/dist/llvm/lib/DebugInfo/
H A DSyntaxHighlighting.cpp21 WithColor::WithColor(llvm::raw_ostream &OS, enum HighlightColor Type) : OS(OS) { in WithColor()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Target/
H A DTargetIntrinsicInfo.h24 class Type; variable
/minix3/external/bsd/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp92 unsigned Type = MachO::GENERIC_RELOC_VANILLA; in getRelocType() local
150 const unsigned IsExtern, const unsigned Type) { in makeRelocationInfo()
166 const uint32_t Addr, const unsigned Type, in makeScatteredRelocationInfo()
200 const unsigned Type = getRelocType(Target, FK, IsPCRel); in RecordScatteredRelocation() local
335 unsigned Type = RelocType; in RecordPPCRelocation() local
/minix3/external/bsd/libc++/dist/libcxx/test/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp25 struct Type struct
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/function.objects/func.require/
H A Dinvoke.pass.cpp25 struct Type struct
/minix3/external/bsd/llvm/dist/llvm/lib/MC/
H A DMCELF.cpp36 void MCELF::SetType(MCSymbolData &SD, unsigned Type) { in SetType()
47 uint32_t Type = (SD.getFlags() & (0xf << ELF_STT_Shift)) >> ELF_STT_Shift; in GetType() local
/minix3/external/bsd/llvm/dist/clang/lib/Basic/
H A DLangOptions.cpp19 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default); in LangOptions() argument
26 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ in resetNonModularOptions() argument

12345678910>>...13