Searched defs:typeCode (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTCUtility.java64 static void marshalIn(org.omg.CORBA.portable.OutputStream s, TypeCode typeCode, long l, Object o) { argument
65 switch (typeCode.kind().value()) {
159 typeCode.fixed_digits(),
160 typeCode.fixed_scale());
191 static void unmarshalIn(org.omg.CORBA.portable.InputStream s, TypeCode typeCode, long[] la, Object[] oa) argument
193 int type = typeCode.kind().value();
293 o = ((CDRInputStream)s).read_fixed(typeCode.fixed_digits(),
294 typeCode.fixed_scale());
297 o = bigDecimal.movePointLeft((int)typeCode.fixed_scale());
H A DAnyImpl.java96 private TypeCodeImpl typeCode; field in class:AnyImpl
164 anyImpl.typeCode = TypeCodeImpl.convertToNative(orb, anyImpl.typeCode);
183 typeCode = orb.get_primitive_tc(TCKind._tk_null);
199 typeCode = objImpl.typeCode;
221 return typeCode;
225 return realType(typeCode);
250 typeCode = TypeCodeImpl.convertToNative(orb, tc);
274 if (!typeCode
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynArrayImpl.java57 protected DynArrayImpl(ORB orb, TypeCode typeCode) { argument
58 super(orb, typeCode);
64 // This typeCode is of kind tk_array.
65 TypeCode typeCode = any.type();
97 // This typeCode is of kind tk_array.
98 TypeCode typeCode = any.type();
H A DDynFixedImpl.java56 protected DynFixedImpl(ORB orb, TypeCode typeCode) { argument
57 super(orb, typeCode);
H A DDynStructImpl.java53 // We can be sure that typeCode is of kind tk_struct
59 protected DynStructImpl(ORB orb, TypeCode typeCode) { argument
60 // We can be sure that typeCode is of kind tk_struct
61 super(orb, typeCode);
H A DDynValueImpl.java56 protected DynValueImpl(ORB orb, TypeCode typeCode) { argument
57 super(orb, typeCode);
H A DDynSequenceImpl.java62 protected DynSequenceImpl(ORB orb, TypeCode typeCode) { argument
63 super(orb, typeCode);
69 // This typeCode is of kind tk_sequence.
70 TypeCode typeCode = any.type();
H A DDynValueBoxImpl.java56 protected DynValueBoxImpl(ORB orb, TypeCode typeCode) { argument
57 super(orb, typeCode);
H A DDynValueCommonImpl.java60 protected DynValueCommonImpl(ORB orb, TypeCode typeCode) { argument
61 super(orb, typeCode);
H A DDynAnyCollectionImpl.java63 protected DynAnyCollectionImpl(ORB orb, TypeCode typeCode) { argument
64 super(orb, typeCode);
H A DDynAnyUtil.java48 static boolean isConsistentType(TypeCode typeCode) { argument
49 int kind = typeCode.kind().value();
97 static DynAny createMostDerivedDynAny(TypeCode typeCode, ORB orb) argument
100 if (typeCode == null || ! DynAnyUtil.isConsistentType(typeCode))
103 switch (typeCode.kind().value()) {
105 return new DynSequenceImpl(orb, typeCode);
107 return new DynStructImpl(orb, typeCode);
109 return new DynArrayImpl(orb, typeCode);
111 return new DynUnionImpl(orb, typeCode);
143 createDefaultAnyOfType(TypeCode typeCode, ORB orb) argument
[all...]
H A DDynEnumImpl.java75 protected DynEnumImpl(ORB orb, TypeCode typeCode) { argument
76 super(orb, typeCode);
H A DDynAnyComplexImpl.java64 // We can be sure that typeCode is of kind tk_struct
70 protected DynAnyComplexImpl(ORB orb, TypeCode typeCode) { argument
71 // We can be sure that typeCode is of kind tk_struct
72 super(orb, typeCode);
324 // This typeCode is of kind tk_struct.
325 TypeCode typeCode = any.type();
333 length = typeCode.member_count();
343 memberName = typeCode.member_name(i);
344 memberType = typeCode.member_type(i);
367 // This typeCode i
[all...]
H A DDynAnyImpl.java92 protected DynAnyImpl(ORB orb, TypeCode typeCode) { argument
96 this.any = DynAnyUtil.createDefaultAnyOfType(typeCode, orb);
H A DDynUnionImpl.java64 // We can be sure that typeCode is of kind tk_union
68 protected DynUnionImpl(ORB orb, TypeCode typeCode) { argument
69 // We can be sure that typeCode is of kind tk_union
70 super(orb, typeCode);
H A DDynAnyBasicImpl.java58 protected DynAnyBasicImpl(ORB orb, TypeCode typeCode) { argument
59 super(orb, typeCode);
H A DDynAnyConstructedImpl.java80 protected DynAnyConstructedImpl(ORB orb, TypeCode typeCode) { argument
81 // assertion: typeCode has been checked to be valid for this particular subclass.
83 super(orb, typeCode);
84 if (typeCode != null) {
98 TypeCode typeCode = any.type();
99 if (typeCode instanceof TypeCodeImpl) {
100 if (((TypeCodeImpl)typeCode).is_recursive())
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DInterfaceType.java100 protected InterfaceType(ContextStack stack, int typeCode, ClassDefinition classDef) { argument
101 super(stack,typeCode,classDef); // Call special parent constructor.
103 if ((typeCode & TM_INTERFACE) == 0 || ! classDef.isInterface()) {
115 int typeCode) {
116 super(stack,classDef,typeCode);
118 if ((typeCode & TM_INTERFACE) == 0 || ! classDef.isInterface()) {
113 InterfaceType(ContextStack stack, ClassDefinition classDef, int typeCode) argument
H A DPrimitiveType.java78 int typeCode;
81 case TC_VOID: typeCode = TYPE_VOID; break;
82 case TC_BOOLEAN: typeCode = TYPE_BOOLEAN; break;
83 case TC_BYTE: typeCode = TYPE_BYTE; break;
84 case TC_CHAR: typeCode = TYPE_CHAR; break;
85 case TC_SHORT: typeCode = TYPE_SHORT; break;
86 case TC_INT: typeCode = TYPE_INT; break;
87 case TC_LONG: typeCode = TYPE_LONG; break;
88 case TC_FLOAT: typeCode = TYPE_FLOAT; break;
89 case TC_DOUBLE: typeCode
169 PrimitiveType(ContextStack stack, int typeCode) argument
[all...]
H A DSpecialClassType.java89 int typeCode = getTypeCode(type,theClass,stack);
91 if (typeCode != TYPE_NONE) {
95 SpecialClassType result = new SpecialClassType(stack,typeCode,theClass);
121 private SpecialClassType(ContextStack stack, int typeCode, argument
123 super(stack,typeCode | TM_SPECIAL_CLASS | TM_CLASS | TM_COMPOUND, theClass);
131 switch (typeCode) {
133 idlName = IDLNames.getTypeName(typeCode,constant);
H A DSpecialInterfaceType.java127 private SpecialInterfaceType(ContextStack stack, int typeCode, argument
129 super(stack,typeCode | TM_SPECIAL_INTERFACE | TM_INTERFACE | TM_COMPOUND, theClass);
156 int typeCode = TYPE_NONE;
166 typeCode = TYPE_JAVA_RMI_REMOTE;
170 typeCode = TYPE_ANY;
174 typeCode = TYPE_ANY;
178 typeCode = TYPE_ANY;
183 typeCode = TYPE_CORBA_OBJECT;
191 idlName = IDLNames.getTypeName(typeCode,constant);
213 if (typeCode
[all...]
H A DClassType.java129 protected ClassType(ContextStack stack, int typeCode, ClassDefinition classDef) { argument
130 super(stack,typeCode,classDef); // Call special parent constructor.
131 if ((typeCode & TM_CLASS) == 0 && classDef.isInterface()) {
141 protected ClassType(int typeCode, ClassDefinition classDef,ContextStack stack) { argument
142 super(stack,classDef,typeCode);
144 if ((typeCode & TM_CLASS) == 0 && classDef.isInterface()) {
157 int typeCode) {
158 super(stack,classDef,typeCode);
159 if ((typeCode & TM_CLASS) == 0 && classDef.isInterface()) {
155 ClassType(ContextStack stack, ClassDefinition classDef, int typeCode) argument
H A DRemoteType.java134 protected RemoteType(ContextStack stack, ClassDefinition classDef, int typeCode) { argument
135 super(stack,classDef,typeCode);
H A DIDLNames.java1098 public static String getTypeName(int typeCode, boolean isConstant) { argument
1102 switch (typeCode) {
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DType.java67 protected int typeCode; field in class:Type
101 protected Type(int typeCode, String typeSig) { argument
102 this.typeCode = typeCode;
118 return typeCode;
128 return 1 << typeCode;
135 return typeCode == tc;
164 return ((1 << typeCode) & tm) != 0;
366 switch (typeCode) {
394 switch (typeCode) {
[all...]

Completed in 55 milliseconds

12