Searched defs:theType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DArrayType.java67 public static ArrayType forArray( sun.tools.java.Type theType, argument
72 sun.tools.java.Type arrayType = theType;
84 Type existing = getType(theType,stack);
102 result = new ArrayType(stack,temp,theType.getArrayDimension());
106 putType(theType,result,stack);
H A DGenerator.java158 public boolean requiresGeneration (File target, Type theType) { argument
170 String className = theType.getQualifiedName().replace('.',File.separatorChar);
H A DIDLNames.java402 public static String getArrayName (Type theType, int arrayDimension) { argument
415 idlName.append(replace(stripLeadingUnderscore(theType.getIDLName())," ","_"));
425 public static String[] getArrayModuleNames (Type theType) { argument
428 String[] typeModule = theType.getIDLModuleNames();
H A DStubGenerator.java348 CompoundType theType = (CompoundType) outputType.getType();
372 CompoundType theType = (CompoundType) outputType.getType();
373 RemoteType[] remoteInterfaces = getDirectRemoteInterfaces(theType);
383 setStandardClassesInUse(theType,true);
387 addClassesInUse(theType,remoteInterfaces);
403 String objName = testUtil(getName(remoteInterfaces[i]), theType);
412 if (!implementsRemote(theType)) {
422 writeIds( p, theType, false );
433 CompoundType.Method[] remoteMethods = theType.getMethods();
443 writeStubMethod(p, remoteMethods[i], theType);
794 implementsRemote(CompoundType theType) argument
813 writeStubMethod( IndentingWriter p, CompoundType.Method method, CompoundType theType) argument
866 writeLocalStubMethodBody(IndentingWriter p, CompoundType.Method method, CompoundType theType) argument
959 writeNonLocalStubMethodBody( IndentingWriter p, CompoundType.Method method, CompoundType theType) argument
1340 getAllRemoteRepIDs(CompoundType theType) argument
1449 collectAllRemoteInterfaces(CompoundType theType) argument
1468 addRemoteInterfaces(Vector list, CompoundType theType) argument
1491 getDirectRemoteInterfaces(CompoundType theType) argument
1565 writeIds(IndentingWriter p, CompoundType theType, boolean isTie ) argument
[all...]
H A DCompoundType.java798 protected static Type makeType (sun.tools.java.Type theType, argument
806 String key = theType.toString();
825 int typeCode = theType.getTypeCode();
838 result = PrimitiveType.forPrimitive(theType,stack);
846 result = ArrayType.forArray(theType,stack);
858 theClass = env.getClassDeclaration(theType).getClassDefinition(env);
954 default: throw new CompilerError("Unknown typecode (" + typeCode + ") for " + theType.getTypeSignature());
1161 * Return true if theType is a conforming constant type.
1168 * Return true if theType is a conforming constant type.
1170 private boolean isConformingConstantType (sun.tools.java.Type theType,MemberDefinitio argument
[all...]

Completed in 2016 milliseconds