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

1234

/openjdk7/jdk/src/share/classes/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;
/openjdk7/langtools/test/tools/javac/literals/
H A DBadBinaryLiterals.java10 int valid = 0b0; // valid literal, illegal in source 6 field in class:BadBinaryLiterals
H A DBadUnderscoreLiterals.java14 int valid = 1_1; // valid literal; illegal in -source 6 field in class:BadUnderscoreLiterals
17 int z1 = _0; // valid (but undefined) variable
21 int i1 = _1_2_3; // valid (but undefined) variable
/openjdk7/jdk/src/share/classes/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;
/openjdk7/jdk/src/share/native/common/
H A Dcheck_format.c43 * Return non-zero if the character is a valid in JVM class name, zero
72 next_utf2unicode(char **utfstring_ptr, int * valid) argument
78 *valid = 1;
86 *valid = 0;
134 int valid = 1; local
146 ch = next_utf2unicode(&tmp_p, &valid);
147 if (valid == 0)
260 int valid = 1; local
262 while (valid != 0 && *p != '\0') {
269 next_utf2unicode(&p, &valid);
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenType.java158 * The valid Java class names allowed for open data values are listed in
181 this.typeName = valid("typeName", typeName);
182 this.description = valid("description", description);
190 this.className = valid("className",className);
191 this.typeName = valid("typeName", typeName);
192 this.description = valid("description", description);
223 className = valid("className", className);
245 "\" is not a valid class name");
270 private static String valid(String argName, String argValue) { method in class:OpenType
405 valid("descriptio
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeIterator.java64 private boolean valid=true; field in class:DTMNodeIterator
105 valid=false;
162 if(!valid)
180 if(!valid)
/openjdk7/jdk/test/javax/management/openmbean/
H A DConstraintTest.java68 Object[] valid = test[2];
71 System.out.println("...valid=" + Arrays.deepToString(valid));
75 valid, invalid);
87 Object[] valid, Object[] invalid)
98 (Comparable<T>) maxValue, (T[]) legalValues, valid, invalid);
104 Object[] valid, Object[] invalid)
114 valid, invalid);
117 valid, invalid);
120 valid, invali
84 test(OpenType<T> openType, Object defaultValue, Comparable<?> minValue, Comparable<?> maxValue, Object[] legalValues, Object[] valid, Object[] invalid) argument
101 test1(OpenType<T> openType, T defaultValue, Comparable<T> minValue, Comparable<T> maxValue, T[] legalValues, Object[] valid, Object[] invalid) argument
205 test(OpenMBeanParameterInfo info, Object[] valid, Object[] invalid) argument
252 test1(OpenMBeanParameterInfo info, Object[] valid, Object[] invalid) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java40 private boolean valid; field in class:RegisterPanel
84 if (valid) {
100 if (!valid) return false;
147 valid = true;
158 valid = false;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/toa/
H A DTransientObjectManager.java81 elementArray[index].valid ) {
83 dprint( "\tcounter is valid" ) ;
102 elementArray[index].valid ) {
104 dprint( "\tcounter is valid" ) ;
127 if ( elementArray[i].valid &&
160 boolean valid=false; // valid=true if this Element contains field in class:Element
161 // a valid servant
173 this.valid = true;
191 if ( !valid ) // preven
[all...]
/openjdk7/jdk/test/java/net/InterfaceAddress/
H A DNetworkPrefixLength.java45 boolean valid = checkPrefix(iaddr);
46 if (!valid) {
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngget.c52 return(info_ptr->valid & flag);
146 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
163 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
180 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
198 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs))
218 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_pHYs)
227 /* The following casts work because a PNG 4 byte integer only has a valid
244 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs))
260 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid & PNG_INFO_oFFs))
276 if (png_ptr != NULL && info_ptr != NULL && (info_ptr->valid
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DToken.java99 // for removable tokens: whether this token is valid or has been removed
100 private volatile boolean valid; field in class:Token
127 this.valid = true;
203 // return whether this token object is valid (i.e. token not removed)
209 return valid;
224 if (valid == false) {
247 valid = ok;
255 return valid;
259 valid = false;
/openjdk7/jdk/src/solaris/classes/java/io/
H A DFileDescriptor.java97 * Tests if this file descriptor object is valid.
100 * valid, open file, socket, or other active I/O connection;
103 public boolean valid() { method in class:FileDescriptor
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DPollingWatchService.java239 // indicates if the key is valid
240 private volatile boolean valid; field in class:PollingWatchService.PollingWatchKey
253 this.valid = true;
276 return valid;
280 valid = false;
306 valid = false;
318 if (!valid) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DDecimalFormatting.java139 boolean valid = true;
181 valid = false;
190 valid = false;
193 valid = false;
196 if (valid) {
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ccache/
H A DCredentials.java189 boolean valid = true;
191 valid = false;
194 valid = false;
198 valid = false;
201 return valid;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayReferenceImpl.java82 * Validate that the range to set/get is valid.
228 boolean valid = false;
249 valid = ArrayTypeImpl.isComponentAssignable(destComponentType,
253 if (!valid) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp180 bool valid = false; local
187 valid = os::getTimesSecs(&real_time, &user_time, &system_time);
188 if (valid) {
H A DvframeArray.hpp153 void set_location_valid(int i, bool valid) { _valid[i] = valid; } argument
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java485 boolean valid = true;
523 valid = false;
538 valid = false;
547 if (!GSSUtil.useMSInterop() && valid) {
548 valid = verifyMechListMIC(DER_mechTypes,
553 if (valid) {
598 valid = false;
602 if (valid) {
792 boolean valid = false;
797 valid
[all...]
/openjdk7/jdk/src/share/classes/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
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DCache.java79 * Return the number of currently valid entries in the cache.
492 boolean valid = (currentTime <= expirationTime);
493 if (valid == false) {
496 return valid;
528 boolean valid = (currentTime <= expirationTime) && (get() != null);
529 if (valid == false) {
532 return valid;

Completed in 94 milliseconds

1234