Searched refs:exceptions (Results 1 - 25 of 215) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A D__init__.py149 from exceptions import *
/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...]
H A DTearDownStack.java61 List<Throwable> exceptions = new ArrayList<Throwable>();
70 exceptions.add(t);
75 if ((!suppressThrows) && (exceptions.size() > 0)) {
76 throw ClusterException.create(exceptions);
/external/jsilver/src/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 DJSilverException.java17 package com.google.clearsilver.jsilver.exceptions;
20 * Base class for all JSilver exceptions.
H A DJSilverIOException.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.
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DMacro.java19 import com.google.clearsilver.jsilver.exceptions.JSilverInterpreterException;
/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/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestbase.py10 def broken(reason, *exceptions):
17 except exceptions or unittest.TestCase.failureException:
/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...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/exceptions/
H A DBlenderFileException.java32 package com.jme3.scene.plugins.blender.exceptions;
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJSilverCompilationException.java19 import com.google.clearsilver.jsilver.exceptions.JSilverException;
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DDataLoader.java20 import com.google.clearsilver.jsilver.exceptions.JSilverBadSyntaxException;
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDataFactory.java19 import com.google.clearsilver.jsilver.exceptions.JSilverBadSyntaxException;
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DResourceLoader.java19 import com.google.clearsilver.jsilver.exceptions.JSilverTemplateNotFoundException;
/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/v8/test/mjsunit/
H A Dinstanceof.js70 var exceptions = 0;
79 exceptions++;
84 assertEquals(88, exceptions);
/external/compiler-rt/make/
H A Dconfig.mk45 COMMON_CXXFLAGS=-fno-exceptions -fPIC -funwind-tables -I${ProjSrcRoot}/lib -I${ProjSrcRoot}/include
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintNull.java5 import com.jme3.scene.plugins.blender.exceptions.BlenderFileException;
/external/antlr/antlr-3.4/runtime/Python/
H A Dmkdoxy.sh10 for f in __init__ exceptions constants dfa tokens streams recognizers; do
/external/javassist/src/main/javassist/bytecode/
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...]
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dproxy_rules_list.js85 * @param {Array} exceptions An array of exception object.
87 load_: function(exceptions) {
88 this.dataModel = new ArrayDataModel(exceptions);
/external/chromium/chrome/browser/resources/options/
H A Dpassword_manager_list.css60 #password-exceptions-list .url {
66 #password-exceptions-list .url {

Completed in 6063 milliseconds

123456789