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

/libcore/ojluni/
H A DAndroid.mk12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/tzdata/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/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/
H A DAndroid.mk12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
H A DNativeCode.mk12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
H A DJavaLibrary.mk12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/benchmarks/
H A DAndroid.mk12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/tzdata/update2/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/tzdata/update_test_app/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/ojluni/src/main/java/java/net/
H A DInet4Address.java13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
97 public static final InetAddress ANY = new Inet4Address(null, new byte[] { 0, 0, 0, 0 }); field in class:Inet4Address
H A DInetSocketAddress.java13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
198 addr == null ? Inet6Address.ANY : addr,
H A DInet6Address.java13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
182 public static final InetAddress ANY = field in class:Inet6Address
/libcore/tzdata/shared2/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/tzdata/testing/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/tzdata/tools2/
H A DAndroid.mk11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/libcore/luni/src/test/java/libcore/io/
H A DOsTest.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
367 assertEquals(Inet6Address.ANY, localSocketAddress.getAddress());
372 assertEquals(Inet6Address.ANY, localSocketAddress.getAddress());
377 assertEquals(Inet4Address.ANY, localSocketAddress.getAddress());
444 Libcore.os.bind(mUdpSock, Inet4Address.ANY, 0);
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DMembershipKeyTest.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
46 .bind(new InetSocketAddress(Inet4Address.ANY, PORT));
/libcore/ojluni/src/main/java/java/time/zone/
H A DIcuZoneRulesProvider.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
62 Set<String> zoneIds = ZoneMeta.getAvailableIDs(TimeZone.SystemTimeZoneType.ANY, null, null);
/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
H A DDoublePipeline.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
482 return evaluate(MatchOps.makeDouble(predicate, MatchOps.MatchKind.ANY));
H A DLongPipeline.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
460 return evaluate(MatchOps.makeLong(predicate, MatchOps.MatchKind.ANY));
H A DIntPipeline.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
478 return evaluate(MatchOps.makeInt(predicate, MatchOps.MatchKind.ANY));
H A DReferencePipeline.java12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
451 return evaluate(MatchOps.makeRef(predicate, MatchOps.MatchKind.ANY));
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DDatagramSocketTest.java13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
356 // now check behavior when the ANY address is returned
358 assertTrue("ANY address not IPv6: " + s.getLocalSocketAddress(),
775 assertEquals("ANY address not IPv6: " + s.getLocalSocketAddress(),
776 Inet6Address.ANY, s.getLocalAddress());
779 assertEquals(Inet6Address.ANY, s.getLocalAddress());
/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 1131 milliseconds