Lines Matching refs:bc
692 BinaryClass bc = null;
694 bc = loadFile(binfile);
705 if ((bc != null) && !bc.getName().equals(nm)) {
706 error(0, "wrong.class", binfile.getPath(), c, bc);
707 bc = null;
711 if (bc == null) {
720 if (bc.getSource() != null) {
721 srcfile = new ClassFile(new File((String)bc.getSource()));
730 c.setDefinition(bc, CS_SOURCE);
734 bc.loadNested(this);
741 c.setDefinition(bc, CS_UNDECIDED);
746 c.setDefinition(bc, CS_BINARY);
751 bc.loadNested(this);
760 c.setDefinition(bc, CS_BINARY);
764 bc.loadNested(this);
770 BinaryClass bc = null;
780 bc = loadFile(binfile);
786 if ((bc != null) && !bc.getName().equals(nm)) {
787 error(0, "wrong.class", binfile.getPath(), c, bc);
788 bc = null;
792 if (bc != null) {
793 Identifier name = bc.getName();
796 c.setDefinition(bc, CS_UNDECIDED);
800 c.setDefinition(bc, CS_BINARY);
809 getClassDeclaration(name).setDefinition(bc, CS_UNDECIDED);
813 getClassDeclaration(name).setDefinition(bc, CS_BINARY);
823 if (bc != null && bc == c.getClassDefinition())
824 bc.loadNested(this);