Searched defs:checkType (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java72 checkType(declaredType);
79 return checkType(cd.getCompositeType());
82 private static int checkType(CompositeType ct) throws Exception { method in class:GcInfoCompositeType
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DHostnameChecker.java63 private final byte checkType; field in class:HostnameChecker
65 private HostnameChecker(byte checkType) { argument
66 this.checkType = checkType;
70 * Get a HostnameChecker instance. checkType should be one of the
73 public static HostnameChecker getInstance(byte checkType) { argument
74 if (checkType == TYPE_TLS) {
76 } else if (checkType == TYPE_LDAP) {
79 throw new IllegalArgumentException("Unknown check type: " + checkType);
247 if (checkType
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldGen.java124 checkType(new ObjectType("java.lang.String"));
131 checkType(Type.LONG);
138 checkType(Type.INT);
145 checkType(Type.SHORT);
152 checkType(Type.CHAR);
159 checkType(Type.BYTE);
166 checkType(Type.BOOLEAN);
173 checkType(Type.FLOAT);
180 checkType(Type.DOUBLE);
192 private void checkType(Typ method in class:FieldGen
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DTypedAnnotationWriter.java116 checkType(Class.class,rt);
127 checkType(arg.getClass(),rt);
176 checkType(Class.class,itemType);
180 checkType(arg.getClass(),itemType);
207 private void checkType(Class<?> actual, Class<?> expected) { method in class:TypedAnnotationWriter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DResolver.java153 * @param checkType If true, this verifies that the content type is known
161 boolean checkType,
205 if (checkType) {
243 * @param checkType if true, the MIME content type for the entity
246 static public InputSource createInputSource(URL uri, boolean checkType) argument
252 if (checkType) {
159 createInputSource(String contentType, InputStream stream, boolean checkType, String scheme) argument
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DMethodResultTest.java171 ok &= checkType("getAttribute", getAttributeExotic, Exotic.class);
172 ok &= checkType("getAttributes", attrValue(getAttrs), Exotic.class);
173 ok &= checkType("setAttributes", attrValue(setAttrs), Exotic.class);
174 ok &= checkType("invoke", invokeExotic, Exotic.class);
175 ok &= checkType("getMBeanInfo", exoticMBI, ExoticMBeanInfo.class);
199 private static boolean checkType(String what, Object object, method in class:MethodResultTest
201 return checkType(what, object, wrongClass, false);
204 private static boolean checkType(String what, Object object, method in class:MethodResultTest
238 return checkType(what, exception, wrongClass, true);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DX509KeyManagerImpl.java331 CheckType checkType, AlgorithmConstraints constraints) {
341 issuerSet, false, checkType, constraints);
384 CheckType checkType, AlgorithmConstraints constraints) {
395 issuerSet, true, checkType, constraints);
611 boolean findAll, CheckType checkType,
695 checkType.check((X509Certificate)chain[0], date);
330 chooseAlias(List<KeyType> keyTypeList, Principal[] issuers, CheckType checkType, AlgorithmConstraints constraints) argument
383 getAliases(String keyType, Principal[] issuers, CheckType checkType, AlgorithmConstraints constraints) argument
609 getAliases(int builderIndex, List<KeyType> keyTypes, Set<Principal> issuerSet, boolean findAll, CheckType checkType, AlgorithmConstraints constraints) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1535 void checkType (CellTypeState expected, CellTypeState actual) { method in class:GenerateOopMap
1547 checkType(expected, actual);
1624 checkType(out, actual);
1801 checkType(refCTS, actual);
1813 checkType(refCTS, actual);
1869 checkType(refCTS, actual);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java429 Type checkType(DiagnosticPosition pos, Type found, Type req) { method in class:Check
430 return checkType(pos, found, req, "incompatible.types");
433 Type checkType(DiagnosticPosition pos, Type found, Type req, String errKey) { method in class:Check

Completed in 73 milliseconds