Lines Matching refs:ce

58 	zend_class_entry ce, *class_entry;  in register_class_LogicException()  local
60 INIT_CLASS_ENTRY(ce, "LogicException", class_LogicException_methods); in register_class_LogicException()
61 class_entry = zend_register_internal_class_ex(&ce, class_entry_Exception); in register_class_LogicException()
68 zend_class_entry ce, *class_entry; in register_class_BadFunctionCallException() local
70 INIT_CLASS_ENTRY(ce, "BadFunctionCallException", class_BadFunctionCallException_methods); in register_class_BadFunctionCallException()
71 class_entry = zend_register_internal_class_ex(&ce, class_entry_LogicException); in register_class_BadFunctionCallException()
78 zend_class_entry ce, *class_entry; in register_class_BadMethodCallException() local
80 INIT_CLASS_ENTRY(ce, "BadMethodCallException", class_BadMethodCallException_methods); in register_class_BadMethodCallException()
81 class_entry = zend_register_internal_class_ex(&ce, class_entry_BadFunctionCallException); in register_class_BadMethodCallException()
88 zend_class_entry ce, *class_entry; in register_class_DomainException() local
90 INIT_CLASS_ENTRY(ce, "DomainException", class_DomainException_methods); in register_class_DomainException()
91 class_entry = zend_register_internal_class_ex(&ce, class_entry_LogicException); in register_class_DomainException()
98 zend_class_entry ce, *class_entry; in register_class_InvalidArgumentException() local
100 INIT_CLASS_ENTRY(ce, "InvalidArgumentException", class_InvalidArgumentException_methods); in register_class_InvalidArgumentException()
101 class_entry = zend_register_internal_class_ex(&ce, class_entry_LogicException); in register_class_InvalidArgumentException()
108 zend_class_entry ce, *class_entry; in register_class_LengthException() local
110 INIT_CLASS_ENTRY(ce, "LengthException", class_LengthException_methods); in register_class_LengthException()
111 class_entry = zend_register_internal_class_ex(&ce, class_entry_LogicException); in register_class_LengthException()
118 zend_class_entry ce, *class_entry; in register_class_OutOfRangeException() local
120 INIT_CLASS_ENTRY(ce, "OutOfRangeException", class_OutOfRangeException_methods); in register_class_OutOfRangeException()
121 class_entry = zend_register_internal_class_ex(&ce, class_entry_LogicException); in register_class_OutOfRangeException()
128 zend_class_entry ce, *class_entry; in register_class_RuntimeException() local
130 INIT_CLASS_ENTRY(ce, "RuntimeException", class_RuntimeException_methods); in register_class_RuntimeException()
131 class_entry = zend_register_internal_class_ex(&ce, class_entry_Exception); in register_class_RuntimeException()
138 zend_class_entry ce, *class_entry; in register_class_OutOfBoundsException() local
140 INIT_CLASS_ENTRY(ce, "OutOfBoundsException", class_OutOfBoundsException_methods); in register_class_OutOfBoundsException()
141 class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException); in register_class_OutOfBoundsException()
148 zend_class_entry ce, *class_entry; in register_class_OverflowException() local
150 INIT_CLASS_ENTRY(ce, "OverflowException", class_OverflowException_methods); in register_class_OverflowException()
151 class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException); in register_class_OverflowException()
158 zend_class_entry ce, *class_entry; in register_class_RangeException() local
160 INIT_CLASS_ENTRY(ce, "RangeException", class_RangeException_methods); in register_class_RangeException()
161 class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException); in register_class_RangeException()
168 zend_class_entry ce, *class_entry; in register_class_UnderflowException() local
170 INIT_CLASS_ENTRY(ce, "UnderflowException", class_UnderflowException_methods); in register_class_UnderflowException()
171 class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException); in register_class_UnderflowException()
178 zend_class_entry ce, *class_entry; in register_class_UnexpectedValueException() local
180 INIT_CLASS_ENTRY(ce, "UnexpectedValueException", class_UnexpectedValueException_methods); in register_class_UnexpectedValueException()
181 class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException); in register_class_UnexpectedValueException()