Lines Matching refs:thisc
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.findOuterMember();
500 ClassDefinition prevc = thisc;
501 thisc = prevc.getOuterClass();
543 ClassDefinition thisc) {
544 while (!match(env, thisc, reqc)) {
545 if (thisc.isTopLevel()) {
548 thisc = thisc.getOuterClass();
557 ClassDefinition thisc = field.getClassDefinition();
558 while (thisc != null && !match(env, thisc, reqc)) {
559 thisc = thisc.getOuterClass();
561 return thisc;