Searched refs:any (Results 1 - 25 of 85) sorted by relevance

1234

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DServerRequest.java22 * or visit www.oracle.com if you need additional information or have any
133 * values for any "out" arguments before returning, and may also change
134 * the return values for any "inout" arguments.
165 * values for any "out" arguments before returning, and it may also change
166 * the return values for any "inout" arguments.
180 * Specifies any return value for the call.
202 * @param any an <code>Any</code> object containing the return value to be set
206 public void result(Any any) argument
208 set_result(any);
215 * Specifies any retur
236 set_result(org.omg.CORBA.Any any) argument
257 except(Any any) argument
287 set_exception(Any any) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyBasicImpl.java22 * or visit www.oracle.com if you need additional information or have any
52 protected DynAnyBasicImpl(ORB orb, Any any, boolean copyValue) { argument
53 super(orb, any, copyValue);
54 // set the current position to 0 if any has components, otherwise to -1.
60 // set the current position to 0 if any has components, otherwise to -1.
94 return DynAnyUtil.copy(any, orb);
106 if ( ! any.type().equal(dyn_any.type())) {
110 return any.equal(getAny(dyn_any));
128 return DynAnyUtil.createMostDerivedDynAny(any, orb, true);
162 if (any
[all...]
H A DDynAnyImpl.java22 * or visit www.oracle.com if you need additional information or have any
66 protected Any any = null; field in class:DynAnyImpl
80 protected DynAnyImpl(ORB orb, Any any, boolean copyValue) { argument
85 this.any = DynAnyUtil.copy(any, orb);
87 this.any = any;
88 // set the current position to 0 if any has components, otherwise to -1.
96 this.any = DynAnyUtil.createDefaultAnyOfType(typeCode, orb);
109 return any;
[all...]
H A DDynEnumImpl.java22 * or visit www.oracle.com if you need additional information or have any
47 // This int and the any value are kept in sync at all times
62 // The any doesn't have to be initialized. We have a default value in this case.
64 currentEnumeratorIndex = any.extract_long();
68 any.type(any.type());
69 any.insert_long(0);
79 any.insert_long(0);
89 memberCount = any.type().member_count();
98 memberName = any
[all...]
H A DDynValueBoxImpl.java22 * or visit www.oracle.com if you need additional information or have any
52 protected DynValueBoxImpl(ORB orb, Any any, boolean copyValue) { argument
53 super(orb, any, copyValue);
71 return any;
81 any = boxed;
112 components = new DynAny[] {DynAnyUtil.createMostDerivedDynAny(any, orb, false)};
121 any = DynAnyUtil.createDefaultAnyOfType(any.type(), orb);
122 components = new DynAny[] {DynAnyUtil.createMostDerivedDynAny(any, orb, false)};
130 any
[all...]
H A DDynAnyUtil.java22 * or visit www.oracle.com if you need additional information or have any
69 static DynAny createMostDerivedDynAny(Any any, ORB orb, boolean copyValue) argument
72 if (any == null || ! DynAnyUtil.isConsistentType(any.type()))
75 switch (any.type().kind().value()) {
77 return new DynSequenceImpl(orb, any, copyValue);
79 return new DynStructImpl(orb, any, copyValue);
81 return new DynArrayImpl(orb, any, copyValue);
83 return new DynUnionImpl(orb, any, copyValue);
85 return new DynEnumImpl(orb, any, copyValu
310 isInitialized(Any any) argument
[all...]
H A DDynFixedImpl.java22 * or visit www.oracle.com if you need additional information or have any
51 protected DynFixedImpl(ORB orb, Any any, boolean copyValue) { argument
52 super(orb, any, copyValue);
77 return any.extract_fixed().toString();
108 digits = any.type().fixed_digits();
109 scale = any.type().fixed_scale();
196 any.insert_fixed(result, any.type());
204 digits = any.type().fixed_digits();
205 scale = any
[all...]
H A DDynArrayImpl.java22 * or visit www.oracle.com if you need additional information or have any
53 protected DynArrayImpl(ORB orb, Any any, boolean copyValue) { argument
54 super(orb, any, copyValue);
65 TypeCode typeCode = any.type();
71 input = any.create_input_stream();
98 TypeCode typeCode = any.type();
H A DDynSequenceImpl.java22 * or visit www.oracle.com if you need additional information or have any
57 protected DynSequenceImpl(ORB orb, Any any, boolean copyValue) { argument
58 super(orb, any, copyValue);
70 TypeCode typeCode = any.type();
76 input = any.create_input_stream();
108 OutputStream out = any.create_output_stream();
119 any.read_value(out.create_input_stream(), any.type());
H A DDynUnionImpl.java22 * or visit www.oracle.com if you need additional information or have any
63 protected DynUnionImpl(ORB orb, Any any, boolean copyValue) { argument
65 super(orb, any, copyValue);
75 InputStream input = any.create_input_stream();
111 discriminatorType = any.type().discriminator_type();
120 memberCount = any.type().member_count();
129 memberLabel = any.type().member_label(i);
139 memberType = any.type().member_type(i);
149 memberName = any.type().member_name(i);
159 defaultIndex = any
[all...]
H A DDynAnyFactoryImpl.java22 * or visit www.oracle.com if you need additional information or have any
67 public org.omg.DynamicAny.DynAny create_dyn_any (org.omg.CORBA.Any any) argument
70 return DynAnyUtil.createMostDerivedDynAny(any, orb, true);
H A DDynStructImpl.java22 * or visit www.oracle.com if you need additional information or have any
52 protected DynStructImpl(ORB orb, Any any, boolean copyValue) { argument
54 super(orb, any, copyValue);
64 // The members (if any) are (recursively) initialized to their default values.
H A DDynValueImpl.java22 * or visit www.oracle.com if you need additional information or have any
52 protected DynValueImpl(ORB orb, Any any, boolean copyValue) { argument
53 super(orb, any, copyValue);
H A DDynAnyCollectionImpl.java22 * or visit www.oracle.com if you need additional information or have any
59 protected DynAnyCollectionImpl(ORB orb, Any any, boolean copyValue) { argument
60 super(orb, any, copyValue);
82 return any.type().content_type();
91 // For array any value indicates the boundary.
94 return any.type().length();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dfollow.set22 * or visit www.oracle.com if you need additional information or have any
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
62 <state_def> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
68 <state_modifier> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
162 <member> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, }
174 <case'> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
176 <case_label> case, default, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
210 <op_attribute> float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void
222 <param_attribute> float, double, long, short, unsigned, char, boolean, octet, any, strin
[all...]
H A Dfirst.set22 * or visit www.oracle.com if you need additional information or have any
56 <interface_body> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
58 <interface_body'> <FOLLOW>, typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state
64 <state_def'> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum, <FOLLOW>
66 <state_member> private, protected, public, float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
120 <type_declarator> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
122 <type_spec> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::, struct, union, enum
124 <simple_type_spec> float, double, long, short, unsigned, char, boolean, octet, any, sequence, string, id, ::
126 <base_type_spec> float, double, long, short, unsigned, char, boolean, octet, any
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/
H A DXSWildcardFunction.java22 * or visit www.oracle.com if you need additional information or have any
37 T any( XSWildcard.Any wc ); method in interface:XSWildcardFunction
H A DXSWildcardVisitor.java22 * or visit www.oracle.com if you need additional information or have any
37 void any( XSWildcard.Any wc ); method in interface:XSWildcardVisitor
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/
H A DContentModelContainer.java22 * or visit www.oracle.com if you need additional information or have any
43 Any any(); method in interface:ContentModelContainer
H A DNestedParticle.java22 * or visit www.oracle.com if you need additional information or have any
40 public Any any(); method in interface:NestedParticle
/openjdk7/corba/src/share/classes/org/omg/PortableInterceptor/
H A DIOP.idl22 * or visit www.oracle.com if you need additional information or have any
60 * ORBs are not required to create or understand any other profile,
61 * nor are they required to create or understand any of the components
89 * invocation using any of the protocols it supports; the content
106 * This data structure need not be used internally to any given ORB,
118 * invocation using any of the protocols it supports; the content
132 * <code>CORBA.Object</code>. Type IDs may only be "Null" in any message,
142 * relationship of the type of the object referred to and any other type.
198 * the protocol. The following should be specified in any protocol
225 * originating ORB. Anyone may register any OR
[all...]
H A DInterceptors.idl22 * or visit www.oracle.com if you need additional information or have any
57 any argument;
274 any get_slot (in SlotId id) raises (InvalidSlot);
289 void set_slot (in SlotId id, in any data) raises (InvalidSlot);
404 * Returns an any containing the result of the operation invocation.
405 * If the operation return type is void, this attribute will be an any
422 readonly attribute any result;
487 * will be any of: <code>SUCCESSFUL</code>,
504 * attribute will be any of: <code>SUCCESSFUL</code>, or
531 * If the given slot has not been set, then an any containin
[all...]
/openjdk7/corba/src/share/classes/org/omg/DynamicAny/
H A DDynamicAny.idl22 * or visit www.oracle.com if you need additional information or have any
36 * An any can be passed to a program that doesn't have any static information for the
37 type of the any (code generated for the type by an IDL compiler has not been
38 compiled with the object implementation). As a result, the object receiving the any
40 <P>DynAnys enable traversal of the data value associated with an any at
44 <P>Similarly, this facility enables the construction of an any at runtime, without having
52 * inserted into an any.
87 * also destroys any component DynAny objects obtained from it.
89 * Invoking operations on a destroyed top-level DynAny or any o
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDContentModelHandler.java156 public void any(Augmentations augmentations) throws XNIException; method in interface:XMLDTDContentModelHandler
166 * @see #any
182 * @see #any
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DCDREncapsCodec.java22 * or visit www.oracle.com if you need additional information or have any
86 * Convert the given any into a CDR encapsulated octet sequence
97 * Decode the given octet sequence into an any based on a CDR
109 * Convert the given any into a CDR encapsulated octet sequence. Only
121 * Decode the given octet sequence into an any based on a CDR
136 * Convert the given any into a CDR encapsulated octet sequence.
177 * Decode the given octet sequence into an any based on a CDR
188 AnyImpl any = null; // return value
207 any = new AnyImpl( (com.sun.corba.se.spi.orb.ORB)orb );
208 any
[all...]

Completed in 79 milliseconds

1234