Searched refs:mType (Results 1 - 21 of 21) sorted by relevance

/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DValueBoxGen.java82 SymtabEntry mType = member.type ();
84 if (mType instanceof PrimitiveEntry)
229 SymtabEntry mType = Util.typeOf (member);
230 index = ((JavaGenerator)mType.generator ()).type (index, indent, tcoffsets, name, mType, stream);
266 SymtabEntry mType = member.type ();
267 if (mType instanceof PrimitiveEntry ||
268 mType instanceof SequenceEntry ||
269 mType instanceof TypedefEntry ||
270 mType instanceo
[all...]
H A DValueBoxGen24.java105 SymtabEntry mType = member.type ();
106 if (mType instanceof PrimitiveEntry ||
107 mType instanceof SequenceEntry ||
108 mType instanceof TypedefEntry ||
109 mType instanceof StringEntry ||
111 stream.println (indent + Util.javaName (mType) + " tmp;");
115 stream.println (indent + Util.javaName (mType) + " tmp = " +
116 Util.helperName ( mType, true ) + ".read (istream);");
117 if (mType instanceof PrimitiveEntry)
153 SymtabEntry mType
[all...]
H A DHolder.java102 SymtabEntry mType = member.type ();
103 holderType = Util.javaName (mType);
189 SymtabEntry mType = member.type ();
190 if (mType instanceof StringEntry)
193 else if (mType instanceof PrimitiveEntry)
215 SymtabEntry mType = member.type ();
216 if (mType instanceof StringEntry)
219 else if (mType instanceof PrimitiveEntry)
H A DStructGen.java353 SymtabEntry mType = member.type ();
355 if (!member.arrayInfo ().isEmpty () || mType instanceof SequenceEntry ||
356 mType instanceof PrimitiveEntry || mType instanceof StringEntry ||
357 mType instanceof TypedefEntry)
359 else if (mType instanceof ValueBoxEntry)
362 Vector st = ((ValueBoxEntry) mType).state ();
376 jHelper = Util.helperName (mType, true);
380 jName = Util.javaName (mType); // name of mapped Java class
382 //jHelper = Util.helperName (mType, fals
[all...]
H A DValueGen.java465 SymtabEntry mType = Util.typeOf (member);
468 repId = Util.helperName (mType, true) + ".id ()"; // <d61056>
469 if (mType instanceof ValueEntry || mType instanceof ValueBoxEntry)
474 String id = mType.repositoryID ().ID ();
520 SymtabEntry mType = Util.typeOf (member);
521 return !( mType instanceof PrimitiveEntry ||
522 mType instanceof StringEntry ||
523 ( mType instanceof TypedefEntry &&
524 !(((TypedefEntry)mType)
[all...]
H A DValueGen24.java322 SymtabEntry mType = member.type ();
324 if (mType instanceof PrimitiveEntry ||
325 mType instanceof TypedefEntry ||
326 mType instanceof SequenceEntry ||
327 mType instanceof StringEntry ||
332 Util.helperName (mType, true) + ".read (istream);"); // <d61056>
361 SymtabEntry mType = member.type ();
363 if (mType instanceof PrimitiveEntry ||
364 mType instanceof TypedefEntry ||
365 mType instanceo
[all...]
H A DHelper.java114 SymtabEntry mType = member.type ();
116 if (mType instanceof PrimitiveEntry)
119 helperType = Util.javaName (mType);
H A DMethodGen.java377 SymtabEntry mType = member.type ();
378 if (mType instanceof PrimitiveEntry)
571 SymtabEntry mType = member.type ();
572 if (mType instanceof PrimitiveEntry)
1024 SymtabEntry mType = member.type ();
1027 if (mType instanceof PrimitiveEntry && name.endsWith (".value"))
H A DUtil.java307 SymtabEntry mType = member.type ();
308 if (mType instanceof PrimitiveEntry)
316 name = javaName (mType);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/org/glassfish/external/amx/
H A DMBeanListener.java53 private final String mType; field in class:MBeanListener
56 /** mType and mName should be null if mObjectName is non-null, and vice versa */
65 return "MBeanListener: ObjectName=" + mObjectName + ", type=" + mType + ", name=" + mName;
70 return mType;
168 mType = null;
207 mType = type;
253 String props = TYPE_KEY + "=" + mType;
305 if ( mType != null && mType.equals(objectName.getKeyProperty(TYPE_KEY)) )
/openjdk9/jdk/test/javax/print/attribute/
H A DTestOrientationSupportForStreamPrnSrv.java45 String mType = "application/postscript";
52 mType);
H A DServiceDialogTest.java65 String mType = "application/postscript";
70 StreamPrintServiceFactory[] factories = StreamPrintServiceFactory.lookupStreamPrintServiceFactories(flavor, mType);
/openjdk9/jdk/test/javax/print/
H A DStreamPrintingOrientation.java58 String mType = "application/postscript";
63 StreamPrintServiceFactory[] factories = PrinterJob.lookupStreamPrintServices(mType);
/openjdk9/jdk/test/java/lang/reflect/DefaultStaticTest/
H A DDefaultStaticInvokeTest.java370 MethodType mType = (param != null)
376 ? lookup.findStatic(clazz, methodName, mType)
377 : lookup.findVirtual(clazz, methodName, mType);
380 ? lookup.findVirtual(clazz, methodName, mType)
381 : lookup.findStatic(clazz, methodName, mType);
/openjdk9/jdk/src/java.desktop/share/classes/sun/print/
H A DPrintJob2D.java597 MediaType mType = unMapMedia((MediaSizeName)msn);
599 if (mType != null) {
600 pageAttributes.setMedia(mType);
1104 private static int[] getSize(MediaType mType) { argument
1110 if (SIZES[i] == mType) {
1119 public static MediaSizeName mapMedia(MediaType mType) { argument
1127 if (SIZES[i] == mType) {
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DJNIWriter.java545 StringBuilder getParameterSignature(Type mType) argument
548 for (Type pType : mType.getParameterTypes()) {
554 StringBuilder getReturnSignature(Type mType) argument
556 return getJvmSignature(mType.getReturnType());
559 StringBuilder getSignature(Type mType) throws SignatureException { argument
561 sb.append("(").append(getParameterSignature(mType)).append(")");
562 sb.append(getReturnSignature(mType));
/openjdk9/jdk/test/java/lang/invoke/
H A DExplicitCastArgumentsTest.java463 MethodType mType = Helper.randomMethodTypeGenerator(arity);
467 Class<?> rType = mType.returnType();
477 original = Helper.addTrailingArgs(original, arity, mType.parameterList());
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DEnvironment.java612 Type mType = m.getType();
613 if (!mType.isType(TC_METHOD))
615 Type mArgs[] = mType.getArgumentTypes();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DTypeEnter.java1032 Type mType = new MethodType(argtypes, null, thrown, c);
1034 new ForAll(typarams, mType) :
1035 mType;
H A DTransTypes.java311 Type.MethodType mType = (Type.MethodType)bridgeType;
312 List<Type> argTypes = mType.argtypes;
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javah/
H A DLLNI.java491 TypeMirror mType = types.erasure(method.getReturnType());

Completed in 112 milliseconds