Searched refs:JVM_ACC_ABSTRACT (Results 1 - 24 of 24) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DClassConstants.java100 public static final long JVM_ACC_ABSTRACT = 0x0400; /* no definition provided */ field in interface:ClassConstants
168 JVM_ACC_ABSTRACT |
193 JVM_ACC_ABSTRACT |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DVMModifiers.java44 int ABSTRACT = (int) JVM_ACC_ABSTRACT; /* no definition provided */
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DConstants.java41 static final int JVM_ACC_ABSTRACT = 0x0400; /* no definition provided */ field in interface:Constants
/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.hpp60 bool is_abstract () const { return (_flags & JVM_ACC_ABSTRACT ) != 0; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DObjArrayKlass.java66 arrayFlags = JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
69 arrayFlags = JVM_ACC_ABSTRACT | JVM_ACC_FINAL;
H A DAccessFlags.java53 public boolean isAbstract () { return (flags & JVM_ACC_ABSTRACT ) != 0; }
H A DArrayKlass.java113 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayKlass.cpp186 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
H A DobjArrayKlass.cpp482 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
488 | (JVM_ACC_ABSTRACT | JVM_ACC_FINAL);
/openjdk7/hotspot/src/share/vm/utilities/
H A DaccessFlags.hpp79 JVM_ACC_FIELD_INTERNAL = 0x00000400, // internal field, same as JVM_ACC_ABSTRACT
111 bool is_abstract () const { return (_flags & JVM_ACC_ABSTRACT ) != 0; }
/openjdk7/jdk/src/share/javavm/export/
H A Dclassfile_constants.h53 JVM_ACC_ABSTRACT = 0x0400, enumerator in enum:__anon545
H A Djvm.h1032 JVM_ACC_ABSTRACT | \
1056 JVM_ACC_ABSTRACT | \
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.h1020 #define JVM_ACC_ABSTRACT 0x0400 /* no definition provided */ macro
1177 JVM_ACC_ABSTRACT | \
1201 JVM_ACC_ABSTRACT | \
H A DjvmtiEnv.cpp2215 result = (JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC);
H A Djvm.cpp1369 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
1826 return JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java469 final boolean isAbstract = ((accessFlags & JVM_ACC_ABSTRACT) != 0);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp850 __ btst(JVM_ACC_ABSTRACT, Gtmp1);
1286 __ btst(JVM_ACC_ABSTRACT, Gtmp1);
H A DcppInterpreter_sparc.cpp617 __ btst(JVM_ACC_ABSTRACT, Gtmp1);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp916 __ testl(rax, JVM_ACC_ABSTRACT);
1344 __ testl(rax, JVM_ACC_ABSTRACT);
H A DtemplateInterpreter_x86_64.cpp897 __ testl(rax, JVM_ACC_ABSTRACT);
1365 __ testl(rax, JVM_ACC_ABSTRACT);
H A DcppInterpreter_x86.cpp1056 __ testl(rax, JVM_ACC_ABSTRACT);
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2596 flags |= JVM_ACC_ABSTRACT;
3057 flags |= JVM_ACC_ABSTRACT;
4133 const bool is_abstract = (flags & JVM_ACC_ABSTRACT) != 0;
4223 const bool is_abstract = (flags & JVM_ACC_ABSTRACT) != 0;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp3125 prim_return_value = intcon(JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC);
3149 prim_return_value = intcon(JVM_ACC_ABSTRACT | JVM_ACC_FINAL | JVM_ACC_PUBLIC);
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c950 if ((access_bits & (JVM_ACC_NATIVE | JVM_ACC_ABSTRACT)) != 0) {

Completed in 171 milliseconds