Lines Matching refs:flags

738 uint32_t zend_add_class_modifier(uint32_t flags, uint32_t new_flag) /* {{{ */  in zend_add_class_modifier()  argument
740 uint32_t new_flags = flags | new_flag; in zend_add_class_modifier()
741 if ((flags & ZEND_ACC_EXPLICIT_ABSTRACT_CLASS) && (new_flag & ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)) { in zend_add_class_modifier()
746 if ((flags & ZEND_ACC_FINAL) && (new_flag & ZEND_ACC_FINAL)) { in zend_add_class_modifier()
759 uint32_t zend_add_member_modifier(uint32_t flags, uint32_t new_flag) /* {{{ */ in zend_add_member_modifier() argument
761 uint32_t new_flags = flags | new_flag; in zend_add_member_modifier()
762 if ((flags & ZEND_ACC_PPP_MASK) && (new_flag & ZEND_ACC_PPP_MASK)) { in zend_add_member_modifier()
767 if ((flags & ZEND_ACC_ABSTRACT) && (new_flag & ZEND_ACC_ABSTRACT)) { in zend_add_member_modifier()
771 if ((flags & ZEND_ACC_STATIC) && (new_flag & ZEND_ACC_STATIC)) { in zend_add_member_modifier()
775 if ((flags & ZEND_ACC_FINAL) && (new_flag & ZEND_ACC_FINAL)) { in zend_add_member_modifier()
2855 uint32_t offset, flags; in zend_compile_assign_ref() local
2884 flags = zend_is_call(source_ast) ? ZEND_RETURNS_FUNCTION : 0; in zend_compile_assign_ref()
2889 opline->extended_value |= flags; in zend_compile_assign_ref()
2895 opline->extended_value |= flags; in zend_compile_assign_ref()
2900 opline->extended_value = flags; in zend_compile_assign_ref()
6002 op_array->fn_flags |= decl->flags; in zend_compile_func_decl()
6088 void zend_compile_prop_decl(zend_ast *ast, zend_ast *type_ast, uint32_t flags) /* {{{ */ in zend_compile_prop_decl() argument
6098 if (flags & ZEND_ACC_ABSTRACT) { in zend_compile_prop_decl()
6129 if (flags & ZEND_ACC_FINAL) { in zend_compile_prop_decl()
6181 zend_declare_typed_property(ce, name, &value_zv, flags, doc_comment, type); in zend_compile_prop_decl()
6398 if (EXPECTED((decl->flags & ZEND_ACC_ANON_CLASS) == 0)) { in zend_compile_class_decl()
6442 ce->ce_flags |= decl->flags; in zend_compile_class_decl()
6451 if (UNEXPECTED((decl->flags & ZEND_ACC_ANON_CLASS))) { in zend_compile_class_decl()
6580 if (decl->flags & ZEND_ACC_ANON_CLASS) { in zend_compile_class_decl()