| /openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/exceptions/ |
| H A D | AlgorithmAlreadyRegisteredException.java | 21 package com.sun.org.apache.xml.internal.security.exceptions;
|
| H A D | Base64DecodingException.java | 21 package com.sun.org.apache.xml.internal.security.exceptions;
|
| H A D | XMLSecurityException.java | 21 package com.sun.org.apache.xml.internal.security.exceptions; 34 * The mother of all Exceptions in this bundle. It allows exceptions to have
|
| H A D | XMLSecurityRuntimeException.java | 1 package com.sun.org.apache.xml.internal.security.exceptions; 11 * The mother of all runtime Exceptions in this bundle. It allows exceptions to have
|
| /openjdk7/jdk/test/java/lang/InheritableThreadLocal/ |
| H A D | ITLRemoveTest.java | 46 static Throwable exceptions[]; field in class:ITLRemoveTest 54 exceptions = new Throwable[threadCount]; 79 if(exceptions[i] != null) 80 throw(exceptions[i]); 118 exceptions[threadId-INITIAL_VALUE] = ex;
|
| /openjdk7/langtools/src/share/classes/com/sun/javadoc/ |
| H A D | PackageDoc.java | 68 * classes (that is, exclude exceptions, errors, enums, interfaces, and 81 ClassDoc[] exceptions(); method in interface:PackageDoc
|
| /openjdk7/jdk/test/java/util/Vector/ |
| H A D | SerializationDeadlock.java | 99 private static final List<Exception> exceptions = new ArrayList<>(); field in class:SerializationDeadlock.TestThread 129 exceptions.add(exception); 133 if (false == exceptions.isEmpty()) { 134 throw new RuntimeException(getErrorText(exceptions)); 138 private static String getErrorText(final List<Exception> exceptions) { argument 142 pw.println("Test ERROR: Unexpected exceptions thrown on test threads:"); 143 for (Exception exception : exceptions) {
|
| /openjdk7/jdk/test/java/util/Hashtable/ |
| H A D | SerializationDeadlock.java | 97 private static final List<Exception> exceptions = new ArrayList<>(); field in class:SerializationDeadlock.TestThread 128 exceptions.add(exception); 132 if (false == exceptions.isEmpty()) { 133 throw new RuntimeException(getErrorText(exceptions)); 137 private static String getErrorText(final List<Exception> exceptions) { argument 141 pw.println("Test ERROR: Unexpected exceptions thrown on test threads:"); 142 for (Exception exception : exceptions) {
|
| /openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ |
| H A D | OperationDescription.java | 45 public com.sun.org.omg.CORBA.ExceptionDescription exceptions[] = null; field in class:OperationDescription 61 exceptions = _exceptions;
|
| /openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/ |
| H A D | Input.java | 54 * The name of the group of exceptions handled by the class. 59 * The group of exceptions. 61 private Queue<InputException> exceptions; field in class:Input 93 exceptions = new LinkedList<InputException>(); 151 exceptions.offer(current); 159 * Returns the name of this group of exceptions. 161 * @return the name of this group of exceptions. 189 * Returns the exceptions contained in this class. 191 * @return the exceptions. 194 return exceptions; [all...] |
| H A D | MC.java | 98 Queue<InputException> exceptions = input.getExceptions(); 119 writeImports(exceptions, pw); 133 writeExceptions(groupName, exceptions, className, pw); 145 * @param groupName the group of exceptions the Java source file is for. 151 pw.println("// Log wrapper class for standard exceptions"); 153 pw.printMsg("// Log wrapper class for Sun private system exceptions in group @", 162 * Write out the import list for the exceptions. 164 * @param groups the exceptions that were parsed. 167 private void writeImports(Queue<InputException> exceptions, argument 169 if (exceptions 233 writeExceptions(String groupName, Queue<InputException> exceptions, String className, IndentingPrintWriter pw) argument [all...] |
| /openjdk7/corba/src/share/classes/org/omg/CORBA/ |
| H A D | Request.java | 55 * a context, a list of possible exceptions, and a list of 124 * exceptions that may be thrown by the method being invoked. 126 * @return the <code>ExceptionList</code> object describing the exceptions 130 public abstract ExceptionList exceptions(); method in class:Request
|
| H A D | LocalObject.java | 214 * @param exceptions an <code>ExceptionList</code> object containing a 215 * list of possible exceptions the method can throw 230 ExceptionList exceptions, 226 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
|
| /openjdk7/jdk/test/java/nio/channels/SocketChannel/ |
| H A D | ConnectState.java | 50 // NO exceptions expected 55 final Collection<Class<?>> exceptions; 57 exceptions = NONE; 60 exceptions = Collections.<Class<?>>singleton(expected[0]); 62 exceptions = new HashSet<>(Arrays.asList(expected)); 64 return exceptions; 110 // On some architecture we may need to accept several exceptions. 117 Test(String name, Collection<Class<?>> exceptions, int state) argument 126 for (Class<?> exception : exceptions) { 136 && !exceptions [all...] |
| /openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/ |
| H A D | MethodEntry.java | 112 /** This a a vector of the exceptions which this method raises. */ 113 public Vector exceptions () method in class:MethodEntry 116 } // exceptions 126 exceptions vector. The first element of this vector is the name 127 of the first element of the exceptions vector, etc. */
|
| /openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/ |
| H A D | Type.java | 54 private static final Map<String, Type> exceptions; field in class:Type 56 exceptions = new HashMap<String, Type>(); 57 exceptions.put("OSStatus", getType("OSStatus", new NPrimitive('l'), new NPrimitive('i'))); // (l / i) vs. (l) 58 exceptions.put("CGFloat", getType("CGFloat", new NPrimitive('f'), new NPrimitive('d'))); // (f / d) vs. (f) 59 exceptions.put("NSRect", getType("NSRect", getNSRectType(), getCGRectType())); // ({{_NSPoint}{_NSSize}} / {{CGPoint}{CGSize}}) vs. ({{_NSPoint}{_NSSize}}) 60 exceptions.put("NSPoint", getType("NSPoint", getNSPointType(), getCGPointType())); // (_NSPoint / CGPoint) vs. (_NSPoint) 61 exceptions.put("NSSize", getType("NSSize", getNSSizeType(), getCGSizeType())); // (_NSSize / CGSize) vs. (_NSSize) 62 exceptions.put("NSInteger", getType("NSInteger", new NPrimitive('i'), new NPrimitive('q'))); // (i / q) vs. (i) 63 exceptions.put("NSPointArray", getType("NSPointArray", new NPointer(getNSPointType()), new NPointer(getCGPointType()))); // (^_NSPoint / ^CGPoint) vs. (^_NSPoint) 64 exceptions [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/ |
| H A D | JavaMethod.java | 45 private final List<String> exceptions = new ArrayList<String>(); field in class:JavaMethod 112 if (!exceptions.contains(exception)) { 113 exceptions.add(exception); 119 return exceptions.iterator();
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/ |
| H A D | ClassVisitor.java | 204 * method parameters, return type and exceptions do not use generic 206 * @param exceptions the internal names of the method's exception classes 218 String[] exceptions); 213 visitMethod( int access, String name, String desc, String signature, String[] exceptions) argument
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/ |
| H A D | ClassDocCatalog.java | 68 * Stores exceptions for each package 70 private Map<String,Set<ClassDoc>> exceptions; field in class:ClassDocCatalog 118 exceptions = new HashMap<String,Set<ClassDoc>>(); 138 addClass(classdoc, exceptions); 235 * Return all of the exceptions specified on the command-line 240 public ClassDoc[] exceptions(String packageName) { method in class:ClassDocCatalog 241 return getArray(exceptions, packageName);
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
| H A D | PackageDocImpl.java | 190 * Get ordinary classes (that is, exclude exceptions, errors, 210 public ClassDoc[] exceptions() { method in class:PackageDocImpl
|
| /openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/ |
| H A D | RequestImpl.java | 173 public ExceptionList exceptions() method in class:RequestImpl
|
| /openjdk7/corba/src/share/classes/org/omg/CORBA/portable/ |
| H A D | ObjectImpl.java | 212 * method, argument list, container for the result, exceptions, and 226 * @param exceptions a list of the exceptions that the given method 235 * container for the result, exceptions, and list of property 242 ExceptionList exceptions, 249 exceptions, 238 _create_request(Context ctx, String operation, NVList arg_list, NamedValue result, ExceptionList exceptions, ContextList contexts) argument
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/ |
| H A D | SOAPFaultBuilder.java | 102 public Throwable createException(Map<QName, CheckedExceptionImpl> exceptions) throws JAXBException { argument 108 if(detail == null || exceptions == null){ 116 CheckedExceptionImpl ce = exceptions.get(detailName); 404 //Don't fill the stacktrace for Service specific exceptions. 500 //Don't fill the stacktrace for Service specific exceptions.
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/ |
| H A D | JavaMethodImpl.java | 59 private final List<CheckedExceptionImpl> exceptions = new ArrayList<CheckedExceptionImpl>(); field in class:JavaMethodImpl 279 if (!exceptions.contains(ce)) 280 exceptions.add(ce); 289 for (CheckedExceptionImpl ce : exceptions) { 301 return Collections.unmodifiableList(exceptions); 318 for (CheckedExceptionImpl ce : exceptions) { 355 for (CheckedExceptionImpl ce : exceptions) { 377 for (CheckedExceptionImpl ce : exceptions) {
|
| /openjdk7/jdk/src/share/classes/sun/rmi/rmic/ |
| H A D | RMIGenerator.java | 479 ClassDeclaration[] exceptions = method.getExceptions(); 482 * Declare stub method; throw exceptions declared in remote 494 if (exceptions.length > 0) { 496 for (int i = 0; i < exceptions.length; i++) { 499 p.p(exceptions[i].getName().toString()); 512 * any of the exceptions declared by this stub method, we want them 514 * exceptions and rethrow it directly. 522 Vector<ClassDefinition> catchList = computeUniqueCatchList(exceptions); 525 * If we need to catch any particular exceptions (i.e. this method 613 * If we need to catch any particular exceptions, finall 653 computeUniqueCatchList(ClassDeclaration[] exceptions) argument [all...] |