Lines Matching refs:doc_comment

313 	if (ce->doc_comment) {  in _class_string()
314 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->doc_comment)); in _class_string()
599 if (c->doc_comment) { in _class_const_string()
600 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(c->doc_comment)); in _class_const_string()
814 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
815 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->op_array.doc_comment)); in _function_string()
816 } else if (fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.doc_comment) { in _function_string()
817 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->internal_function.doc_comment)); in _function_string()
927 if (prop && prop->doc_comment) { in _property_string()
928 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(prop->doc_comment)); in _property_string()
1959 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in ZEND_METHOD()
1960 RETURN_STR_COPY(fptr->op_array.doc_comment); in ZEND_METHOD()
1963 if (fptr->type == ZEND_INTERNAL_FUNCTION && ((zend_internal_function *) fptr)->doc_comment) { in ZEND_METHOD()
1964 RETURN_STR_COPY(((zend_internal_function *) fptr)->doc_comment); in ZEND_METHOD()
4039 if (ref->doc_comment) { in ZEND_METHOD()
4040 RETURN_STR_COPY(ref->doc_comment); in ZEND_METHOD()
4447 if (ce->doc_comment) { in ZEND_METHOD()
4448 RETURN_STR_COPY(ce->doc_comment); in ZEND_METHOD()
5880 if (ref->prop && ref->prop->doc_comment) { in ZEND_METHOD()
5881 RETURN_STR_COPY(ref->prop->doc_comment); in ZEND_METHOD()