Searched refs:ce (Results 1 - 25 of 94) sorted by relevance

1234

/openjdk7/jdk/test/java/nio/charset/CharsetEncoder/
H A DCanEncode.java39 private static void wrong(CharsetEncoder ce, boolean can, String what) { argument
40 out.println(ce.charset().name()
46 private static void ck(CharsetEncoder ce, char c, boolean can) argument
49 if (ce.canEncode(c) != can)
50 wrong(ce, can,
55 private static void ck(CharsetEncoder ce, String s, boolean can) argument
58 if (ce.canEncode(CharBuffer.wrap(s.toCharArray())) != can)
59 wrong(ce, can, "array \"" + s + "\"");
60 if (ce.canEncode(CharBuffer.wrap(s)) != can)
61 wrong(ce, ca
[all...]
/openjdk7/jdk/test/java/security/cert/CertificateFactory/openssl/
H A DBadFooter.java75 } catch (CertificateException ce) {
76 ce.printStackTrace();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp39 #define __ ce->masm()->
44 void ConversionStub::emit_code(LIR_Assembler* ce) { argument
81 void CounterOverflowStub::emit_code(LIR_Assembler* ce) { argument
83 ce->store_parameter(_method->as_register(), 1);
84 ce->store_parameter(_bci, 0);
86 ce->add_call_info_here(_info);
87 ce->verify_oop_map(_info);
101 void RangeCheckStub::emit_code(LIR_Assembler* ce) { argument
105 ce->store_parameter(_index->as_register(), 0);
107 ce
121 emit_code(LIR_Assembler* ce) argument
147 emit_code(LIR_Assembler* ce) argument
169 emit_code(LIR_Assembler* ce) argument
192 emit_code(LIR_Assembler* ce) argument
214 emit_code(LIR_Assembler* ce) argument
232 emit_code(LIR_Assembler* ce) argument
272 emit_code(LIR_Assembler* ce) argument
388 emit_code(LIR_Assembler* ce) argument
396 emit_code(LIR_Assembler* ce) argument
405 emit_code(LIR_Assembler* ce) argument
419 emit_code(LIR_Assembler* ce) argument
468 emit_code(LIR_Assembler* ce) argument
500 emit_code(LIR_Assembler* ce) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/corba/
H A DCorbaUtils.java104 ConfigurationException ce = new ConfigurationException(
106 ce.setRootCause(realException);
107 throw ce;
110 ConfigurationException ce = new ConfigurationException(
113 ce.setRootCause(e);
114 throw ce;
133 ConfigurationException ce = new ConfigurationException(
135 ce.setRootCause(realException);
136 throw ce;
141 ConfigurationException ce
[all...]
/openjdk7/jdk/test/javax/security/auth/login/Exceptions/
H A DNewExceptions.java42 CredentialException ce =
50 ! (ce instanceof LoginException) ||
63 !ce.getMessage().equals("CredentialException") ||
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp38 #define __ ce->masm()->
50 void RangeCheckStub::emit_code(LIR_Assembler* ce) { argument
64 ce->add_call_info_here(_info);
65 ce->verify_oop_map(_info);
72 void CounterOverflowStub::emit_code(LIR_Assembler* ce) { argument
77 ce->add_call_info_here(_info);
78 ce->verify_oop_map(_info);
85 void DivByZeroStub::emit_code(LIR_Assembler* ce) { argument
87 ce->compilation()->implicit_exception_table()->append(_offset, __ offset());
92 ce
100 emit_code(LIR_Assembler* ce) argument
116 emit_code(LIR_Assembler* ce) argument
147 emit_code(LIR_Assembler* ce) argument
167 emit_code(LIR_Assembler* ce) argument
190 emit_code(LIR_Assembler* ce) argument
210 emit_code(LIR_Assembler* ce) argument
226 emit_code(LIR_Assembler* ce) argument
256 emit_code(LIR_Assembler* ce) argument
368 emit_code(LIR_Assembler* ce) argument
377 emit_code(LIR_Assembler* ce) argument
408 emit_code(LIR_Assembler* ce) argument
447 emit_code(LIR_Assembler* ce) argument
[all...]
/openjdk7/jdk/test/java/security/cert/CertificateFactory/
H A DBadX509CertData.java43 } catch (CertificateException ce) {
/openjdk7/jdk/test/java/security/cert/CertificateFactory/invalidEncodedCerts/
H A DDetectInvalidEncoding.java43 } catch (CertificateParsingException ce) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXTrayIconPeer.java107 XConfigureEvent ce = ev.get_xconfigure();
110 XTrayIconPeer.this, ce.get_width(), ce.get_height(),
111 ce.get_x(), ce.get_y(), old_x, old_y);
126 if (ce.get_height() != TRAY_ICON_HEIGHT && ce.get_width() != TRAY_ICON_WIDTH) {
135 } else if (ce.get_height() > TRAY_ICON_HEIGHT) {
141 ce.get_x(),
142 ce
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DJavaMethodImpl.java276 * @param ce
278 void addException(CheckedExceptionImpl ce) { argument
279 if (!exceptions.contains(ce))
280 exceptions.add(ce);
289 for (CheckedExceptionImpl ce : exceptions) {
290 if (ce.getExceptionClass()==exceptionClass)
291 return ce;
318 for (CheckedExceptionImpl ce : exceptions) {
319 TypeReference actual = ce.getDetailType();
321 return ce;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaActionUtil.java39 public static final String getDefaultFaultAction(JavaMethod method, CheckedException ce) { argument
46 String name = method.getOperationName() + delim + "Fault" + delim + ce.getExceptionClass();
50 delim).append(method.getOperationName()).append(delim).append("Fault").append(delim).append(ce.getExceptionClass().getSimpleName()).toString();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DW3CAddressingMetadataWSDLGeneratorExtension.java69 JavaMethod method, CheckedException ce) {
70 fault._attribute(WSAM_ACTION_QNAME, getFaultAction(method, ce));
137 CheckedException ce) {
138 String faultaction = ((CheckedExceptionImpl)ce).getFaultAction();
140 faultaction = getDefaultFaultAction(method,ce);
145 protected static final String getDefaultFaultAction(JavaMethod method, CheckedException ce) { argument
146 return WsaActionUtil.getDefaultFaultAction(method,ce);
68 addOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) argument
136 getFaultAction(JavaMethod method, CheckedException ce) argument
H A DWSDLGeneratorExtensionFacade.java129 public void addBindingOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) { argument
131 e.addBindingOperationFaultExtension(fault, method, ce);
134 public void addFaultMessageExtension(TypedXmlWriter message, JavaMethod method, CheckedException ce) { argument
136 e.addFaultMessageExtension(message, method, ce);
139 public void addOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) { argument
141 e.addOperationFaultExtension(fault, method, ce);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAPFaultBuilder.java116 CheckedExceptionImpl ce = exceptions.get(detailName);
117 if (ce == null) {
123 if (ce.getExceptionType().equals(ExceptionType.UserDefined)) {
124 return attachServerException(createUserDefinedException(ce));
127 Class exceptionClass = ce.getExceptionClass();
129 Constructor constructor = exceptionClass.getConstructor(String.class, (Class) ce.getDetailType().type);
130 Exception exception = (Exception) constructor.newInstance(getFaultString(), getJAXBObject(detail, ce));
286 private Object getJAXBObject(Node jaxbBean, CheckedException ce) throws JAXBException { argument
287 Bridge bridge = ce.getBridge();
291 private Exception createUserDefinedException(CheckedExceptionImpl ce) { argument
314 getFaultDetail(CheckedExceptionImpl ce, Throwable exception) argument
328 createDetailFromUserDefinedException(CheckedExceptionImpl ce, Object exception) argument
356 createSOAP11Fault(SOAPVersion soapVersion, Throwable e, Object detail, CheckedExceptionImpl ce, QName faultCode) argument
427 createSOAP12Fault(SOAPVersion soapVersion, Throwable e, Object detail, CheckedExceptionImpl ce, QName faultCode) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DExtendedXMLCatalogReader.java90 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
91 catalog.addEntry(ce);
133 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
134 catalog.addEntry(ce);
175 CatalogEntry ce = new CatalogEntry(entryType, entryArgs);
176 catalog.addEntry(ce);
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipCoder.java77 CharsetEncoder ce = encoder().reset();
79 int len = (int)(ca.length * ce.maxBytesPerChar());
85 if (isUTF8 && ce instanceof ArrayEncoder) {
86 int blen = ((ArrayEncoder)ce).encode(ca, 0, ca.length, ba);
93 CoderResult cr = ce.encode(cb, bb, true);
96 cr = ce.flush(bb);
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DStartTlsRequest.java218 ConfigurationException ce = new ConfigurationException(
221 ce.setRootCause(e);
222 return ce;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/writer/
H A DWSDLGeneratorExtension.java243 public void addBindingOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) { argument
254 * @param ce {@link CheckedException} that abstracts wsdl:fault
256 public void addFaultMessageExtension(TypedXmlWriter message, JavaMethod method, CheckedException ce) { argument
266 * @param ce {@link CheckedException} that abstracts wsdl:fault
268 public void addOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) { argument
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertPath.java288 } catch (CertificateException ce) {
292 nse.initCause(ce);
334 } catch (CertificateException ce) {
338 nse.initCause(ce);
H A DX509CRLEntry.java94 } catch (CRLException ce) {
113 } catch (CRLException ce) {
/openjdk7/jdk/test/sun/security/provider/certpath/X509CertPath/
H A DIllegalCertiticates.java48 } catch (CertificateException ce) {
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/
H A DComodoHacker.java228 } catch (CertificateException ce) {
229 reservedException = ce;
239 } catch (CertificateException ce) {
240 reservedException = ce;
/openjdk7/jdk/test/java/security/cert/
H A DGetInstance.java70 } catch (CertificateException ce) { }
/openjdk7/langtools/test/tools/javac/generics/wildcards/neg/
H A DCastFail12.java55 CE<?> ce = (CD<?>) null; // <<fail 12>>
/openjdk7/jdk/src/share/classes/java/lang/
H A DStringCoding.java275 private CharsetEncoder ce; field in class:StringCoding.StringEncoder
282 this.ce = cs.newEncoder()
299 int en = scale(len, ce.maxBytesPerChar());
303 if (ce instanceof ArrayEncoder) {
304 int blen = ((ArrayEncoder)ce).encode(ca, off, len, ba);
307 ce.reset();
311 CoderResult cr = ce.encode(cb, bb, true);
314 cr = ce.flush(bb);
348 CharsetEncoder ce = cs.newEncoder();
349 int en = scale(len, ce
[all...]

Completed in 153 milliseconds

1234