Home
last modified time | relevance | path

Searched refs:VoidType (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/libc/spec/
H A Dgnu_ext.td25 RetValSpec<VoidType>,
77 RetValSpec<VoidType>,
H A Dspec.td40 def VoidType : NamedType<"void">;
52 def VoidPtr : PtrType<VoidType>;
70 def VoidRestrictedPtr : RestrictedPtrType<VoidType>;
H A Dstdc.td493 RetValSpec<VoidType>,
600 FunctionSpec<"abort", RetValSpec<NoReturn>, [ArgSpec<VoidType>]>,
617 …FunctionSpec<"qsort", RetValSpec<VoidType>, [ArgSpec<VoidPtr>, ArgSpec<SizeTType>, ArgSpec<SizeTTy…
631 FunctionSpec<"free", RetValSpec<VoidType>, [ArgSpec<VoidPtr>]>,
721 RetValSpec<VoidType>,
736 RetValSpec<VoidType>,
775 ArgSpec<VoidType>,
817 [ArgSpec<VoidType>]
H A Dllvm_libc_ext.td10 RetValSpec<VoidType>,
H A Dposix.td481 [ArgSpec<VoidType>]
579 RetValSpec<VoidType>,
584 RetValSpec<VoidType>,
/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dproperties.mm128 extern void* VoidType;
129 extern decltype(TestNonTrivialObj.p1 = NonTrivial1())* VoidType;
130 extern decltype(TestNonTrivialObj.p2 = NonTrivial2())* VoidType;
/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Daddress.h52 using VoidType = cpp::ConditionalType<!IS_WRITE, const void, void>; member
54 Address(VoidType *ptr) : ptr_(reinterpret_cast<PointeeType *>(ptr)) {} in Address()
/llvm-project-15.0.7/llvm/unittests/IR/
H A DFunctionTest.cpp142 Type *VoidType(Type::getVoidTy(Context)); in TEST() local
143 FunctionType *FuncType(FunctionType::get(VoidType, false)); in TEST()
H A DConstantsTest.cpp505 Type *VoidType(Type::getVoidTy(Context)); in foldFuncPtrAndConstToNull() local
506 FunctionType *FuncType(FunctionType::get(VoidType, false)); in foldFuncPtrAndConstToNull()
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir_test.go24 ftyp := FunctionType(VoidType(), nil, false)
H A Dir.go694 func (c Context) VoidType() (t Type) { t.C = C.LLVMVoidTypeInContext(c.C); return } func
698 func VoidType() (t Type) { t.C = C.LLVMVoidType(); return } func
1347 ftyp := FunctionType(VoidType(), []Type{storage.Type(), md.Type()}, false)
/llvm-project-15.0.7/clang/utils/TableGen/
H A DMveEmitter.cpp178 class VoidType : public Type { class
180 VoidType() : Type(TypeKind::Void) {} in VoidType() function in __anondd1c47770111::VoidType
970 VoidType Void;
986 const VoidType *getVoidType() { return &Void; } in getVoidType()
1096 if (isa<VoidType>(Param)) in getType()
/llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMOpBase.td419 // Compatibility builder that takes an instance of wrapped llvm::VoidType
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp3449 TEST_P(ASTMatchersTest, VoidType) { in TEST_P() argument
/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2873 Type *VoidType = Type::getVoidTy(Context); in parseConstants() local
2891 if (TypeList[Record[0]] == VoidType) in parseConstants()
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst3326 Certain primitive types (``VoidType``, ``LabelType``, ``FloatType`` and