Searched defs:any (Results 26 - 40 of 40) sorted by relevance

12

/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)) {
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DFp.java22 * or visit www.oracle.com if you need additional information or have any
218 public static <A> boolean any(Map1<A,Boolean> p, Collection<A> xs) { method in class:Fp
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java567 * the internal entity declaration, without any entity
715 public void any(Augmentations augmentations) throws XNIException { method in class:DefaultXMLDocumentHandler
726 * @see #any
743 * @see #any
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractXMLDocumentParser.java534 * the internal entity declaration, without any entity
673 public void any(Augmentations augs) throws XNIException { method in class:AbstractXMLDocumentParser
674 } // any(Augmentations)
684 * @see #any
701 * @see #any
H A DDOMParserImpl.java449 // or any Xerces feature
1328 public void any(Augmentations augmentations) throws XNIException { method in class:DOMParserImpl.AbortHandler
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImpl.java22 * or visit www.oracle.com if you need additional information or have any
135 false, // any
159 static AnyImpl convertToNative(ORB orb, Any any) { argument
160 if (any instanceof AnyImpl) {
161 return (AnyImpl)any;
163 AnyImpl anyImpl = new AnyImpl(orb, any);
611 * takes a streamable and inserts its reference into the any
/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
H A DCDROutputStream_1_0.java22 * or visit www.oracle.com if you need additional information or have any
322 // hold one octet of any multi-byte character encoding."
585 public void write_any(Any any) argument
587 if ( any == null )
590 write_TypeCode(any.type());
591 any.write_value(parent);
1745 // Add any extra spaces to align the
1884 // tell BufferManagerWrite to release any ByteBuffers
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DORB.java22 * or visit www.oracle.com if you need additional information or have any
105 * <LI>check in Applet parameter or application string array, if any
107 * <LI>check in properties parameter, if any
112 * directory (if any)
115 * directory (if any)
520 * in any way that a <code>String</code> object can be manipulated.
626 * @param any the <code>Any</code> value to be inserted into the
635 abstract public NamedValue create_named_value(String s, Any any, int flags); argument
679 * any responses. Note that oneway invocations are not guaranteed to
694 * Finds out if any o
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeUtility.java22 * or visit www.oracle.com if you need additional information or have any
462 * for any sequence, an UnsupportedEncodingException is thrown.
838 * A utility method to quote a word, if the word contains any
857 * Look for any "bad" characters, Escape and
1020 * Return the first index of any of the characters in "any" in "s",
1025 private static int indexOfAny(String s, String any) { argument
1026 return indexOfAny(s, any, 0);
1029 private static int indexOfAny(String s, String any, int start) { argument
1033 if (any
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDProcessor.java25 * if any, must include the following acknowledgment:
323 * about any features and properties that affect the operation of the
415 * manager any time after reset when a feature changes state.
443 * manager any time after reset when a property changes value.
924 // one typical case where this could be a problem, when any XML file
1111 * the internal entity declaration, without any entity
1444 public void any(Augmentations augs) throws XNIException { method in class:XMLDTDProcessor
1446 fDTDGrammar.any(augs);
1448 fDTDContentModelHandler.any(augs);
1450 } // any()
[all...]
H A DDTDGrammar.java25 * if any, must include the following acknowledgment:
718 * the internal entity declaration, without any entity
1011 * @see #any
1152 public void any(Augmentations augs) throws XNIException {} method in class:DTDGrammar
1161 * @see #any
1577 str.append("##any:uri=").append(contentSpec.otherValue);
1580 str.append("##any");
1611 str.append("##any:uri=").append(contentSpec.otherValue);
1614 str.append("##any");
1641 str.append("##any");
[all...]
/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/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBImpl.java22 * or visit www.oracle.com if you need additional information or have any
355 // check on piHandler to invoke Interceptors. We do not want any
616 public synchronized NamedValue create_named_value(String s, Any any, int flags) argument
619 return new NamedValueImpl(this, s, any, flags);
699 * Find out if any of the deferred invocations have a response yet.
1679 // the IOR, then iterator over ContactInfo. If any ContactInfo is
1726 * it is a security hole, since any unauthorized client has access to
H A DORBSingleton.java22 * or visit www.oracle.com if you need additional information or have any
295 create_named_value(String s, Any any, int flags) { argument
296 return new NamedValueImpl(this, s, any, flags);

Completed in 83 milliseconds

12