Searched defs:ANY (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DInet4Address.java13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
98 public static final InetAddress ANY = new Inet4Address(null, new byte[] { 0, 0, 0, 0 }); field in class:Inet4Address
H A DInet6Address.java13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
191 public static final InetAddress ANY = field in class:Inet6Address
/libcore/ojluni/src/main/java/java/util/stream/
H A DMatchOps.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
52 ANY(true, true), enum constant in enum:MatchOps.MatchKind
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DMatchOpTest.java10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
79 private enum Kind { ANY, ALL, NONE } enum constant in enum:MatchOpTest.Kind
88 put(Kind.ANY, p -> s -> s.anyMatch(p));
107 assertPredicates(countTo(0), Kind.ANY, INTEGER_PREDICATES, false, false, false, false);
111 assertPredicates(countTo(1), Kind.ANY, INTEGER_PREDICATES, true, false, false, true);
115 assertPredicates(countTo(5), Kind.ANY, INTEGER_PREDICATES, true, false, true, true);
178 put(Kind.ANY, p -> s -> s.anyMatch(p));
192 assertIntPredicates(() -> IntStream.range(0, 0), Kind.ANY, INT_PREDICATES, false, false, false, false);
196 assertIntPredicates(() -> IntStream.range(1, 2), Kind.ANY, INT_PREDICATES, true, false, false, true);
200 assertIntPredicates(() -> IntStream.range(1, 6), Kind.ANY, INT_PREDICATE
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
77 private static final char[] ANY = new char[]{ 'A', 'N', 'Y' }; field in class:KXmlParser
753 * special names EMPTY and ANY.
779 } else if (c == ANY[0]) {
780 read(ANY);

Completed in 50 milliseconds