| /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
| inspector_runtime_unittest.py | 5 from telemetry.core import exceptions namespace 16 self.assertRaises(exceptions.EvaluateException, 31 self.assertRaises(exceptions.EvaluateException, test) 57 except exceptions.EvaluateException: 78 self.assertRaises(exceptions.EvaluateException,
|
| inspector_runtime.py | 4 from telemetry.core import exceptions namespace 42 raise exceptions.EvaluateException(res['error']['message']) 47 raise exceptions.EvaluateException(res['result']['result']['description'])
|
| oobe.py | 7 from telemetry.core import exceptions namespace 26 except exceptions.EvaluateException: 35 raise exceptions.LoginException('%s js api missing' % api)
|
| /cts/suite/audio_quality/executable/ |
| Android.mk | 31 LOCAL_CFLAGS:= -g -fno-exceptions 32 LOCAL_LDFLAGS:= -g -lrt -ldl -lstdc++ -lm -fno-exceptions -lpthread
|
| /cts/suite/audio_quality/lib/ |
| Android.mk | 30 LOCAL_CFLAGS:= -g -fno-exceptions 31 LOCAL_LDFLAGS:= -g -lrt -ldl -lm -fno-exceptions
|
| /cts/suite/audio_quality/test/ |
| Android.mk | 36 LOCAL_CFLAGS:= -g -fno-exceptions 37 LOCAL_LDFLAGS:= -g -lrt -ldl -lstdc++ -lm -fno-exceptions -lpthread
|
| /external/antlr/antlr-3.4/runtime/Python/unittests/ |
| testbase.py | 10 def broken(reason, *exceptions): 17 except exceptions or unittest.TestCase.failureException:
|
| /external/chromium_org/sandbox/win/src/ |
| restricted_token.h | 82 // present in the exceptions parameter. If there is no exception needed, 83 // the caller can pass an empty list or NULL for the exceptions 97 unsigned AddAllSidsForDenyOnly(std::vector<Sid> *exceptions); 114 // to remove except for those present in the exceptions parameter. If 116 // for the exceptions parameter. 127 const std::vector<base::string16> *exceptions);
|
| /external/libcxx/test/input.output/iostreams.base/ios/basic.ios.members/ |
| set_rdbuf.pass.cpp | 40 ios.exceptions(std::ios::badbit); 50 ios.exceptions(std::ios::badbit);
|
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
| ClassTransformerChain.java | 40 String[] exceptions) { 41 return cv.visitMethod(access, name, desc, signature, exceptions);
|
| /external/mockito/src/org/mockito/exceptions/verification/junit/ |
| ArgumentsAreDifferent.java | 6 package org.mockito.exceptions.verification.junit; 9 import org.mockito.internal.exceptions.stacktrace.ConditionalStackTraceFilter;
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/exceptions/ |
| ReplyErrorCodeException.java | 26 package org.apache.harmony.jpda.tests.framework.jdwp.exceptions;
|
| /external/droiddriver/src/com/google/android/droiddriver/actions/ |
| KeyAction.java | 20 import com.google.android.droiddriver.exceptions.ActionException;
|
| /external/jsilver/src/com/google/clearsilver/jsilver/ |
| DataLoader.java | 20 import com.google.clearsilver.jsilver.exceptions.JSilverBadSyntaxException;
|
| /external/jsilver/src/com/google/clearsilver/jsilver/data/ |
| DataFactory.java | 19 import com.google.clearsilver.jsilver.exceptions.JSilverBadSyntaxException;
|
| /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
| ResourceLoader.java | 19 import com.google.clearsilver.jsilver.exceptions.JSilverTemplateNotFoundException;
|
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
| InterfaceMaker.java | 50 * @param exceptions an array of exception types to declare for the method 52 public void add(Signature sig, Type[] exceptions) { 53 signatures.put(sig, exceptions); 112 Type[] exceptions = (Type[])signatures.get(sig); local 115 exceptions).end_method();
|
| /external/mockito/src/org/mockito/internal/exceptions/stacktrace/ |
| ConditionalStackTraceFilter.java | 6 package org.mockito.internal.exceptions.stacktrace;
|
| /external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
| ExceptionsAttribute_info.java | 18 * The Exceptions attribute is a variable-length attribute used in the attributes 19 * table of a {@link com.vladium.jcd.cls.Method_info} structure. The Exceptions 20 * attribute indicates which checked exceptions a method may throw. There must be 21 * exactly one Exceptions attribute in each method_info structure.<P> 23 * The Exceptions attribute has the following format: 52 final IDeclaredExceptionTable exceptions) 54 super (attribute_name_index, exceptions.length ()); 56 m_exceptions = exceptions;
|
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
| UndeclaredThrowableTransformer.java | 44 public CodeEmitter begin_method(int access, final Signature sig, final Type[] exceptions) { 45 CodeEmitter e = super.begin_method(access, sig, exceptions); 56 EmitUtils.wrap_undeclared_throwable(this, handler, exceptions, wrapper);
|
| /external/mockito/cglib-and-asm/src/org/mockito/asm/util/ |
| TraceSignatureVisitor.java | 58 private StringBuffer exceptions;
field in class:TraceSignatureVisitor 146 if (exceptions == null) {
147 exceptions = new StringBuffer();
149 exceptions.append(", ");
152 return new TraceSignatureVisitor(exceptions);
274 return exceptions == null ? null : exceptions.toString();
|
| /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/ |
| MethodNode.java | 77 public List exceptions;
field in class:MethodNode 158 * @param exceptions the internal names of the method's exception classes
167 final String[] exceptions)
174 this.exceptions = new ArrayList(exceptions == null
176 : exceptions.length);
182 if (exceptions != null) {
183 this.exceptions.addAll(Arrays.asList(exceptions));
404 String[] exceptions = new String[this.exceptions.size()]; [all...] |
| /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/ |
| ParallelSensorOperation.java | 116 ArrayList<Throwable> exceptions = new ArrayList<>(); local 126 exceptions.add(e.getCause()); 140 String summary = getSummaryMessage(exceptions, timeoutIndices); 144 if (!exceptions.isEmpty() || !timeoutIndices.isEmpty()) { 177 private String getSummaryMessage(List<Throwable> exceptions, List<Integer> timeoutIndices) { 179 for (Throwable exception : exceptions) {
|
| /development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
| ClassStubber.java | 62 String[] exceptions) { 63 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions); 64 return new MethodStubber(mw, access, name, desc, signature, exceptions);
|
| /cts/suite/cts/deviceTests/opengl/test/ |
| Android.mk | 30 LOCAL_LDFLAGS:= -g -lrt -ldl -lstdc++ -lm -fno-exceptions -lpthread
|