Searched defs:cid (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/attachment/
H A DAttachmentUnmarshaller.java41 * <h2>Identifying the content-id, cid, to pass to <code>getAttachment*(String cid)</code></h2>
44 * For XOP processing, the infoset representation of the cid is described
49 * For WS-I AP 1.0, the cid is identified as an element or attribute of
69 * <p>Lookup MIME content by content-id, <code>cid</code>, and return as a {@link DataHandler}.</p>
105 * @param cid It is expected to be a valid lexical form of the XML Schema
107 * ==true</code>, it must be a valid URI per the <code>cid:</code> URI scheme (see <a href="http://www.ietf.org/rfc/rfc2387.txt">RFC 2387</a>)
112 * @throws IllegalArgumentException if the attachment for the given cid is not found.
114 public abstract DataHandler getAttachmentAsDataHandler(String cid); argument
117 * <p>Retrieve the attachment identified by content-id, <code>cid</cod
127 getAttachmentAsByteArray(String cid) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DSwaRefAdapter.java59 public DataHandler unmarshal(String cid) { argument
62 return au.getAttachmentAsDataHandler(cid);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DAttachmentUnmarshallerImpl.java53 public DataHandler getAttachmentAsDataHandler(String cid) { argument
54 Attachment a = attachments.get(stripScheme(cid));
56 throw new WebServiceException(EncodingMessages.NO_SUCH_CONTENT_ID(cid));
61 public byte[] getAttachmentAsByteArray(String cid) { argument
62 Attachment a = attachments.get(stripScheme(cid));
64 throw new WebServiceException(EncodingMessages.NO_SUCH_CONTENT_ID(cid));
69 * The CID reference has 'cid:' prefix, so get rid of it.
71 private String stripScheme(String cid) { argument
72 if(cid.startsWith("cid
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEMessage.java146 private MIMEPart getDecodedCidPart(String cid) { argument
147 MIMEPart part = partsMap.get(cid);
149 if (cid.indexOf('%') != -1) {
151 String tempCid = URLDecoder.decode(cid, "utf-8");
199 String cid = (cids != null) ? cids.get(0) : currentIndex+"";
200 if (cid.length() > 2 && cid.charAt(0)=='<') {
201 cid = cid.substring(1,cid
[all...]
H A DMIMEPart.java196 * @param cid Content-ID of the part
198 void setContentId(String cid) { argument
199 this.contentId = cid;
/openjdk7/jdk/src/share/demo/jvmti/gctest/
H A Dgctest.c94 jmethodID cid; local
101 cid = (*env)->GetMethodID(env, thrClass, "<init>", "()V");
102 if ( cid == NULL ) {
105 res = (*env)->NewObject(env, thrClass, cid);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimeBodyPart.java472 * If the <code>cid</code> parameter is null, any existing
479 public void setContentID(String cid) { argument
480 if (cid == null)
483 setHeader("Content-ID", cid);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java197 String cid = contentId;
198 if(cid != null && cid.length() >0 && cid.charAt(0) != '<')
199 cid = '<' + cid + '>';
200 writeln("Content-Id: " + cid, out);
225 String cid="example.jaxws.sun.com";
227 return name + cid;
338 return "cid
499 decodeCid(String cid) argument
508 getAttachment(String cid) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsDevice.cpp1077 jmethodID cid = env->GetMethodID(displayModeClass, "<init>", local
1079 if (cid == NULL) {
1085 jobject displayMode = env->NewObject(displayModeClass, cid, width,
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dvm_version_x86.hpp72 cid : 1, member in struct:VM_Version::StdCpuid1Ecx::__anon56
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c1790 jmethodID cid; local
1800 cid = (*env)->GetMethodID(env, displayModeClass, "<init>", "(IIII)V");
1801 if (cid == NULL) {
1812 return (*env)->NewObject(env, displayModeClass, cid,
H A Dgtk2_interface.c2239 jobject create_Object(JNIEnv *env, jmethodID *cid, argument
2251 if( *cid == NULL)
2253 *cid = (*env)->GetMethodID(env, class, "<init>", signature);
2254 if( *cid == NULL )
2261 result = (*env)->NewObjectA(env, class, *cid, value);
2269 static jmethodID cid = NULL; local
2274 return create_Object(env, &cid, "java/lang/Boolean", "(Z)V", &value);
2279 static jmethodID cid = NULL; local
2284 return create_Object(env, &cid, "java/lang/Integer", "(I)V", &value);
2289 static jmethodID cid local
2299 static jmethodID cid = NULL; local
2309 static jmethodID cid = NULL; local
2319 static jmethodID cid = NULL; local
2330 static jmethodID cid = NULL; local
[all...]

Completed in 110 milliseconds