Searched refs:any (Results 26 - 50 of 85) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/lang/
H A DCompiler.java22 * or visit www.oracle.com if you need additional information or have any
116 * @param any
123 * If {@code any} is {@code null}
125 public static native Object command(Object any); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt22 * or visit www.oracle.com if you need additional information or have any
30 Checks if this window is blocked by any modal dialog
60 According to the Modality spec any modal dialog should be always on
65 one, in particular for any kind of dialogs. When a modal dialog
83 don't receive any notifications when the dialog is iconified
87 any window state (NormalState, IconifiedState, WithdrawnState)
116 is any dialog can't be iconified and any blocked window
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DUtil.java22 * or visit www.oracle.com if you need additional information or have any
92 // This means that any of the following com.sun.corba classes
316 * Writes any java.lang.Object as a CORBA any.
317 * @param out the stream in which to write the any.
318 * @param obj the object to write as an any.
326 Any any = orb.create_any();
332 any.insert_Object((org.omg.CORBA.Object)newObj);
337 any.insert_Value(null, createTypeCodeForNull(orb));
342 TypeCode tc = createTypeCode((Serializable)newObj, any, or
373 createTypeCode(Serializable obj, org.omg.CORBA.Any any, org.omg.CORBA.ORB orb) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyComplexImpl.java22 * or visit www.oracle.com if you need additional information or have any
63 protected DynAnyComplexImpl(ORB orb, Any any, boolean copyValue) { argument
65 super(orb, any, copyValue);
75 // The members (if any) are (recursively) initialized to their default values.
93 returnValue = (DynAnyComplexImpl)DynAnyUtil.createMostDerivedDynAny(any, orb, true);
148 TypeCode expectedTypeCode = any.type();
222 TypeCode expectedTypeCode = any.type();
325 TypeCode typeCode = any.type();
337 InputStream input = any.create_input_stream();
368 TypeCode typeCode = any
[all...]
H A DDynValueCommonImpl.java22 * or visit www.oracle.com if you need additional information or have any
55 protected DynValueCommonImpl(ORB orb, Any any, boolean copyValue) { argument
56 super(orb, any, copyValue);
H A DDynAnyConstructedImpl.java22 * or visit www.oracle.com if you need additional information or have any
70 protected DynAnyConstructedImpl(ORB orb, Any any, boolean copyValue) { argument
71 super(orb, any, copyValue);
72 //System.out.println(this + " constructed with any " + any);
73 if (this.any != null) {
76 // set the current position to 0 if any has components, otherwise to -1.
87 // set the current position to 0 if any has components, otherwise to -1.
98 TypeCode typeCode = any.type();
248 OutputStream out = any
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DWildcardNameClassBuilder.java22 * or visit www.oracle.com if you need additional information or have any
57 public NameClass any(XSWildcard.Any wc) { method in class:WildcardNameClassBuilder
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dir.idl22 * or visit www.oracle.com if you need additional information or have any
93 any value;
137 any label;
175 in the Interface Repository. A Container can contain any number
198 any value;
222 in any value
379 attribute any value;
388 any value;
755 actual parameter, it may be important to preserve any sharing
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A Dir.idl22 * or visit www.oracle.com if you need additional information or have any
94 any value;
138 any label;
176 in the Interface Repository. A Container can contain any number
199 any value;
223 in any value
380 attribute any value;
389 any value;
756 actual parameter, it may be important to preserve any sharing
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpMessage.java22 * or visit www.oracle.com if you need additional information or have any
113 byte[] any = null;
119 any = bdec.fetchAny();
120 bdec2 = new BerDecoder(any);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DRequestImpl.java22 * or visit www.oracle.com if you need additional information or have any
364 Any any = nv.value();
365 any.read_value(is, any.type());
/openjdk7/hotspot/agent/make/
H A Dstart-debug-server-windbg.bat21 REM or visit www.oracle.com if you need additional information or have any
H A Dstart-debug-server-windbg64.bat21 REM or visit www.oracle.com if you need additional information or have any
H A Dstart-rmiregistry.bat21 REM or visit www.oracle.com if you need additional information or have any
H A Dsaenv.bat21 REM or visit www.oracle.com if you need additional information or have any
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/
H A DWildcardImpl.java22 * or visit www.oracle.com if you need additional information or have any
106 visitor.any(this);
109 return function.any(this);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java22 * or visit www.oracle.com if you need additional information or have any
32 * <p><b>This is NOT part of any supported API.
58 public final Name any; field in class:Names
168 any = fromString("<any>");
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec22 * or visit www.oracle.com if you need additional information or have any
144 "are continued after the disconnection. Upon completion of any such "
307 "for example) but may not be garbage collected any time soon. "
312 "a back-end may use any implementation which operates "
638 "The field list will include any synthetic fields created "
674 "if present, and any synthetic methods created by the compiler. "
876 "Returns information, including the generic signature if any, "
879 "The field list will include any synthetic fields created "
917 "Returns information, including the generic signature if any, "
922 "if present, and any syntheti
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DIDLJavaSerializationOutputStream.java22 * or visit www.oracle.com if you need additional information or have any
400 public final void write_any(Any any) { argument
401 if (any == null) {
404 write_TypeCode(any.type());
405 any.write_value(parent);
741 // Add any extra spaces to align the
/openjdk7/hotspot/agent/src/scripts/
H A Dstart-debug-server.bat22 REM or visit www.oracle.com if you need additional information or have any
H A Dstart-rmiregistry.bat22 REM or visit www.oracle.com if you need additional information or have any
/openjdk7/hotspot/make/windows/
H A Dcross_build.bat21 REM or visit www.oracle.com if you need additional information or have any
H A Dcreate.bat21 REM or visit www.oracle.com if you need additional information or have any
190 REM It doesn't matter which variant we use here, "compiler1" is as good as any of the others - we need the common variables
209 echo NOTE that it is now NOT safe to modify any of the files in the build
/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java20 * or visit www.oracle.com if you need additional information or have any
76 any = Query.anySubString((AttributeValueExp) attr, field in class:QueryExpStringTest
123 any, "attr like '*simpleString*'",
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DORBUtility.java22 * or visit www.oracle.com if you need additional information or have any
141 * @param any The Any to write the SystemException into.
143 public static void insertSystemException(SystemException ex, Any any) { argument
144 OutputStream out = any.create_output_stream();
151 any.read_value(out.create_input_stream(),
155 public static SystemException extractSystemException(Any any) { argument
156 InputStream in = any.create_input_stream();
158 if ( ! isSystemExceptionTypeCode(any.type(), orb)) {

Completed in 276 milliseconds

1234