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

123456

/openjdk9/corba/src/java.corba/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...]
/openjdk9/jdk/test/com/sun/corba/5036554/
H A DJavaBug.java20 * or visit www.oracle.com if you need additional information or have any
30 org.omg.CORBA.Any any = orb.create_any();
31 myStringHelper.insert(any, "hello");
32 System.out.println("Any: " + myStringHelper.extract(any));
/openjdk9/corba/src/java.corba/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...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/runtime/config/
H A DTubeFactoryList.java22 * or visit www.oracle.com if you need additional information or have any
57 * &lt;any/>
69 "any"
76 protected List<Object> any; field in class:TubeFactoryList
85 * not a snapshot. Therefore any modification you make to the
110 * Gets the value of the any property.
114 * not a snapshot. Therefore any modification you make to the
116 * This is why there is not a <CODE>set</CODE> method for the any property.
133 if (any == null) {
134 any
[all...]
H A DTubeFactoryConfig.java22 * or visit www.oracle.com if you need additional information or have any
56 * &lt;any/>
68 "any"
73 protected List<Object> any; field in class:TubeFactoryConfig
80 * Gets the value of the any property.
84 * not a snapshot. Therefore any modification you make to the
86 * This is why there is not a <CODE>set</CODE> method for the any property.
103 if (any == null) {
104 any = new ArrayList<Object>();
106 return this.any;
[all...]
H A DMetroConfig.java22 * or visit www.oracle.com if you need additional information or have any
62 * &lt;any/>
76 "any"
83 protected List<Object> any; field in class:MetroConfig
114 * Gets the value of the any property.
118 * not a snapshot. Therefore any modification you make to the
120 * This is why there is not a <CODE>set</CODE> method for the any property.
137 if (any == null) {
138 any = new ArrayList<Object>();
140 return this.any;
[all...]
H A DTubelineDefinition.java22 * or visit www.oracle.com if you need additional information or have any
60 * &lt;any/>
74 "any"
83 protected List<Object> any; field in class:TubelineDefinition
141 * Gets the value of the any property.
145 * not a snapshot. Therefore any modification you make to the
147 * This is why there is not a <CODE>set</CODE> method for the any property.
164 if (any == null) {
165 any = new ArrayList<Object>();
167 return this.any;
[all...]
H A DTubelines.java22 * or visit www.oracle.com if you need additional information or have any
58 * &lt;any/>
72 "any"
81 protected List<Object> any; field in class:Tubelines
93 * not a snapshot. Therefore any modification you make to the
122 * not a snapshot. Therefore any modification you make to the
147 * Gets the value of the any property.
151 * not a snapshot. Therefore any modification you make to the
153 * This is why there is not a <CODE>set</CODE> method for the any property.
170 if (any
[all...]
H A DTubelineMapping.java22 * or visit www.oracle.com if you need additional information or have any
58 * &lt;any/>
71 "any"
82 protected List<Object> any; field in class:TubelineMapping
135 * Gets the value of the any property.
139 * not a snapshot. Therefore any modification you make to the
141 * This is why there is not a <CODE>set</CODE> method for the any property.
158 if (any == null) {
159 any = new ArrayList<Object>();
161 return this.any;
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DCompiler.java22 * or visit www.oracle.com if you need additional information or have any
83 * @param any
90 * If {@code any} is {@code null}
92 public static Object command(Object any) { argument
/openjdk9/jaxws/src/jdk.xml.bind/share/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
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/
H A DLocationIdentity.java20 * or visit www.oracle.com if you need additional information or have any
53 public static LocationIdentity any() { method in class:LocationIdentity
/openjdk9/jaxws/src/java.xml.bind/share/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
45 public Any any(); method in interface:NestedParticle
/openjdk9/hotspot/test/compiler/codecache/jmx/
H A DMemoryPoolsPresenceTest.java20 * or visit www.oracle.com if you need additional information or have any
68 Optional<MemoryManagerMXBean> any = beans
72 Asserts.assertTrue(any.isPresent(), "Bean not found: " + CC_MANAGER);
73 MemoryManagerMXBean ccManager = any.get();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DPool.java22 * or visit www.oracle.com if you need additional information or have any
50 * <p><b>This is NOT part of any supported API.
164 public boolean equals(Object any) { argument
165 if (!(any instanceof Method)) return false;
166 MethodSymbol o = ((Method)any).other;
171 ((Method)any).uniqueType.equals(uniqueType);
192 public boolean equals(Object any) { argument
193 return equalsImpl(any, true);
196 protected boolean equalsImpl(Object any, boolean includeDynamicArgs) { argument
197 if (includeDynamicArgs && !super.equals(any)) retur
241 equals(Object any) argument
273 equals(Object any) argument
[all...]

Completed in 145 milliseconds

123456