/libcore/ojluni/src/main/resources/sun/util/logging/resources/ |
D | logging.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=ALL key 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 CAPS words should be translated.
|
D | logging_ja.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=\u3059\u3079\u3066 key 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 CAPS words should be translated.
|
D | logging_es.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Todo key 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 CAPS words should be translated.
|
D | logging_fr.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Tout key 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 CAPS words should be translated.
|
D | logging_zh_TW.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=\u5168\u90E8 key 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 CAPS words should be translated.
|
D | logging_pt_BR.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Tudo key 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 CAPS words should be translated.
|
D | logging_ko.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=\uBAA8\uB450 key 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 CAPS words should be translated.
|
D | logging_zh_CN.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=\u5168\u90E8 key 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 CAPS words should be translated.
|
D | logging_de.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Alle key 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 CAPS words should be translated.
|
D | logging_it.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Tutto key 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 CAPS words should be translated.
|
D | logging_sv.properties | 29 # The following ALL CAPS words should be translated. 30 ALL=Alla key 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 CAPS words should be translated.
|
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/ |
D | MatchOpTest.java | 79 private enum Kind { ANY, ALL, NONE } enumConstant 89 put(Kind.ALL, p -> s -> s.allMatch(p)); 108 assertPredicates(countTo(0), Kind.ALL, INTEGER_PREDICATES, true, true, true, true); in testStreamMatches() 112 assertPredicates(countTo(1), Kind.ALL, INTEGER_PREDICATES, true, false, false, true); in testStreamMatches() 116 assertPredicates(countTo(5), Kind.ALL, INTEGER_PREDICATES, true, false, false, false); in testStreamMatches() 179 put(Kind.ALL, p -> s -> s.allMatch(p)); 193 …assertIntPredicates(() -> IntStream.range(0, 0), Kind.ALL, INT_PREDICATES, true, true, true, true); in testIntStreamMatches() 197 …assertIntPredicates(() -> IntStream.range(1, 2), Kind.ALL, INT_PREDICATES, true, false, false, tru… in testIntStreamMatches() 201 …assertIntPredicates(() -> IntStream.range(1, 6), Kind.ALL, INT_PREDICATES, true, false, false, fal… in testIntStreamMatches() 264 put(Kind.ALL, p -> s -> s.allMatch(p)); [all …]
|
/libcore/ojluni/annotations/mmodule/java/net/ |
D | Inet4Address.annotated.java | 66 public static final java.net.InetAddress ALL; field in Inet4Address 67 static { ALL = null; }
|
/libcore/ojluni/annotations/hiddenapi/java/net/ |
D | Inet4Address.java | 112 public static final java.net.InetAddress ALL; field in Inet4Address 115 ALL = null;
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
D | OldLogRecordTest.java | 44 lr.setLevel(Level.ALL); in testGetSetLevelNormal() 45 assertSame(lr.getLevel(), Level.ALL); in testGetSetLevelNormal()
|
/libcore/luni/src/test/resources/config/java/util/logging/ |
D | logging.properties | 2 .level=ALL
|
D | logging.config | 2 .level=ALL
|
/libcore/ojluni/annotations/sdk/nullability/java/util/logging/ |
D | Level.annotated.java | 53 @libcore.util.NonNull public static final java.util.logging.Level ALL; field in Level 54 static { ALL = null; }
|
/libcore/luni/src/test/resources/bundles/java/util/logging/ |
D | res_en_US.properties | 8 ALL=US_ALL key
|
D | res.properties | 8 ALL=US_ALL key
|
D | res2.properties | 8 ALL=ALL2 key
|
D | res3.properties | 8 ALL=ALL3 key
|
D | res_zh_CN.properties | 8 ALL=ZH_CN_ALL key
|
/libcore/ojluni/src/main/java/sun/util/logging/ |
D | PlatformLogger.java | 98 private static final int ALL = Integer.MIN_VALUE; field in PlatformLogger 106 ALL, enumConstant 126 PlatformLogger.ALL, PlatformLogger.FINEST, PlatformLogger.FINER, 147 case PlatformLogger.ALL : return Level.ALL; in valueOf()
|
/libcore/luni/src/test/java/libcore/sun/util/logging/ |
D | PlatformLoggerTest.java | 43 assertLogLevel("ALL", Level.ALL); in testLogLevelConstants()
|