Searched refs:ofType (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/macosx/native/com/apple/resources/
H A DMacOSXResourceBundle.m102 NSString *propertyFilePath = [javaBundle pathForResource:baseFilename ofType:@"properties"];
/openjdk7/jdk/src/macosx/native/com/apple/eio/
H A DCFileManager.m180 ofType:typeName
/openjdk7/jdk/src/macosx/native/sun/osxapp/
H A DNSApplicationAWT.m87 defaultNibFile = [javaBundle pathForResource:@"DefaultApp" ofType:@"nib"];
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1418 static MethodHandle ofType(int n) { method in class:MethodHandlesTest.Callee
1419 return ofType(Object.class, n);
1421 static MethodHandle ofType(Class<?> rtype, int n) { method in class:MethodHandlesTest.Callee
1423 return ofType(MethodType.methodType(rtype, Object[].class));
1424 return ofType(MethodType.genericMethodType(n).changeReturnType(rtype));
1426 static MethodHandle ofType(Class<?> rtype, Class<?>... ptypes) { method in class:MethodHandlesTest.Callee
1427 return ofType(MethodType.methodType(rtype, ptypes));
1429 static MethodHandle ofType(MethodType type) { method in class:MethodHandlesTest.Callee
1447 testConvert(Callee.ofType(1), null, "id", int.class);
1448 testConvert(Callee.ofType(
[all...]

Completed in 39 milliseconds