Home
last modified time | relevance | path

Searched refs:fty (Results 1 – 9 of 9) sorted by relevance

/external/llvm/test/Bindings/OCaml/
Dipo.ml41 let fty = function_type i8_type [| |] in
42 let fn = define_function "fn" fty m in
43 let fn2 = define_function "fn2" fty m in begin
Dvectorize.ml40 let fty = function_type void_type [| |] in
41 let fn = define_function "fn" fty m in
Dlinker.ml31 let fty = function_type void_type [| |] in
35 let fn = define_function ("fn_" ^ name) fty m in
Danalysis.ml24 let fty = function_type (void_type context) [| |] in
26 let fn = define_function "valid_fn" fty m in
Dscalar_opts.ml40 let fty = function_type void_type [| |] in
41 let fn = define_function "fn" fty m in
Dcore.ml854 let fty = function_type void_type [| i32_type; i32_type |] in
855 let f = define_function "f" fty m in
886 let fty = function_type void_type [| i32_type |] in
887 let fn = define_function "BuilderParent" fty m in
913 let fty = function_type void_type [| i32_type |] in
914 let fn = define_function "BuilderParent" fty m in
931 let fty = function_type void_type [| |] in var
932 let fn = declare_function "X6" fty m in
942 let fty = function_type sty [| |] in
943 let fn = declare_function "XA6" fty m in
[all …]
/external/clang/lib/CodeGen/
DCGBlocks.cpp2300 llvm::FunctionType *fty in getBlockObjectDispose() local
2302 BlockObjectDispose = CreateRuntimeFunction(fty, "_Block_object_dispose"); in getBlockObjectDispose()
2312 llvm::FunctionType *fty in getBlockObjectAssign() local
2314 BlockObjectAssign = CreateRuntimeFunction(fty, "_Block_object_assign"); in getBlockObjectAssign()
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli562 (** [is_var_arg fty] returns [true] if [fty] is a varargs function type, [false]
566 (** [return_type fty] gets the return type of the function type [fty].
570 (** [param_types fty] gets the parameter types of the function type [fty].
/external/clang/lib/Sema/
DSemaExpr.cpp2914 const FunctionType *fty = type->castAs<FunctionType>(); in BuildDeclarationNameExpr() local
2918 if (fty->getReturnType() == Context.UnknownAnyTy) { in BuildDeclarationNameExpr()
2936 isa<FunctionProtoType>(fty)) in BuildDeclarationNameExpr()
2937 type = Context.getFunctionNoProtoType(fty->getReturnType(), in BuildDeclarationNameExpr()
2938 fty->getExtInfo()); in BuildDeclarationNameExpr()