Searched refs:function_type (Results 1 - 25 of 28) sorted by relevance

12

/haiku-buildtools/gcc/libstdc++-v3/testsuite/25_algorithms/for_each/requirements/explicit_instantiation/
H A D2.cc33 typedef std::pointer_to_unary_function<value_type, void> function_type; typedef in namespace:std
35 template function_type for_each(iterator_type, iterator_type,
36 function_type);
H A Dpod.cc32 typedef std::pointer_to_unary_function<value_type, void> function_type; typedef in namespace:std
34 template function_type for_each(iterator_type, iterator_type,
35 function_type);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/function/
H A D10.cc30 typedef std::function<void(X&)> function_type; typedef
34 function_type f( vp );
35 function_type f2( std::ref(vp) );
36 function_type f3( std::cref(vp) );
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dtypedef17.C8 typedef void (function_type)(int) const;
14 virtual function_type f = 0;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/18_support/bad_exception/
H A D23591_thread-1.c30 typedef void (*function_type) (void); typedef
40 cb = (function_type) dlsym(lib, "try_throw_exception");
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/mt_allocator/
H A D22309_thread.cc50 typedef void (*function_type) (void); typedef
51 function_type fn;
52 fn = reinterpret_cast<function_type>(dlsym(h, "try_allocation"));
/haiku-buildtools/gcc/libstdc++-v3/testsuite/util/exception/
H A Dsafety.h1296 typedef std::function<void(container_type&)> function_type; typedef in struct:__gnu_test::basic_safety
1315 std::vector<function_type> functions;
1317 functions.push_back(function_type(iops));
1319 functions.push_back(function_type(ciops));
1322 functions.push_back(function_type(erasep));
1324 functions.push_back(function_type(eraser));
1326 functions.push_back(function_type(insertp));
1328 functions.push_back(function_type(emplace));
1330 functions.push_back(function_type(emplacep));
1332 functions.push_back(function_type(emplace
1495 typedef std::function<void(container_type&)> function_type; typedef in struct:__gnu_test::propagation_consistent
[all...]
/haiku-buildtools/gcc/gcc/jit/
H A Djit-common.h122 class function_type;
H A Djit-builtins.c197 recording::function_type *func_type = t->as_a_function_type ();
438 /* Create the recording::function_type for a given function type
441 recording::function_type *
451 recording::function_type *result = NULL;
H A Djit-builtins.h140 recording::function_type*
H A Djit-recording.h104 function_type *
477 virtual function_type *dyn_cast_function_type () { return NULL; }
478 virtual function_type *as_a_function_type() { gcc_unreachable (); return NULL; }
691 class function_type : public type class in namespace:gcc::jit::recording
694 function_type (context *ctxt,
701 function_type *dyn_cast_function_type () { return this; }
702 function_type *as_a_function_type () { return this; }
H A Djit-recording.c813 /* Create a recording::function_type instance and add it to this context's
818 recording::function_type *
824 recording::function_type *fn_type
825 = new function_type (this,
847 recording::function_type *fn_type
2329 if (function_type *fn_type = m_other_type->dyn_cast_function_type ())
2342 recording::function_type::write_deferred_reproducer. */
2343 if (function_type *fn_type = m_other_type->dyn_cast_function_type ())
2476 /* The implementation of class gcc::jit::recording::function_type */
2478 /* Constructor for gcc::jit::recording::function_type
2480 recording::function_type::function_type (context *ctxt, function in class:recording::function_type
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr30252.C40 typedef T_return (*function_type)(T_arg1); typedef in class:sigc::pointer_functor1
41 function_type func_ptr_;
44 explicit pointer_functor1(function_type _A_func): func_ptr_(_A_func) {}
/haiku-buildtools/legacy/binutils/binutils/
H A Ddebug.h220 bfd_boolean (*function_type) (void *, int, bfd_boolean); member in struct:debug_write_fns
H A Ddebug.c2578 return (*fns->function_type) (fhandle, is,
/haiku-buildtools/binutils/binutils/
H A Ddebug.h220 bfd_boolean (*function_type) (void *, int, bfd_boolean); member in struct:debug_write_fns
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dclass.c403 add_method_1 (handle_class, access_flags, name, function_type)
407 tree function_type;
412 method_type = build_java_method_type (function_type,
450 tree function_type, fndecl; local
455 function_type = get_type_from_signature (method_sig);
456 fndecl = add_method_1 (handle_class, access_flags, name, function_type);
/haiku-buildtools/gcc/gcc/java/
H A Dclass.c775 add_method_1 (tree this_class, int access_flags, tree name, tree function_type) argument
779 method_type = build_java_method_type (function_type,
811 && TREE_TYPE (function_type) == void_type_node
812 && TREE_VALUE (TYPE_ARG_TYPES (function_type)) == void_type_node)
848 tree function_type, fndecl; local
855 function_type = get_type_from_signature (method_sig);
856 fndecl = add_method_1 (this_class, access_flags, name, function_type);
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dbackend.h112 function_type(const Btyped_identifier& receiver,
153 // function_type method. Returns true on success, false on failure.
H A Dtypes.cc384 return t1->function_type()->is_identical(t2->function_type(),
472 || rhs->function_type() != NULL))
480 || lhs->function_type() != NULL))
515 || t1->function_type() != NULL
518 || t2->function_type() != NULL)
670 || lhs->function_type() != NULL
1004 Location loc = this->function_type()->location();
2011 Function_type* hash_fntype = p->type()->function_type();
2015 Function_type* equal_fntype = p->type()->function_type();
[all...]
H A Dtypes.h766 function_type() function in class:Type
770 function_type() const function in class:Type
H A Dexpressions.cc3319 && type->function_type() != NULL
3320 && expr_type->function_type() != NULL)
3420 && type->function_type() != NULL
3421 && expr_type->function_type() != NULL))
3590 || et->function_type() != NULL
3603 || et->function_type() != NULL
7900 || type->function_type() != NULL
8238 || type->function_type() != NULL)
8951 return this->fn_->type()->function_type();
11187 Function_type* orig_fntype = method_id->type()->function_type();
[all...]
/haiku-buildtools/legacy/gcc/gcc/objc/
H A Dobjc-act.c1779 tree function_type;
1785 function_type
1791 function_type);
7125 static tree function_type = 0;
7127 /* Create a function_type node once. */
7128 if (!function_type)
7132 function_type = make_node (FUNCTION_TYPE);
7137 TYPE_ARG_TYPES (function_type) = get_arg_type_list (proto, METHOD_DEF, 0);
7140 TREE_TYPE (function_type) = groktypename (TREE_TYPE (proto));
7142 return comptypes (TREE_TYPE (METHOD_DEFINITION (method)), function_type);
1773 tree function_type; local
7104 static tree function_type = 0; local
[all...]
/haiku-buildtools/gcc/gcc/config/mep/
H A Dmep.c3948 tree function_type;
3961 function_type = TREE_TYPE (*node);
3963 if (TREE_TYPE (function_type) != void_type_node)
3966 if (prototype_p (function_type)
3967 && (TREE_VALUE (TYPE_ARG_TYPES (function_type)) != void_type_node
3968 || TREE_CHAIN (TYPE_ARG_TYPES (function_type)) != NULL_TREE))
3939 tree function_type; local
/haiku-buildtools/gcc/gcc/go/
H A Dgo-gcc.cc183 function_type(const Btyped_identifier&,
786 Gcc_backend::function_type(const Btyped_identifier& receiver, function in class:Gcc_backend

Completed in 424 milliseconds

12