Lines Matching refs:const_
7495 zend_constant *const_ = zend_get_constant_ptr(lc_name); in ZEND_METHOD() local
7497 if (!const_) { in ZEND_METHOD()
7502 intern->ptr = const_; in ZEND_METHOD()
7513 zend_constant *const_; in ZEND_METHOD() local
7517 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7518 RETURN_STR_COPY(const_->name); in ZEND_METHOD()
7524 zend_constant *const_; in ZEND_METHOD() local
7528 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7530 const char *backslash = zend_memrchr(ZSTR_VAL(const_->name), '\\', ZSTR_LEN(const_->name)); in ZEND_METHOD()
7532 size_t length = backslash - ZSTR_VAL(const_->name); in ZEND_METHOD()
7533 RETURN_STRINGL(ZSTR_VAL(const_->name), length); in ZEND_METHOD()
7542 zend_constant *const_; in ZEND_METHOD() local
7546 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7548 const char *backslash = zend_memrchr(ZSTR_VAL(const_->name), '\\', ZSTR_LEN(const_->name)); in ZEND_METHOD()
7550 size_t prefix = backslash - ZSTR_VAL(const_->name) + 1; in ZEND_METHOD()
7551 size_t length = ZSTR_LEN(const_->name) - prefix; in ZEND_METHOD()
7552 RETURN_STRINGL(ZSTR_VAL(const_->name) + prefix, length); in ZEND_METHOD()
7554 RETURN_STR_COPY(const_->name); in ZEND_METHOD()
7561 zend_constant *const_; in ZEND_METHOD() local
7565 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7566 RETURN_COPY(&const_->value); in ZEND_METHOD()
7572 zend_constant *const_; in ZEND_METHOD() local
7576 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7577 RETURN_BOOL(ZEND_CONSTANT_FLAGS(const_) & CONST_DEPRECATED); in ZEND_METHOD()
7583 zend_constant *const_; in ZEND_METHOD() local
7587 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7588 if (const_->filename != NULL) { in ZEND_METHOD()
7589 RETURN_STR_COPY(const_->filename); in ZEND_METHOD()
7597 zend_constant *const_; in reflection_constant_find_ext() local
7601 GET_REFLECTION_OBJECT_PTR(const_); in reflection_constant_find_ext()
7602 int module_number = ZEND_CONSTANT_MODULE_NUMBER(const_); in reflection_constant_find_ext()
7628 ZSTR_VAL(const_->name) in reflection_constant_find_ext()
7650 zend_constant *const_; in ZEND_METHOD() local
7655 GET_REFLECTION_OBJECT_PTR(const_); in ZEND_METHOD()
7656 _const_string(&str, ZSTR_VAL(const_->name), &const_->value, ""); in ZEND_METHOD()