Searched defs:exceptions (Results 1 - 25 of 43) sorted by relevance

12

/external/guava/guava-testlib/src/com/google/common/testing/
H A DClusterException.java27 * "throw multiple exceptions", or something close to it. The prototypical code
43 * List<Exception> exceptions = Lists.newArrayList();
48 * exceptions.add(e);
51 * if (exceptions.size() > 0) {
52 * throw ClusterException.create(exceptions);
64 public final Collection<? extends Throwable> exceptions; field in class:ClusterException
66 private ClusterException(Collection<? extends Throwable> exceptions) { argument
68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.",
69 exceptions
78 create(Throwable... exceptions) argument
107 create(Collection<? extends Throwable> exceptions) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverIOException.java17 package com.google.clearsilver.jsilver.exceptions;
H A DJSilverInterpreterException.java17 package com.google.clearsilver.jsilver.exceptions;
H A DJSilverTemplateNotFoundException.java17 package com.google.clearsilver.jsilver.exceptions;
H A DExceptionUtil.java17 package com.google.clearsilver.jsilver.exceptions;
22 * Class to hold utilities related to exceptions used by JSilver code.
H A DJSilverException.java17 package com.google.clearsilver.jsilver.exceptions;
20 * Base class for all JSilver exceptions.
H A DJSilverAutoEscapingException.java17 package com.google.clearsilver.jsilver.exceptions;
H A DJSilverBadSyntaxException.java17 package com.google.clearsilver.jsilver.exceptions;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/exceptions/
H A DBlenderFileException.java32 package com.jme3.scene.plugins.blender.exceptions;
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DExceptionsAttribute_info.java20 * attribute indicates which checked exceptions a method may throw. There must be
52 final IDeclaredExceptionTable exceptions)
54 super (attribute_name_index, exceptions.length ());
56 m_exceptions = exceptions;
51 ExceptionsAttribute_info(final int attribute_name_index, final IDeclaredExceptionTable exceptions) argument
/external/javassist/src/main/javassist/
H A DCtNewConstructor.java86 * @param exceptions a list of the exception types.
95 CtClass[] exceptions,
101 cc.setExceptionTypes(exceptions);
171 * @param exceptions exception types
177 CtClass[] exceptions, CtClass declaring)
180 return make(parameters, exceptions, PASS_NONE,
191 * @param exceptions exception types
196 CtClass[] exceptions, CtClass declaring)
199 return make(parameters, exceptions, PASS_PARAMS,
294 * @param exceptions
94 make(CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
176 skeleton(CtClass[] parameters, CtClass[] exceptions, CtClass declaring) argument
195 make(CtClass[] parameters, CtClass[] exceptions, CtClass declaring) argument
307 make(CtClass[] parameters, CtClass[] exceptions, int howto, CtMethod body, ConstParameter cparam, CtClass declaring) argument
[all...]
H A DCtNewMethod.java91 * @param exceptions a list of the exception types.
101 CtClass[] exceptions,
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
117 * @param exceptions a list of the exception types.
128 CtClass[] exceptions,
136 cm.setExceptionTypes(exceptions);
195 * @param exceptions a list of the exception types
203 CtClass[] exceptions,
208 cm.setExceptionTypes(exceptions);
99 make(CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
126 make(int modifiers, CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, String body, CtClass declaring) argument
200 abstractMethod(CtClass returnType, String mname, CtClass[] parameters, CtClass[] exceptions, CtClass declaring) argument
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRop.java65 private final TypeList exceptions; field in class:Rop
87 * @param exceptions {@code non-null;} list of possible types thrown by this
95 TypeList exceptions, int branchingness, boolean isCallLike,
105 if (exceptions == null) {
106 throw new NullPointerException("exceptions == null");
113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) {
114 throw new IllegalArgumentException("exceptions / branchingness " +
121 this.exceptions = exceptions;
135 * @param exceptions {
94 Rop(int opcode, Type result, TypeList sources, TypeList exceptions, int branchingness, boolean isCallLike, String nickname) argument
141 Rop(int opcode, Type result, TypeList sources, TypeList exceptions, int branchingness, String nickname) argument
194 Rop(int opcode, Type result, TypeList sources, TypeList exceptions, String nickname) argument
210 Rop(int opcode, TypeList sources, TypeList exceptions) argument
[all...]
/external/stlport/stlport/stl/
H A D_ios.h97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
/external/doclava/src/com/google/doclava/
H A DPackageInfo.java135 ClassInfo.makeLinkListHDF(data, base + ".exceptions", exceptions());
163 public ClassInfo[] exceptions() { method in class:PackageInfo
166 ClassInfo.sortByName(filterHidden(Converter.convertClasses(mPackage.exceptions())));
H A DStubs.java675 // bad exception indicates that the exceptions thrown by the super constructor
913 // but write exceptions in canonicalized order
914 ArrayList<ClassInfo> exceptions = mi.thrownExceptions();
915 Collections.sort(exceptions, ClassInfo.comparator);
916 for (ClassInfo pi : exceptions) {
946 ArrayList<ClassInfo> exceptions = mi.thrownExceptions();
947 Collections.sort(exceptions, ClassInfo.comparator);
948 for (ClassInfo pi : exceptions) {
1184 static void writeThrowsApi(PrintStream apiWriter, ArrayList<ClassInfo> exceptions) { argument
1186 exceptions
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DAnalyzer.java88 private ExceptionInfo[] exceptions; field in class:Analyzer
135 exceptions = buildExceptionInfo(method);
206 // Merge all exceptions that are reachable from this instruction.
217 ExceptionInfo[] exceptions = new ExceptionInfo[table.size()];
227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type);
230 return exceptions;
293 for (int i = 0; i < exceptions.length; i++) {
294 ExceptionInfo exception = exceptions[i];
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py35 import exceptions namespace
224 class _WindowsError(exceptions.OSError):
234 exceptions.WindowsError
236 exceptions.WindowsError = FileSystem._WindowsError
244 except exceptions.WindowsError, e:
/external/chromium/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc106 // NOTE: As long as the user cannot add/edit entries from the exceptions
109 // we add the ability to add/edit exceptions, we'll need to decide when to
121 // in a HostContentSettingsMap-controlled exceptions table (e.g., cookies).
137 // in the Geolocation exceptions table. Ownership of the pointer is passed to
159 // in the desktop notifications exceptions table. Ownership of the pointer is
441 ListValue exceptions; local
453 exceptions.Append(
463 exceptions.Append(
471 type_string, exceptions);
485 ListValue exceptions; local
510 ListValue exceptions; local
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java45 private ExceptionTable exceptions; field in class:CodeAttribute
64 exceptions = etable;
84 exceptions = src.getExceptionTable().copy(cp, classnames);
93 info = src.copyCode(cp, classnames, exceptions, this);
109 exceptions = new ExceptionTable(cp, in);
161 return 18 + info.length + exceptions.size() * 8
172 exceptions.write(out);
285 public ExceptionTable getExceptionTable() { return exceptions; }
H A DClassFileWriter.java339 * @param exceptions throws clause. It may be null.
345 String[] exceptions, AttributeWriter aw) {
349 if (exceptions == null)
352 intfs = constPool.addClassInfo(exceptions);
363 * @param exceptions throws clause. indexes indicating <code>CONSTANT_Class_info</code>s.
367 public void begin(int accessFlags, int name, int descriptor, int[] exceptions, AttributeWriter aw) { argument
375 if (exceptions != null)
380 if (exceptions != null)
381 writeThrows(exceptions);
396 private void writeThrows(int[] exceptions) { argument
344 begin(int accessFlags, String name, String descriptor, String[] exceptions, AttributeWriter aw) argument
[all...]
H A DSignatureAttribute.java230 ObjectType[] exceptions; field in class:SignatureAttribute.MethodSignature
236 exceptions = ex;
259 * Returns the types of the exceptions that may be thrown.
261 * @return a zero-length array if exceptions are never thrown or
264 public ObjectType[] getExceptionTypes() { return exceptions; }
277 if (exceptions.length > 0) {
279 Type.toString(sbuf, exceptions);
688 ArrayList exceptions = new ArrayList();
695 exceptions.add(t);
699 ObjectType[] ex = (ObjectType[])exceptions
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Deloop.c56 struct eloop_sock_table exceptions; member in struct:eloop_data
208 return &eloop.exceptions;
464 eloop.writers.count > 0 || eloop.exceptions.count > 0)) {
481 eloop_sock_table_set_fds(&eloop.exceptions, efds);
510 eloop_sock_table_dispatch(&eloop.exceptions, efds);
552 eloop_sock_table_destroy(&eloop.exceptions);
/external/icu4c/common/
H A Ducase.c35 const uint16_t *exceptions; member in struct:UCaseProps
83 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
113 * @param excWord (in) initial exceptions word
239 * c has exceptions, so there may be multiple simple and/or
/external/wpa_supplicant_8/hostapd/src/utils/
H A Deloop.c68 struct eloop_sock_table exceptions; member in struct:eloop_data
239 struct eloop_sock_table *exceptions,
290 if (exceptions && exceptions->table) {
291 for (i = 0; i < exceptions->count; i++) {
296 fd = exceptions->table[i].sock;
348 struct eloop_sock_table *exceptions,
361 eloop_sock_table_dispatch_table(exceptions, pollfds_map,
449 return &eloop.exceptions;
702 eloop.writers.count > 0 || eloop.exceptions
237 eloop_sock_table_set_fds(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd *pollfds, struct pollfd **pollfds_map, int max_pollfd_map) argument
346 eloop_sock_table_dispatch(struct eloop_sock_table *readers, struct eloop_sock_table *writers, struct eloop_sock_table *exceptions, struct pollfd **pollfds_map, int max_pollfd_map) argument
[all...]

Completed in 470 milliseconds

12