Searched defs:checked (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/util/Currency/
H A DCheckDataVersion.java39 static boolean checked = false; field in class:CheckDataVersion
42 if (!checked) {
85 checked = true;
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DImports.java86 * Are the import names checked yet?
88 protected int checked; field in class:Imports
101 if (checked != 0) {
104 checked = -1;
250 checked = 1;
277 if (checked <= 0) {
278 checked = 0;
291 // with the rest of the import-on-demands; it is now checked
/openjdk7/jdk/test/java/util/Collections/
H A DT6433170.java53 void test(final Collection checked) { argument
54 checkEmpty(checked);
57 new F(){void f(){ checked.addAll(mixedList); }});
58 checkEmpty(checked);
/openjdk7/jdk/test/javax/management/generified/
H A DGenericTest.java67 checked(mbsList1, MBeanServer.class);
73 checked(mbs.queryNames(null, null), ObjectName.class);
76 checked(((MBeanServerConnection) mbs).queryNames(null, null),
86 checked(mbs.queryMBeans(null, null), ObjectInstance.class);
89 checked(((MBeanServerConnection) mbs).queryMBeans(null, null),
104 checked(acnfs, String.class);
115 List<Attribute> al3 = checked(al1.asList(), Attribute.class);
124 checked(role.getRoleValue(), ObjectName.class);
133 List<Role> rl3 = checked(rl1.asList(), Role.class);
143 checked(r
446 private static <E> List<E> checked(List<E> c, Class<E> type) { method in class:GenericTest
453 private static <E> Set<E> checked(Set<E> c, Class<E> type) { method in class:GenericTest
460 private static <K,V> Map<K,V> checked(Map<K,V> m, method in class:GenericTest
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DArrayType.java194 * been previously checked, false otherwise.
197 HashSet checked,
202 boolean result = super.addTypes(typeCodeFilter,checked,matching);
204 // Have we been checked before?
210 getElementType().addTypes(typeCodeFilter,checked,matching);
196 addTypes(int typeCodeFilter, HashSet checked, Vector matching) argument
H A DType.java433 * @param alreadyChecked Contains types which have previously been checked
930 * been previously checked, false otherwise.
933 HashSet checked,
938 // Have we already checked this type?
940 if (checked.contains(this)) {
950 checked.add(this);
932 addTypes(int typeCodeFilter, HashSet checked, Vector matching) argument
H A DCompoundType.java121 * Return true if this type is a "checked" exception.
635 // Is it a checked exception?
1070 * been previously checked, false otherwise.
1073 HashSet checked,
1078 boolean result = super.addTypes(typeCodeFilter,checked,matching);
1080 // Have we been checked before?
1089 parent.addTypes(typeCodeFilter,checked,matching);
1100 interfaces[i].addTypes(typeCodeFilter,checked,matching);
1111 methods[i].getReturnType().addTypes(typeCodeFilter,checked,matching);
1125 arg.addTypes(typeCodeFilter,checked,matchin
1072 addTypes(int typeCodeFilter, HashSet checked, Vector matching) argument
[all...]
/openjdk7/jdk/test/java/io/pathNames/
H A DGeneral.java216 private static Hashtable checked = new Hashtable(); field in class:General
226 if (checked.get(path) != null) {
230 checked.put(path, path);
/openjdk7/langtools/test/tools/javac/6558548/
H A DT6558548.java12 void checked() throws InterruptedException {} method in class:T6558548
49 checked();
70 checked();
84 checked();
108 checked();
132 checked();
156 checked();
183 checked();
207 checked();
234 checked();
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLInputElement.java66 * represents the HTML checked attribute of the element. The value of
70 * checked attribute definition in HTML 4.0.
119 public void setChecked(boolean checked); argument
/openjdk7/jdk/test/java/net/URL/
H A DTest.java59 int checked = 0; // Mask for checked properties field in class:Test
153 checked |= prop;
184 checked |= PORT;
206 checked |= PARSEFAIL;
213 if (((checked & prop) == 0) && (s != null))
227 if (((checked & PORT) == 0) && (url.getPort() != -1)) failed |= PORT;
260 String s = (((checked & PARSEFAIL) != 0)
/openjdk7/jdk/test/java/net/URI/
H A DTest.java78 int checked = 0; // Mask for checked properties field in class:Test
231 checked |= prop;
287 checked |= PORT;
356 checked |= PARSEFAIL;
374 checked = 0;
393 checked = 0;
405 checked = 0;
411 if (((checked & prop) == 0) && (s != null))
523 if (((checked
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c569 static Boolean checked = False; local
572 if (checked) {
579 checked = True;
591 static Boolean checked = False; local
594 if (checked) {
601 checked = True;
641 static Boolean checked = False; local
644 if (checked) {
654 checked = True;
661 static Boolean checked local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Frame.cpp1110 static BOOL checked = FALSE; local
1112 if (!checked) {
1115 checked = TRUE;

Completed in 63 milliseconds