Lines Matching refs:_flags

96   jint _flags;
100 bool is_public () const { return (_flags & JVM_ACC_PUBLIC ) != 0; }
101 bool is_private () const { return (_flags & JVM_ACC_PRIVATE ) != 0; }
102 bool is_protected () const { return (_flags & JVM_ACC_PROTECTED ) != 0; }
103 bool is_static () const { return (_flags & JVM_ACC_STATIC ) != 0; }
104 bool is_final () const { return (_flags & JVM_ACC_FINAL ) != 0; }
105 bool is_synchronized() const { return (_flags & JVM_ACC_SYNCHRONIZED) != 0; }
106 bool is_super () const { return (_flags & JVM_ACC_SUPER ) != 0; }
107 bool is_volatile () const { return (_flags & JVM_ACC_VOLATILE ) != 0; }
108 bool is_transient () const { return (_flags & JVM_ACC_TRANSIENT ) != 0; }
109 bool is_native () const { return (_flags & JVM_ACC_NATIVE ) != 0; }
110 bool is_interface () const { return (_flags & JVM_ACC_INTERFACE ) != 0; }
111 bool is_abstract () const { return (_flags & JVM_ACC_ABSTRACT ) != 0; }
112 bool is_strict () const { return (_flags & JVM_ACC_STRICT ) != 0; }
115 bool is_synthetic () const { return (_flags & JVM_ACC_SYNTHETIC ) != 0; }
118 bool is_monitor_matching () const { return (_flags & JVM_ACC_MONITOR_MATCH ) != 0; }
119 bool has_monitor_bytecodes () const { return (_flags & JVM_ACC_HAS_MONITOR_BYTECODES ) != 0; }
120 bool has_loops () const { return (_flags & JVM_ACC_HAS_LOOPS ) != 0; }
121 bool loops_flag_init () const { return (_flags & JVM_ACC_LOOPS_FLAG_INIT ) != 0; }
122 bool queued_for_compilation () const { return (_flags & JVM_ACC_QUEUED ) != 0; }
123 bool is_not_c1_compilable () const { return (_flags & JVM_ACC_NOT_C1_COMPILABLE ) != 0; }
124 bool is_not_c2_compilable () const { return (_flags & JVM_ACC_NOT_C2_COMPILABLE ) != 0; }
125 bool is_not_c2_osr_compilable() const { return (_flags & JVM_ACC_NOT_C2_OSR_COMPILABLE ) != 0; }
126 bool has_linenumber_table () const { return (_flags & JVM_ACC_HAS_LINE_NUMBER_TABLE ) != 0; }
127 bool has_checked_exceptions () const { return (_flags & JVM_ACC_HAS_CHECKED_EXCEPTIONS ) != 0; }
128 bool has_jsrs () const { return (_flags & JVM_ACC_HAS_JSRS ) != 0; }
129 bool is_old () const { return (_flags & JVM_ACC_IS_OLD ) != 0; }
130 bool is_obsolete () const { return (_flags & JVM_ACC_IS_OBSOLETE ) != 0; }
131 bool is_prefixed_native () const { return (_flags & JVM_ACC_IS_PREFIXED_NATIVE ) != 0; }
134 bool has_miranda_methods () const { return (_flags & JVM_ACC_HAS_MIRANDA_METHODS ) != 0; }
135 bool has_vanilla_constructor () const { return (_flags & JVM_ACC_HAS_VANILLA_CONSTRUCTOR) != 0; }
136 bool has_finalizer () const { return (_flags & JVM_ACC_HAS_FINALIZER ) != 0; }
137 bool has_final_method () const { return (_flags & JVM_ACC_HAS_FINAL_METHOD ) != 0; }
138 bool is_cloneable () const { return (_flags & JVM_ACC_IS_CLONEABLE ) != 0; }
140 bool has_localvariable_table () const { return (_flags & JVM_ACC_HAS_LOCAL_VARIABLE_TABLE) != 0; }
145 bool is_field_access_watched() const { return (_flags & JVM_ACC_FIELD_ACCESS_WATCHED) != 0; }
147 { return (_flags & JVM_ACC_FIELD_MODIFICATION_WATCHED) != 0; }
148 bool is_internal() const { return (_flags & JVM_ACC_FIELD_INTERNAL) != 0; }
150 { return (_flags & JVM_ACC_FIELD_HAS_GENERIC_SIGNATURE) != 0; }
153 jint get_flags () const { return (_flags & JVM_ACC_WRITTEN_FLAGS); }
156 void add_promoted_flags(jint flags) { _flags |= (flags & JVM_ACC_PROMOTED_FLAGS); }
159 _flags = (flags & JVM_ACC_FIELD_FLAGS);
161 void set_flags(jint flags) { _flags = (flags & JVM_ACC_WRITTEN_FLAGS); }
226 jshort as_short() const { return (jshort)_flags; }
227 jint as_int() const { return _flags; }
237 af._flags = flags;