Home
last modified time | relevance | path

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

/external/clang/test/CXX/special/class.conv/class.conv.ctor/
Dp1.cpp5 struct void_type struct
8 void_type(Arg0&&, Args&&...) { } in void_type() function
19 void_type v1 = atom();
/external/llvm/test/Bindings/OCaml/
Dvectorize.ml18 let void_type = Llvm.void_type context var
40 let fty = function_type void_type [| |] in
Dlinker.ml17 let void_type = Llvm.void_type context var
31 let fty = function_type void_type [| |] in
Dscalar_opts.ml18 let void_type = Llvm.void_type context var
40 let fty = function_type void_type [| |] in
Dpassmgr_builder.ml17 let void_type = Llvm.void_type context var
Dipo.ml18 let void_type = Llvm.void_type context var
Danalysis.ml24 let fty = function_type (void_type context) [| |] in
Dcore.ml33 let void_type = Llvm.void_type context var
387 let ft = function_type void_type [| i32_type; i32_type; i32_type |] in
739 let vf = define_function "void" (function_type void_type [| |]) m in
744 let ty = function_type void_type [| i32_type; i32_type |] in
778 let ty = function_type void_type [| |] in
854 let fty = function_type void_type [| i32_type; i32_type |] in
886 let fty = function_type void_type [| i32_type |] in
913 let fty = function_type void_type [| i32_type |] in
931 let fty = function_type void_type [| |] in
1463 let fty = function_type void_type [| |] in
/external/ltrace/
Dparam.c75 struct arg_type_info *void_type = type_get_simple(ARGTYPE_VOID); in param_pack_init() local
77 value_init_detached(&void_val, NULL, void_type, 0); in param_pack_init()
/external/mesa3d/src/glsl/
Dglsl_types.h153 static const glsl_type *const void_type; member
Dglsl_types.cpp167 add_types_to_symbol_table(symtab, void_type, 1, false); in generate_100ES_types()
399 return void_type; in get_instance()
Dbuiltin_types.h35 const glsl_type *const glsl_type::void_type = & glsl_type::_void_type;
Dir_reader.cpp659 if (callee->return_type == glsl_type::void_type && return_deref) { in read_call()
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) { in read_call()
Dir_validate.cpp584 } else if (callee->return_type != glsl_type::void_type) { in visit_enter()
Dir_constant_expression.cpp1297 if (type == glsl_type::void_type) in constant_expression_value()
Dglsl_parser.yy1527 state->symbols->add_type($2, glsl_type::void_type);
Dast_to_hir.cpp3379 (ret == NULL) ? glsl_type::void_type : ret->type; in hir()
/external/mesa3d/src/glsl/tests/
Dset_uniform_initializer_tests.cpp134 prog->UniformStorage[i].type = glsl_type::void_type; in establish_uniform_storage()
/external/smali/smalidea/src/main/antlr/
DsmalideaParser.g553 void_type
563 : void_type
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml390 external void_type : llcontext -> lltype = "llvm_void_type"
Dllvm.mli653 (** [void_type c] creates a type of a function which does not return any
655 val void_type : llcontext -> lltype val