Searched defs:isStatic (Results 1 - 25 of 61) sorted by relevance

123

/openjdk7/langtools/src/share/classes/com/sun/source/tree/
H A DBlockTree.java49 boolean isStatic(); method in interface:BlockTree
H A DImportTree.java45 boolean isStatic(); method in interface:ImportTree
/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DAnnComma.java35 @ann1(isStatic=false,type="class" ,)
37 @ann1(type="class",isStatic=false,) public void myMethod() {
44 boolean isStatic(); method in interface:ann1
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DField.java35 public boolean isStatic(); method in interface:Field
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeGetField.java35 public boolean isStatic() { method in class:BytecodeGetField
H A DBytecodeGetPut.java75 public abstract boolean isStatic(); method in class:BytecodeGetPut
H A DBytecodeGetStatic.java35 public boolean isStatic() { method in class:BytecodeGetStatic
H A DBytecodePutField.java35 public boolean isStatic() { method in class:BytecodePutField
H A DBytecodePutStatic.java35 public boolean isStatic() { method in class:BytecodePutStatic
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicJBooleanField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJBooleanField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJByteField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJByteField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJCharField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJCharField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJDoubleField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJDoubleField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJFloatField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJFloatField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJIntField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJIntField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJLongField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJLongField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJShortField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJShortField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicOopField.java42 boolean isStatic, long offset, Address staticFieldAddress) {
43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
41 BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicCIntegerField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicCIntegerField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicNarrowOopField.java43 boolean isStatic, long offset, Address staticFieldAddress) {
44 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
47 System.out.println(" name " + name + " type " + type + " isStatic " + isStatic + " offset " + offset + " static addr " + staticFieldAddress);
42 BasicNarrowOopField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DTypeComponent.java103 boolean isStatic(); method in interface:TypeComponent
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DProgramElementDoc.java119 boolean isStatic(); method in interface:ProgramElementDoc
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DTypeComponentImpl.java64 abstract public boolean isStatic(); method in class:TypeComponentImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicField.java34 private boolean isStatic; field in class:BasicField
40 public BasicField(String name, Type type, int accessControl, boolean isStatic) { argument
52 public boolean isStatic() { return isStatic; } method in class:BasicField
56 if (isStatic) throw new RuntimeException("Nonstatic fields only");
62 if (isStatic) throw new RuntimeException("Nonstatic fields only");
71 if (!isStatic) throw new RuntimeException("Static fields only");
77 if (!isStatic) throw new RuntimeException("Static fields only");
83 if (isStatic) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DField.java73 public boolean isStatic(); method in interface:Field

Completed in 75 milliseconds

123