Searched refs:typeCode (Results 1 - 25 of 34) sorted by relevance

12

/openjdk10/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
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 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 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 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 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 DRemoteType.java134 protected RemoteType(ContextStack stack, ClassDefinition classDef, int typeCode) { argument
135 super(stack,classDef,typeCode);
H A DType.java125 private int typeCode; field in class:Type
271 return typeCode;
423 * @param typeCodeFilter The typeCode to use as a filter.
432 * @param typeCodeFilter The typeCode to use as a filter.
772 typeCode = fullTypeCode & TYPE_MASK;
780 typeCode = fullTypeCode & TYPE_MASK;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/dynamicany/
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 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 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 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 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 DDynEnumImpl.java75 protected DynEnumImpl(ORB orb, TypeCode typeCode) { argument
76 super(orb, typeCode);
H A DDynValueCommonImpl.java60 protected DynValueCommonImpl(ORB orb, TypeCode typeCode) { argument
61 super(orb, typeCode);
H A DDynValueBoxImpl.java56 protected DynValueBoxImpl(ORB orb, TypeCode typeCode) { argument
57 super(orb, typeCode);
H A DDynFixedImpl.java56 protected DynFixedImpl(ORB orb, TypeCode typeCode) { argument
57 super(orb, typeCode);
H A DDynAnyImpl.java92 protected DynAnyImpl(ORB orb, TypeCode typeCode) { argument
96 this.any = DynAnyUtil.createDefaultAnyOfType(typeCode, orb);
H A DDynAnyCollectionImpl.java63 protected DynAnyCollectionImpl(ORB orb, TypeCode typeCode) { argument
64 super(orb, typeCode);
/openjdk10/jdk/src/jdk.rmic/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...]
H A DMethodType.java70 if (t.typeCode != TC_METHOD) {
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImpl.java103 private TypeCodeImpl typeCode; field in class:AnyImpl
171 anyImpl.typeCode = TypeCodeImpl.convertToNative(orb, anyImpl.typeCode);
190 typeCode = orb.get_primitive_tc(TCKind._tk_null);
206 typeCode = objImpl.typeCode;
228 return typeCode;
232 return realType(typeCode);
257 typeCode = TypeCodeImpl.convertToNative(orb, tc);
281 if (!typeCode
[all...]
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());
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBuffer.java346 TypeCode typeCode = null;
350 typeCode = TypeCode.toTypeCode(typeCodeByte);
435 if (typeCode == TypeCode.LONG) {
449 + ", type_code = " + typeCode
454 if (typeCode == TypeCode.BYTE) {
462 + ", type_code = " + typeCode + " (0x"
497 + ", type_code = " + typeCode + " (0x"
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/rmi/rmic/
H A DRMIGenerator.java1056 int typeCode = type.getTypeCode();
1057 switch (typeCode) {
1072 throw new Error("unexpected type code: " + typeCode);
1089 int typeCode = type.getTypeCode();
1090 switch (typeCode) {
1120 throw new Error("unexpected type code: " + typeCode);
1165 int typeCode = type.getTypeCode();
1197 throw new Error("unexpected type code: " + typeCode);
1239 int typeCode = type.getTypeCode();
1240 switch (typeCode) {
[all...]

Completed in 284 milliseconds

12