Lines Matching defs:packge

437             if (getCompiled(c.packge().modle, flatname) == null) {
457 compiled.put(Pair.of(csym.packge().modle, csym.flatname), csym);
461 return compiled.get(Pair.of(csym.packge().modle, csym.flatname));
469 compiled.remove(Pair.of(csym.packge().modle, csym.flatname));
2697 if (sym.packge() == syms.rootPackage) {
2711 String fullName = sym.packge().fullname.toString();
3493 WriteableScope ordinallyImportedSoFar = WriteableScope.create(toplevel.packge);
3494 WriteableScope staticallyImportedSoFar = WriteableScope.create(toplevel.packge);
3656 if (!checkTypeContainsImportableElement(site, site, toplevel.packge, select.name, new HashSet<Symbol>())) {
3691 private boolean checkTypeContainsImportableElement(TypeSymbol tsym, TypeSymbol origin, PackageSymbol packge, Name name, Set<Symbol> processed) {
3696 if (checkTypeContainsImportableElement(types.supertype(tsym.type).tsym, origin, packge, name, processed))
3700 if (checkTypeContainsImportableElement(t.tsym, origin, packge, name, processed))
3705 importAccessible(sym, packge) &&
3714 // is the sym accessible everywhere in packge?
3715 public boolean importAccessible(Symbol sym, PackageSymbol packge) {
3726 return sym.packge() == packge;
3744 ExportsDirective currentExport = findExport(toplevel.packge);
3828 checkVisible(tree.pos(), sym, toplevel.packge, inSuperType);
3837 checkVisible(tree.pos(), sym, toplevel.packge, inSuperType);
3854 if (d.packge == pack)
3871 log.warning(LintCategory.EXPORTS, pos, Warnings.LeaksNotAccessible(kindName(what), what, what.packge().modle));
3875 PackageSymbol whatPackage = what.packge();
3880 log.warning(LintCategory.EXPORTS, pos, Warnings.LeaksNotAccessibleUnexported(kindName(what), what, what.packge().modle));
3886 log.warning(LintCategory.EXPORTS, pos, Warnings.LeaksNotAccessibleUnexportedQualified(kindName(what), what, what.packge().modle));
3906 log.warning(LintCategory.EXPORTS, pos, Warnings.LeaksNotAccessibleNotRequiredTransitive(kindName(what), what, what.packge().modle));
3919 void checkPackageExistsForOpens(final DiagnosticPosition pos, PackageSymbol packge) {
3920 if (packge.members().isEmpty() &&
3921 ((packge.flags() & Flags.HAS_RESOURCE) == 0)) {
3924 log.warning(pos, Warnings.PackageEmptyOrNotFound(packge));