Home
last modified time | relevance | path

Searched refs:void_type (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/clang/test/CXX/special/class.conv/class.conv.ctor/
H A Dp1.cpp5 struct void_type struct
8 void_type(Arg0&&, Args&&...) { } in void_type() function
19 void_type v1 = atom();
/llvm-project-15.0.7/llvm/test/Bindings/OCaml/
H A Dvectorize.ml18 let void_type = Llvm.void_type context var
40 let fty = function_type void_type [| |] in
H A Dlinker.ml17 let void_type = Llvm.void_type context var
35 let fty = function_type void_type [| |] in
H A Dscalar_opts.ml18 let void_type = Llvm.void_type context var
40 let fty = function_type void_type [| |] in
H A Dpassmgr_builder.ml17 let void_type = Llvm.void_type context var
H A Dipo.ml18 let void_type = Llvm.void_type context var
H A Danalysis.ml24 let fty = function_type (void_type context) [| |] in
H A Dcore.ml27 let void_type = Llvm.void_type context var
351 let ft = function_type void_type [| i32_type; i32_type; i32_type |] in
743 let vf = define_function "void" (function_type void_type [| |]) m in
748 let ty = function_type void_type [| i32_type; i32_type |] in
776 let ty = function_type void_type [| |] in
852 let fty = function_type void_type [| i32_type; i32_type |] in
884 let fty = function_type void_type [| i32_type |] in
911 let fty = function_type void_type [| i32_type |] in
929 let fty = function_type void_type [| |] in
1469 let fty = function_type void_type [| |] in
H A Ddebuginfo.ml135 Llvm.function_type (Llvm.void_type context) [| Llvm.i32_type context |]
/llvm-project-15.0.7/lldb/test/API/lang/cpp/complete-type-check/
H A DTestCppIsTypeComplete.py67 void_type = self.target().FindFirstType("void")
68 self.assertTrue(void_type.IsValid())
69 self.assertTrue(void_type.IsTypeComplete())
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm.ml519 external void_type : llcontext -> lltype = "llvm_void_type"
H A Dllvm.mli752 (** [void_type c] creates a type of a function which does not return any
754 val void_type : llcontext -> lltype val