Lines Matching refs:all

88     private static final long ALWAYS = bits(FormatCase.all, FormatAction.all, FormatWhen.all,
89 FormatResolve.all, FormatUnresolved.all, FormatErrors.all);
179 for (FormatCase e : FormatCase.all)
181 for (FormatAction e : FormatAction.all)
183 for (FormatResolve e : FormatResolve.all)
185 for (FormatUnresolved e : FormatUnresolved.all)
187 for (FormatErrors e : FormatErrors.all)
189 for (FormatWhen e : FormatWhen.all)
203 * Holds all the context of a mode mode
512 // Representation of one instance of all the enum values as bits in a long
607 static final EnumSet<FormatCase> all = EnumSet.allOf(FormatCase.class);
608 static final int count = all.size();
636 static final EnumSet<FormatAction> all = EnumSet.allOf(FormatAction.class);
637 static final int count = all.size();
661 static final EnumSet<FormatWhen> all = EnumSet.allOf(FormatWhen.class);
662 static final int count = all.size();
687 static final EnumSet<FormatResolve> all = EnumSet.allOf(FormatResolve.class);
688 static final int count = all.size();
713 static final EnumSet<FormatUnresolved> all = EnumSet.allOf(FormatUnresolved.class);
714 static final int count = all.size();
739 static final EnumSet<FormatErrors> all = EnumSet.allOf(FormatErrors.class);
740 static final int count = all.size();
758 final EnumSet<E> all;
760 SelectorCollector(EnumSet<E> all) {
761 this.all = all;
779 ? all
1078 // Join all the retained encodings
1429 SelectorCollector<FormatCase> cases = new SelectorCollector<>(FormatCase.all);
1430 SelectorCollector<FormatAction> actions = new SelectorCollector<>(FormatAction.all);
1431 SelectorCollector<FormatWhen> whens = new SelectorCollector<>(FormatWhen.all);
1432 SelectorCollector<FormatResolve> resolves = new SelectorCollector<>(FormatResolve.all);
1433 SelectorCollector<FormatUnresolved> unresolvedCounts = new SelectorCollector<>(FormatUnresolved.all);
1434 SelectorCollector<FormatErrors> errorCounts = new SelectorCollector<>(FormatErrors.all);