/openjdk7/jdk/test/java/awt/Modal/SupportedTest/ |
H A D | SupportedTest.java | 46 for (Dialog.ModalityType mt : Dialog.ModalityType.values()) 48 if (!tk.isModalityTypeSupported(mt)) 50 Dialog d = new Dialog(f, "D", mt); 53 System.err.println("Error: modality type " + mt + " is not supported\n" +
|
/openjdk7/hotspot/test/compiler/7158807/ |
H A D | Test7158807.java | 44 MethodType mt = MethodType.methodType(java.lang.String.class); 45 System.out.println(mt); 60 mh.invoke(mt, mh);
|
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/ |
H A D | D3DPaints.cpp | 176 D3DMATRIX mt; 177 ZeroMemory(&mt, sizeof(mt)); 178 mt._11 = (float)p0; 179 mt._21 = (float)p1; 180 mt._31 = (float)0.0; 181 mt._41 = (float)p3; 182 mt._12 = 0.0f; 183 mt._22 = 1.0f; 184 mt 229 D3DMATRIX mt; local 282 D3DMATRIX mt; local 408 D3DMATRIX mt; local [all...] |
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/ |
H A D | SplashScreen.java | 42 MediaTracker mt = new MediaTracker(this); 43 mt.addImage(screen.getImage(), 0); 46 mt.waitForAll();
|
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/ |
H A D | ActivationDataFlavor.java | 202 MimeType mt = null; 206 mt = new MimeType(mimeType); 212 return mimeObject.match(mt);
|
/openjdk7/jdk/src/share/classes/sun/management/ |
H A D | MappedMXBeanType.java | 74 MappedMXBeanType mt = null; 78 mt = new EnumMXBeanType(c); 80 mt = new ArrayMXBeanType(c); 82 mt = new CompositeDataMXBeanType(c); 90 mt = new ListMXBeanType(pt); 92 mt = new MapMXBeanType(pt); 97 mt = new GenericArrayMXBeanType(t); 100 if (mt == null) { 104 convertedTypes.put(javaType, mt); 105 return mt; [all...] |
/openjdk7/jdk/src/share/classes/java/lang/invoke/ |
H A D | SimpleMethodHandle.java | 66 MethodHandle copyWith(MethodType mt, LambdaForm lf) { argument 67 return new SimpleMethodHandle(mt, lf);
|
H A D | MethodTypeForm.java | 255 static MethodTypeForm findForm(MethodType mt) { argument 256 MethodType erased = canonicalize(mt, ERASE, ERASE); 259 return new MethodTypeForm(mt); 282 public static MethodType canonicalize(MethodType mt, int howRet, int howArgs) { argument 283 Class<?>[] ptypes = mt.ptypes(); 285 Class<?> rtype = mt.returnType();
|
H A D | BoundMethodHandle.java | 183 public abstract BoundMethodHandle clone(MethodType mt, LambdaForm lf) throws Throwable; argument 184 public abstract BoundMethodHandle cloneExtendL(MethodType mt, LambdaForm lf, Object narg) throws Throwable; argument 185 public abstract BoundMethodHandle cloneExtendI(MethodType mt, LambdaForm lf, int narg) throws Throwable; argument 186 public abstract BoundMethodHandle cloneExtendJ(MethodType mt, LambdaForm lf, long narg) throws Throwable; argument 187 public abstract BoundMethodHandle cloneExtendF(MethodType mt, LambdaForm lf, float narg) throws Throwable; argument 188 public abstract BoundMethodHandle cloneExtendD(MethodType mt, LambdaForm lf, double narg) throws Throwable; argument 206 public Species_L(MethodType mt, LambdaForm lf, Object argL0) { argument 207 super(mt, lf); 218 public final BoundMethodHandle clone(MethodType mt, LambdaForm lf) throws Throwable { argument 219 return new Species_L(mt, l 222 cloneExtendL(MethodType mt, LambdaForm lf, Object narg) argument 226 cloneExtendI(MethodType mt, LambdaForm lf, int narg) argument 230 cloneExtendJ(MethodType mt, LambdaForm lf, long narg) argument 234 cloneExtendF(MethodType mt, LambdaForm lf, float narg) argument 238 cloneExtendD(MethodType mt, LambdaForm lf, double narg) argument [all...] |
H A D | MethodType.java | 302 MethodType mt; 307 mt = objectOnlyTypes[ootIndex]; 308 if (mt != null) return mt; 313 mt = makeImpl(Object.class, ptypes, true); 315 objectOnlyTypes[ootIndex] = mt; // cache it here also! 317 return mt;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/ |
H A D | MimeTypeRange.java | 152 for (MimeTypeRange mt : types) { 153 if(majorType==null) majorType = mt.majorType; 154 if(!majorType.equals(mt.majorType))
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/ |
H A D | TypeUseFactory.java | 51 public static TypeUse makeMimeTyped( TypeUse t, MimeType mt ) { 56 return new TypeUseImpl( t.getInfo(), t.isCollection(), t.idUse(), mt, t.getAdapterUse() );
|
/openjdk7/langtools/test/tools/javac/api/ |
H A D | TestResolveError.java | 93 TypeMirror mt = types.asMemberOf(type, member); 94 System.out.format("%s : %s -> %s%n", member.getSimpleName(), member.asType(), mt);
|
/openjdk7/jdk/test/java/lang/reflect/Generics/ |
H A D | TestC1.java | 49 public abstract T mt(T t); method in class:C1 115 Method mt = cls.getMethod("mt", params3); 119 Type rt_mt = mt.getGenericReturnType(); 189 Type[] pt_mt = mt.getGenericParameterTypes(); 192 "C1.mt has one parameter"; 196 "The generic type of the parameter of mt(T) is a type variable"; 200 "The name of the type parameter of mt is T, not " + tv.getName(); 219 Type[] et_mt = mt.getGenericExceptionTypes(); 223 "Method C1.mt shoul [all...] |
H A D | TestC2.java | 50 public abstract T mt(T t); method in class:C0 92 public abstract T1 mt(T2 t); method in class:C2 326 Method mt = cls.getMethod("mt", params3); 351 Type rt_mt = mt.getGenericReturnType(); 354 "Return type of mt is a type variable"; 422 Type[] pt_mt = mt.getGenericParameterTypes(); 425 "C2.mt has one parameter"; 429 "The generic type of the parameter of mt(T) is a type variable"; 433 "The name of the type parameter of mt i [all...] |
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/ |
H A D | InputImageTests.java | 323 final MediaTracker mt = new MediaTracker(canvas); 330 mt.addImage(img, 0); 331 mt.waitForID(0, 0); 332 mt.removeImage(img, 0); 342 mt.addImage(img, 0); 343 mt.waitForID(0, 0); 344 mt.removeImage(img, 0); 354 mt.addImage(img, 0); 355 mt.waitForID(0, 0); 356 mt [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/ |
H A D | RawTypeSet.java | 186 MimeType mt = t.getExpectedMimeType(); 187 if(mt!=null) return mt;
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | referenceProcessor.hpp | 493 void set_mt_discovery(bool mt) { _discovery_is_mt = mt; } argument 497 void set_mt_processing(bool mt) { _processing_is_mt = mt; } argument 588 bool mt): 591 _rp->set_mt_discovery(mt); 653 bool mt): 656 _rp->set_mt_processing(mt); 587 ReferenceProcessorMTDiscoveryMutator(ReferenceProcessor* rp, bool mt) argument 652 ReferenceProcessorMTProcMutator(ReferenceProcessor* rp, bool mt) argument
|
/openjdk7/jdk/test/java/lang/invoke/ |
H A D | PermuteArgsTest.java | 162 MethodType mt = mh.type(); 163 int posArgs = mt.parameterCount() - 1; 183 MethodType mt = mh.type(); 184 int posArgs = mt.parameterCount() - 1; 185 Class<?> reptype = mt.parameterType(posArgs).getComponentType(); 186 MethodType mt1 = mt.dropParameterTypes(posArgs, posArgs+1); 221 MethodType mt = mh.type(); 222 int[] perm = nullPerm(mt.parameterCount()); 288 MethodType mt = mh.type(); 289 MethodType pmt = methodType(mt [all...] |
H A D | MethodTypeTest.java | 105 for (MethodType mt : GALLERY) { 106 assertFalse(mt.toString(), gallery2.contains(mt)); 107 gallery2.add(mt); 443 for (MethodType mt : GALLERY) { 444 testSerializedEquality(mt); 453 for (MethodType mt : GALLERY) { 454 Collections.addAll(stuff, mt.parameterArray()); 538 MethodType mt = (MethodType) c[0]; 539 System.out.println("deserialize "+mt); [all...] |
H A D | JavaDocExamplesTest.java | 229 MethodType mt; MethodHandle mh; 231 // mt is (char,char)String 232 mt = MethodType.methodType(String.class, char.class, char.class); 233 mh = lookup.findVirtual(String.class, "replace", mt); 240 // mt is (Object[])List 241 mt = MethodType.methodType(java.util.List.class, Object[].class); 242 mh = lookup.findStatic(java.util.Arrays.class, "asList", mt); 247 // mt is (Object,Object,Object)Object 248 mt = MethodType.genericMethodType(3); 249 mh = mh.asType(mt); [all...] |
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CImage.java | 100 final MediaTracker mt = new MediaTracker(new Label()); 102 mt.addImage(image, id); 105 mt.waitForID(id); 110 if (mt.isErrorID(id)) {
|
/openjdk7/jdk/make/common/shared/ |
H A D | Compiler-msvc.gmk | 71 MT = $(_OTHER_TOOLS_BIN)/mt.exe
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | MediaTracker.java | 820 MediaEntry(MediaTracker mt, int id) { argument 821 tracker = mt; 891 ImageMediaEntry(MediaTracker mt, Image img, int c, int w, int h) { argument 892 super(mt, c);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ |
H A D | SimpleTypeBuilder.java | 785 MimeTypeRange mt = MimeTypeRange.merge(types); 788 if(mt.majorType.equalsIgnoreCase("image")) 789 return CBuiltinLeafInfo.IMAGE.makeMimeTyped(mt.toMimeType()); 791 if(( mt.majorType.equalsIgnoreCase("application") || mt.majorType.equalsIgnoreCase("text")) 792 && isXml(mt.subType)) 793 return CBuiltinLeafInfo.XML_SOURCE.makeMimeTyped(mt.toMimeType()); 795 if((mt.majorType.equalsIgnoreCase("text") && (mt.subType.equalsIgnoreCase("plain")) )) { 796 return CBuiltinLeafInfo.STRING.makeMimeTyped(mt [all...] |