Lines Matching refs:official

106   public DynArray create_array(TypeCode official, TypeCode type)  in create_array()  argument
108 return new gnuDynArray(official, type, this, orb, true); in create_array()
114 public DynSequence create_sequence(TypeCode official, TypeCode type) in create_sequence() argument
116 return new gnuDynSequence(official, type, this, orb); in create_sequence()
127 public DynStruct create_structure(TypeCode official, TypeCode type) in create_structure() argument
129 return new gnuDynStruct(official, type, this, orb); in create_structure()
140 public DynUnion create_union(TypeCode official, TypeCode type) in create_union() argument
144 return new gnuDynUnion(official, type, this, orb); in create_union()
160 public DynValue create_value(TypeCode official, TypeCode type) in create_value() argument
162 return new gnuDynValue(official, type, this, orb); in create_value()
173 public DynValueBox create_value_box(TypeCode official, TypeCode type) in create_value_box() argument
175 return new gnuDynValueBox(official, type, this, orb); in create_value_box()
186 public DynEnum create_enumeration(TypeCode official, TypeCode type) in create_enumeration() argument
188 return new gnuDynEnum(official, type, this, orb); in create_enumeration()
199 public DynFixed create_fixed(TypeCode official, TypeCode type) in create_fixed() argument
201 return new gnuDynFixed(official, type, this, orb); in create_fixed()
212 public DynAny create_alias(TypeCode official, TypeCode type) in create_alias() argument
217 return create_dyn_any_from_type_code(official, type.content_type()); in create_alias()
228 public DynAny create_simple(TypeCode official, TypeCode type) in create_simple() argument
231 return new gnuDynAny(holder, official, type, this, orb); in create_simple()
251 public DynAny create_dyn_any_from_type_code(TypeCode official, TypeCode type) in create_dyn_any_from_type_code() argument
260 return create_array(official, type); in create_dyn_any_from_type_code()
263 return create_sequence(official, type); in create_dyn_any_from_type_code()
267 return create_structure(official, type); in create_dyn_any_from_type_code()
270 return create_union(official, type); in create_dyn_any_from_type_code()
273 return create_value(official, type); in create_dyn_any_from_type_code()
276 return create_value_box(official, type); in create_dyn_any_from_type_code()
279 return create_enumeration(official, type); in create_dyn_any_from_type_code()
282 return create_fixed(official, type); in create_dyn_any_from_type_code()
285 return create_alias(official, type); in create_dyn_any_from_type_code()
288 return new gnuDynAny(null, official, type, this, orb); in create_dyn_any_from_type_code()
291 d = create_simple(official, type); in create_dyn_any_from_type_code()
296 d = create_simple(official, type); in create_dyn_any_from_type_code()
304 d = create_simple(official, type); in create_dyn_any_from_type_code()
309 d = create_simple(official, type); in create_dyn_any_from_type_code()
322 return create_simple(official, type); in create_dyn_any_from_type_code()