Searched defs:valid (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/spi/
H A DAbstractSelectionKey.java50 private volatile boolean valid = true; field in class:AbstractSelectionKey
53 return valid;
57 valid = false;
71 if (valid) {
72 valid = false;
/libcore/include/
H A DScopedIcuLocale.h45 bool valid() const { function in class:ScopedIcuLocale
H A DScopedJavaUnicodeString.h44 bool valid() const { function in class:ScopedJavaUnicodeString
/libcore/ojluni/src/main/java/java/io/
H A DFileDescriptor.java94 * Tests if this file descriptor object is valid.
97 * valid, open file, socket, or other active I/O connection;
100 public boolean valid() { method in class:FileDescriptor
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileLockImpl.java34 private volatile boolean valid = true; field in class:FileLockImpl
47 return valid;
52 valid = false;
59 if (valid) {
65 valid = false;
H A DMembershipKeyImpl.java46 // true when key is valid
47 private volatile boolean valid = true; field in class:MembershipKeyImpl
137 return valid;
142 valid = false;
/libcore/ojluni/src/main/java/sun/security/x509/
H A DCertificateValidity.java36 * This class defines the interval for which the certificate is valid.
60 // Returns the first time the certificate is valid.
65 // Returns the last time the certificate is valid.
111 * is not valid.
113 * not valid.
242 * yet valid.
244 public void valid() method in class:CertificateValidity
247 valid(now);
258 * yet valid with respect to the <code>Date</code> supplied.
261 public void valid(Dat method in class:CertificateValidity
[all...]
H A DPrivateKeyUsageExtension.java190 * yet valid.
192 public void valid() method in class:PrivateKeyUsageExtension
195 valid(now);
204 * yet valid with respect to the <code>Date</code> supplied.
207 public void valid(Date now) method in class:PrivateKeyUsageExtension
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DPollingWatchService.java237 // indicates if the key is valid
238 private volatile boolean valid; field in class:PollingWatchService.PollingWatchKey
251 this.valid = true;
274 return valid;
278 valid = false;
304 valid = false;
316 if (!valid) {
/libcore/luni/src/test/java/libcore/java/net/
H A DInetAddressTest.java190 public void test_isNumeric(String valid) throws Exception { argument
191 assertTrue(InetAddress.isNumeric(valid));
301 fail("Invalid IP address incorrectly recognized as valid: "
309 fail("Invalid IP address incorrectly recognized as valid: "
321 public void test_getByName_valid(String valid) throws Exception { argument
322 InetAddress.getByName(valid);
325 InetAddress.getByName(valid);
328 String tempIPAddress = "[" + valid + "]";
/libcore/ojluni/src/main/java/java/util/
H A DCalendar.java865 * True if then the value of <code>time</code> is valid.
2066 // it's not documented to be a valid value for style.
2213 // 3 is not a valid base style (unlike 1, 2 and 4). Throw if used.
2307 * have valid values that have been set by internal time calculation
3041 * <p>If {@code weekOfYear} is out of the valid week-of-year range
3357 private static void appendValue(StringBuilder sb, String item, boolean valid, long value) { argument
3359 if (valid) {

Completed in 2501 milliseconds