Searched defs:is_final (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.hpp53 bool is_final () const { return (_flags & JVM_ACC_FINAL ) != 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A DciField.hpp175 bool is_final () { return flags().is_final(); } function in class:ciField
H A DciInstanceKlass.hpp140 if (flags().is_final()) {
208 bool is_final () { return flags().is_final(); } function in class:ciInstanceKlass
H A DciMethod.hpp278 bool is_final () const { return flags().is_final(); } function in class:ciMethod
288 bool is_final_method() const { return is_final() || holder()->is_final(); }
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldDescriptor.hpp94 bool is_final() const { return access_flags().is_final(); } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/utilities/
H A DaccessFlags.hpp104 bool is_final () const { return (_flags & JVM_ACC_FINAL ) != 0; } function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp210 bool is_final, // the field is final
318 bool is_final() const { return (_flags & (1 << is_final_shift)) != 0; } function in class:VALUE_OBJ_CLASS_SPEC
H A Dklass.hpp649 bool is_final() const { return _access_flags.is_final(); } function
H A DmethodOop.hpp477 bool is_final() const { return access_flags().is_final(); } function in class:methodOopDesc
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2390 if (method->is_final()) {
3222 if (super_klass->is_final()) {
4072 if (super_m->is_final() &&
4134 const bool is_final = (flags & JVM_ACC_FINAL) != 0; local
4140 if ((is_abstract && is_final) ||
4183 const bool is_final = (flags & JVM_ACC_FINAL) != 0; local
4192 if (!is_public || !is_static || !is_final || is_private ||
4198 if (has_illegal_visibility(flags) || (is_final && is_volatile)) {
4221 const bool is_final = (flags & JVM_ACC_FINAL) != 0; local
4233 if (!is_abstract || !is_public || is_static || is_final ||
[all...]

Completed in 61 milliseconds