Lines Matching refs:doc_comment
319 if (ce->doc_comment) { in _class_string()
320 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->doc_comment)); in _class_string()
605 if (c->doc_comment) { in _class_const_string()
606 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(c->doc_comment)); in _class_const_string()
812 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in _function_string()
813 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->op_array.doc_comment)); in _function_string()
814 } else if (fptr->type == ZEND_INTERNAL_FUNCTION && fptr->internal_function.doc_comment) { in _function_string()
815 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()
1949 if (fptr->type == ZEND_USER_FUNCTION && fptr->op_array.doc_comment) { in ZEND_METHOD()
1950 RETURN_STR_COPY(fptr->op_array.doc_comment); in ZEND_METHOD()
1953 if (fptr->type == ZEND_INTERNAL_FUNCTION && ((zend_internal_function *) fptr)->doc_comment) { in ZEND_METHOD()
1954 RETURN_STR_COPY(((zend_internal_function *) fptr)->doc_comment); in ZEND_METHOD()
3925 if (ref->doc_comment) { in ZEND_METHOD()
3926 RETURN_STR_COPY(ref->doc_comment); in ZEND_METHOD()
4325 if (ce->doc_comment) { in ZEND_METHOD()
4326 RETURN_STR_COPY(ce->doc_comment); in ZEND_METHOD()
6174 if (ref->prop && ref->prop->doc_comment) { in ZEND_METHOD()
6175 RETURN_STR_COPY(ref->prop->doc_comment); in ZEND_METHOD()