Lines Matching refs:ce
6 zend_class_entry ce, *class_entry; in register_class_LogicException() local
8 INIT_CLASS_ENTRY(ce, "LogicException", NULL); in register_class_LogicException()
9 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_Exception, 0); in register_class_LogicException()
16 zend_class_entry ce, *class_entry; in register_class_BadFunctionCallException() local
18 INIT_CLASS_ENTRY(ce, "BadFunctionCallException", NULL); in register_class_BadFunctionCallException()
19 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_LogicException, 0); in register_class_BadFunctionCallException()
26 zend_class_entry ce, *class_entry; in register_class_BadMethodCallException() local
28 INIT_CLASS_ENTRY(ce, "BadMethodCallException", NULL); in register_class_BadMethodCallException()
29 …class_entry = zend_register_internal_class_with_flags(&ce, class_entry_BadFunctionCallException, 0… in register_class_BadMethodCallException()
36 zend_class_entry ce, *class_entry; in register_class_DomainException() local
38 INIT_CLASS_ENTRY(ce, "DomainException", NULL); in register_class_DomainException()
39 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_LogicException, 0); in register_class_DomainException()
46 zend_class_entry ce, *class_entry; in register_class_InvalidArgumentException() local
48 INIT_CLASS_ENTRY(ce, "InvalidArgumentException", NULL); in register_class_InvalidArgumentException()
49 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_LogicException, 0); in register_class_InvalidArgumentException()
56 zend_class_entry ce, *class_entry; in register_class_LengthException() local
58 INIT_CLASS_ENTRY(ce, "LengthException", NULL); in register_class_LengthException()
59 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_LogicException, 0); in register_class_LengthException()
66 zend_class_entry ce, *class_entry; in register_class_OutOfRangeException() local
68 INIT_CLASS_ENTRY(ce, "OutOfRangeException", NULL); in register_class_OutOfRangeException()
69 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_LogicException, 0); in register_class_OutOfRangeException()
76 zend_class_entry ce, *class_entry; in register_class_RuntimeException() local
78 INIT_CLASS_ENTRY(ce, "RuntimeException", NULL); in register_class_RuntimeException()
79 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_Exception, 0); in register_class_RuntimeException()
86 zend_class_entry ce, *class_entry; in register_class_OutOfBoundsException() local
88 INIT_CLASS_ENTRY(ce, "OutOfBoundsException", NULL); in register_class_OutOfBoundsException()
89 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_RuntimeException, 0); in register_class_OutOfBoundsException()
96 zend_class_entry ce, *class_entry; in register_class_OverflowException() local
98 INIT_CLASS_ENTRY(ce, "OverflowException", NULL); in register_class_OverflowException()
99 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_RuntimeException, 0); in register_class_OverflowException()
106 zend_class_entry ce, *class_entry; in register_class_RangeException() local
108 INIT_CLASS_ENTRY(ce, "RangeException", NULL); in register_class_RangeException()
109 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_RuntimeException, 0); in register_class_RangeException()
116 zend_class_entry ce, *class_entry; in register_class_UnderflowException() local
118 INIT_CLASS_ENTRY(ce, "UnderflowException", NULL); in register_class_UnderflowException()
119 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_RuntimeException, 0); in register_class_UnderflowException()
126 zend_class_entry ce, *class_entry; in register_class_UnexpectedValueException() local
128 INIT_CLASS_ENTRY(ce, "UnexpectedValueException", NULL); in register_class_UnexpectedValueException()
129 class_entry = zend_register_internal_class_with_flags(&ce, class_entry_RuntimeException, 0); in register_class_UnexpectedValueException()