Searched refs:thisc (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | Context.java | 408 ClassDefinition thisc, ClassDefinition reqc) { 410 return thisc == reqc 411 || reqc.implementedBy(env, thisc.getClassDeclaration()); 456 // thisc is the class of the link expression thise 457 ClassDefinition thisc = null; 466 thisc = field.getClassDefinition(); 480 thisc = lp.getClassDefinition(); 488 if (thisc == reqc || 489 (!needExactMatch && match(env, thisc, reqc))) { 495 MemberDefinition outerMember = thisc 407 match(Environment env, ClassDefinition thisc, ClassDefinition reqc) argument 541 outerLinkExists(Environment env, ClassDefinition reqc, ClassDefinition thisc) argument [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/javac/ |
H A D | SourceMember.java | 678 ClassDefinition thisc = getClassDefinition(); 679 if (reqc != null && !Context.outerLinkExists(env, reqc, thisc)) {
|
/openjdk7/jdk/test/java/lang/invoke/indify/ |
H A D | Indify.java | 862 args.clear(); args.add(pool.get(cf.thisc)); 1414 public short access, thisc, superc; field in class:Indify.ClassFile 1425 access = in.readShort(); thisc = in.readShort(); superc = in.readShort(); 1442 access, thisc, superc, interfaces, 1464 public String nameString() { return pool.getString(CONSTANT_Class, thisc); }
|
Completed in 3212 milliseconds