Lines Matching refs:intern
62 IntlDateFormatter_object* intern; in IntlDateFormatter_object_create() local
64 intern = ecalloc( 1, sizeof(IntlDateFormatter_object) + zend_object_properties_size(ce)); in IntlDateFormatter_object_create()
65 dateformat_data_init( &intern->datef_data ); in IntlDateFormatter_object_create()
66 zend_object_std_init( &intern->zo, ce ); in IntlDateFormatter_object_create()
67 object_properties_init(&intern->zo, ce); in IntlDateFormatter_object_create()
68 intern->date_type = 0; in IntlDateFormatter_object_create()
69 intern->time_type = 0; in IntlDateFormatter_object_create()
70 intern->calendar = -1; in IntlDateFormatter_object_create()
71 intern->requested_locale = NULL; in IntlDateFormatter_object_create()
74 intern->zo.handlers = &IntlDateFormatter_handlers; in IntlDateFormatter_object_create()
76 return &intern->zo; in IntlDateFormatter_object_create()