Home
last modified time | relevance | path

Searched refs:raises (Results 1 – 25 of 56) sorted by relevance

123

/openbsd/src/gnu/gcc/gcc/cp/
Dmethod.c827 tree raises = empty_except_spec; in synthesize_exception_spec() local
840 raises = merge_exception_specifiers (raises, fn_raises); in synthesize_exception_spec()
860 raises = merge_exception_specifiers (raises, fn_raises); in synthesize_exception_spec()
863 return raises; in synthesize_exception_spec()
987 tree raises = empty_except_spec; in implicitly_declare_fn() local
1023 raises = synthesize_exception_spec (type, &locate_dtor, 0); in implicitly_declare_fn()
1029 raises = synthesize_exception_spec (type, &locate_ctor, 0); in implicitly_declare_fn()
1057 raises = synthesize_exception_spec (type, &locate_copy, &data); in implicitly_declare_fn()
1066 if (raises) in implicitly_declare_fn()
1067 fn_type = build_exception_variant (fn_type, raises); in implicitly_declare_fn()
Dexcept.c509 tree raises; in finish_eh_spec_block() local
514 for (raises = NULL_TREE; in finish_eh_spec_block()
522 raises = tree_cons (NULL_TREE, type, raises); in finish_eh_spec_block()
525 EH_SPEC_RAISES (eh_spec_block) = raises; in finish_eh_spec_block()
Dtypeck2.c1473 tree raises; in require_complete_eh_spec_types() local
1477 for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises; in require_complete_eh_spec_types()
1478 raises = TREE_CHAIN (raises)) in require_complete_eh_spec_types()
1480 tree type = TREE_VALUE (raises); in require_complete_eh_spec_types()
Dtypeck.c672 tree rval, raises; in merge_types() local
684 if ((raises = TYPE_RAISES_EXCEPTIONS (t2))) in merge_types()
685 rval = build_exception_variant (rval, raises); in merge_types()
688 raises = TYPE_RAISES_EXCEPTIONS (t1); in merge_types()
692 if (raises) in merge_types()
693 rval = build_exception_variant (rval, raises); in merge_types()
698 t1 = build_exception_variant (rval, raises); in merge_types()
707 tree raises = TYPE_RAISES_EXCEPTIONS (t1); in merge_types() local
720 t1 = build_exception_variant (t3, raises); in merge_types()
Ddecl.c5933 int raises) in bad_specifiers() argument
5945 if (raises in bad_specifiers()
6037 tree raises, in grokfndecl() argument
6052 if (raises) in grokfndecl()
6053 type = build_exception_variant (type, raises); in grokfndecl()
7012 tree raises = NULL_TREE; in grokdeclarator() local
7700 raises = declarator->u.function.exception_specification; in grokdeclarator()
8150 inlinep, friendp, raises != NULL_TREE); in grokdeclarator()
8328 inlinep, friendp, raises != NULL_TREE); in grokdeclarator()
8424 virtualp, flags, memfn_quals, raises, in grokdeclarator()
[all …]
Ddecl2.c114 tree raises; in build_memfn_type() local
126 raises = TYPE_RAISES_EXCEPTIONS (fntype); in build_memfn_type()
127 if (raises) in build_memfn_type()
128 fntype = build_exception_variant (fntype, raises); in build_memfn_type()
Dtree.c965 build_exception_variant (tree type, tree raises) in build_exception_variant() argument
972 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), 1)) in build_exception_variant()
977 TYPE_RAISES_EXCEPTIONS (v) = raises; in build_exception_variant()
/openbsd/src/gnu/usr.bin/gcc/gcc/cp/
Dmethod.c827 tree raises = empty_except_spec; local
840 raises = merge_exception_specifiers (raises, fn_raises);
860 raises = merge_exception_specifiers (raises, fn_raises);
863 return raises;
986 tree raises = empty_except_spec; local
997 raises = synthesize_exception_spec (type, &locate_dtor, 0);
1003 raises = synthesize_exception_spec (type, &locate_ctor, 0);
1034 raises = synthesize_exception_spec (type, &locate_copy, &data);
1044 tree declarator = make_call_declarator (name, args, NULL_TREE, raises);
Dexcept.c479 tree raises; local
484 for (raises = NULL_TREE;
487 raises = tree_cons (NULL_TREE, prepare_eh_type (TREE_VALUE (raw_raises)),
488 raises);
490 EH_SPEC_RAISES (eh_spec_block) = raises;
Dtypeck2.c1474 tree raises; local
1478 for (raises = TYPE_RAISES_EXCEPTIONS (fntype); raises;
1479 raises = TREE_CHAIN (raises))
1481 tree type = TREE_VALUE (raises);
Dtree.c1099 build_exception_variant (type, raises) in build_exception_variant() argument
1101 tree raises;
1108 && comp_except_specs (raises, TYPE_RAISES_EXCEPTIONS (v), 1))
1113 TYPE_RAISES_EXCEPTIONS (v) = raises;
Dtypeck.c645 tree rval, raises; local
657 if ((raises = TYPE_RAISES_EXCEPTIONS (t2)))
658 rval = build_exception_variant (rval, raises);
661 raises = TYPE_RAISES_EXCEPTIONS (t1);
665 if (raises)
666 rval = build_exception_variant (rval, raises);
671 t1 = build_exception_variant (rval, raises);
680 tree raises = TYPE_RAISES_EXCEPTIONS (t1); local
693 t1 = build_exception_variant (t3, raises);
Ddecl.c9608 bad_specifiers (object, type, virtualp, quals, inlinep, friendp, raises) in bad_specifiers() argument
9611 int virtualp, quals, friendp, raises, inlinep;
9622 if (raises
9647 raises, check, friendp, publicp, inlinep, funcdef_flag, in grokfndecl() argument
9654 tree quals, raises;
9663 if (raises)
9664 type = build_exception_variant (type, raises);
10524 tree raises = NULL_TREE; local
11547 raises = CALL_DECLARATOR_EXCEPTION_SPEC (declarator);
12134 inlinep, friendp, raises != NULL_TREE);
[all …]
Dpt.c7047 tree raises; local
7054 raises = TYPE_RAISES_EXCEPTIONS (t);
7055 if (raises)
7059 if (! TREE_VALUE (raises))
7060 list = raises;
7062 for (; raises != NULL_TREE; raises = TREE_CHAIN (raises))
7064 tree spec = TREE_VALUE (raises);
/openbsd/src/gnu/llvm/llvm/bindings/ocaml/bitreader/
Dllvm_bitreader.mli18 raises [Error msg] otherwise, where [msg] is a description of the error
24 raises [Error msg] otherwise, where [msg] is a description of the error
/openbsd/src/gnu/usr.bin/binutils-2.17/config/
Dintdiv0.m416 AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
71 [Define if integer division by zero raises signal SIGFPE.])
/openbsd/src/gnu/gcc/config/
Dintdiv0.m416 AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
71 [Define if integer division by zero raises signal SIGFPE.])
/openbsd/src/gnu/usr.bin/texinfo/m4/
Dintdiv0.m416 AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
71 [Define if integer division by zero raises signal SIGFPE.])
/openbsd/src/gnu/gcc/gcc/config/arm/
Dt-linux-eabi9 # Use a version of div0 which raises SIGFPE.
/openbsd/src/gnu/llvm/llvm/bindings/ocaml/irreader/
Dllvm_irreader.mli18 raises [Error msg] otherwise, where [msg] is a description of the error
/openbsd/src/gnu/llvm/llvm/docs/
DExtendedIntegerResults.txt8 specific integer GPR. This is an efficient way to go, but raises the question:
DBugpoint.rst217 calls 212 and 217. This is from an actual test case and raises an important
/openbsd/src/gnu/llvm/llvm/bindings/ocaml/target/
Dllvm_target.mli152 (** [by_triple triple] returns a target for a triple [triple], or raises
/openbsd/src/gnu/gcc/intl/
Dconfig.h.in181 /* Define if integer division by zero raises signal SIGFPE. */
/openbsd/src/gnu/usr.bin/texinfo/
Dconfig.in332 /* Define if integer division by zero raises signal SIGFPE. */

123