Searched refs:ALL (Results 1 - 25 of 27) sorted by relevance

12

/libcore/ojluni/src/main/resources/sun/util/logging/resources/
H A Dlogging.properties29 # The following ALL CAPS words should be translated.
30 ALL=ALL
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAP
[all...]
H A Dlogging_de.properties29 # The following ALL CAPS words should be translated.
30 ALL=Alle
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_it.properties29 # The following ALL CAPS words should be translated.
30 ALL=Tutto
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_sv.properties29 # The following ALL CAPS words should be translated.
30 ALL=Alla
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_es.properties29 # The following ALL CAPS words should be translated.
30 ALL=Todo
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_fr.properties29 # The following ALL CAPS words should be translated.
30 ALL=Tout
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_pt_BR.properties29 # The following ALL CAPS words should be translated.
30 ALL=Tudo
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_ja.properties29 # The following ALL CAPS words should be translated.
30 ALL=\u3059\u3079\u3066
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_ko.properties29 # The following ALL CAPS words should be translated.
30 ALL=\uBAA8\uB450
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_zh_CN.properties29 # The following ALL CAPS words should be translated.
30 ALL=\u5168\u90E8
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
H A Dlogging_zh_TW.properties29 # The following ALL CAPS words should be translated.
30 ALL=\u5168\u90E8
31 # The following ALL CAPS words should be translated.
33 # The following ALL CAPS words should be translated.
35 # The following ALL CAPS words should be translated.
37 # The following ALL CAPS words should be translated.
39 # The following ALL CAPS words should be translated.
41 # The following ALL CAPS words should be translated.
43 # The following ALL CAPS words should be translated.
45 # The following ALL CAP
[all...]
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldLogRecordTest.java44 lr.setLevel(Level.ALL);
45 assertSame(lr.getLevel(), Level.ALL);
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DMatchOpTest.java79 private enum Kind { ANY, ALL, NONE } enum constant in enum:MatchOpTest.Kind
89 put(Kind.ALL, p -> s -> s.allMatch(p));
108 assertPredicates(countTo(0), Kind.ALL, INTEGER_PREDICATES, true, true, true, true);
112 assertPredicates(countTo(1), Kind.ALL, INTEGER_PREDICATES, true, false, false, true);
116 assertPredicates(countTo(5), Kind.ALL, INTEGER_PREDICATES, true, false, false, false);
179 put(Kind.ALL, p -> s -> s.allMatch(p));
193 assertIntPredicates(() -> IntStream.range(0, 0), Kind.ALL, INT_PREDICATES, true, true, true, true);
197 assertIntPredicates(() -> IntStream.range(1, 2), Kind.ALL, INT_PREDICATES, true, false, false, true);
201 assertIntPredicates(() -> IntStream.range(1, 6), Kind.ALL, INT_PREDICATES, true, false, false, false);
264 put(Kind.ALL,
[all...]
/libcore/ojluni/src/main/java/java/util/logging/
H A DHandler.java61 private volatile Level logLevel = Level.ALL;
71 * level of <tt>Level.ALL</tt>, no <tt>Formatter</tt>, and no
H A DSocketHandler.java49 * (defaults to <tt>Level.ALL</tt>). </li>
95 setLevel(manager.getLevelProperty(cname +".level", Level.ALL));
H A DMemoryHandler.java62 * (defaults to <tt>Level.ALL</tt>). </li>
110 setLevel(manager.getLevelProperty(cname +".level", Level.ALL));
H A DFileHandler.java76 * (defaults to <tt>Level.ALL</tt>). </li>
236 setLevel(manager.getLevelProperty(cname + ".level", Level.ALL));
H A DLevel.java54 * off logging, and a level ALL that can be used to enable
174 * ALL indicates that all messages should be logged.
177 public static final Level ALL = new Level("ALL", Integer.MIN_VALUE, defaultBundle); field in class:Level
283 // ALL CAPS in a resource bundle's message indicates no translation
/libcore/ojluni/src/main/java/java/net/
H A DInet4Address.java100 public static final InetAddress ALL = field in class:Inet4Address
/libcore/ojluni/src/main/java/sun/util/logging/
H A DPlatformLogger.java102 public static final int ALL = Integer.MIN_VALUE; field in class:PlatformLogger
110 ALL, enum constant in enum:PlatformLogger.Level
130 PlatformLogger.ALL, PlatformLogger.FINEST, PlatformLogger.FINER,
151 case PlatformLogger.ALL : return Level.ALL;
/libcore/ojluni/src/main/java/java/util/stream/
H A DMatchOps.java55 ALL(false, false), enum constant in enum:MatchOps.MatchKind
H A DDoublePipeline.java487 return evaluate(MatchOps.makeDouble(predicate, MatchOps.MatchKind.ALL));
H A DLongPipeline.java465 return evaluate(MatchOps.makeLong(predicate, MatchOps.MatchKind.ALL));
H A DIntPipeline.java483 return evaluate(MatchOps.makeInt(predicate, MatchOps.MatchKind.ALL));
/libcore/luni/src/test/java/libcore/net/
H A DNetworkSecurityPolicyTest.java212 logger.setLevel(Level.ALL);

Completed in 251 milliseconds

12