HomeSort by relevance Sort by last modified time
    Searched full:exceptions (Results 201 - 225 of 5964) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/tools/telemetry/telemetry/page/actions/
tap_element.py 5 from telemetry.core import exceptions namespace
31 except exceptions.EvaluateException:
  /external/clang/test/ARCMT/
releases.m.result 1 // RUN: %clang_cc1 -fobjc-exceptions -fblocks -fsyntax-only -fobjc-arc -x objective-c %s.result
2 // RUN: arcmt-test --args -triple x86_64-apple-darwin10 -fobjc-exceptions -fblocks -fsyntax-only -x objective-c %s > %t
  /external/clang/test/CodeGenObjC/
attr-exception.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fexceptions -fobjc-exceptions -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fexceptions -fobjc-exceptions -fvisibility hidden -o - %s | FileCheck -check-prefix=CHECK-HIDDEN %s
gnu-exceptions.m 1 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -emit-llvm -fexceptions -fobjc-exceptions -fobjc-runtime=gcc -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple x86_64-unknown-freebsd -emit-llvm -fexceptions -fobjc-exceptions -fobjc-runtime=gnustep-1.7 -o - %s | FileCheck -check-prefix=NEW-ABI %s
arc-no-arc-exceptions.m 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-optzns -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O0 -disable-llvm-optzns -o - %s | FileCheck -check-prefix=NO-METADATA %s
3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fobjc-arc -fblocks -fexceptions -fobjc-exceptions -O2 -disable-llvm-optzns -o - %s -fobjc-arc-exceptions | FileCheck -check-prefix=NO-METADATA %s
5 // The front-end should emit clang.arc.no_objc_arc_exceptions in -fobjc-arc-exceptions
  /external/clang/test/CodeGenObjCXX/
catch-id-type.mm 1 // RUN: %clang_cc1 -triple i386-apple-macosx10.6.6 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -fobjc-exceptions -fcxx-exceptions -fexceptions -o - %s | FileCheck %s
  /external/clang/test/Parser/
objc-try-catch-1.m 1 // RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions %s
2 // RUN: %clang_cc1 -fsyntax-only -verify -fobjc-exceptions -x objective-c++ %s
  /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/jsilver/src/com/google/clearsilver/jsilver/exceptions/
ExceptionUtil.java 17 package com.google.clearsilver.jsilver.exceptions;
22 * Class to hold utilities related to exceptions used by JSilver code.
  /external/mockito/src/org/mockito/exceptions/base/
MockitoSerializationIssue.java 6 package org.mockito.exceptions.base;
8 import org.mockito.internal.exceptions.stacktrace.ConditionalStackTraceFilter;
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 24 Class<?>[] exceptions = method.getExceptionTypes(); local
26 for (Class<?> exception : exceptions) {
  /external/mockito/src/org/mockito/internal/verification/
AtMost.java 10 import org.mockito.exceptions.Reporter;
11 import org.mockito.exceptions.base.MockitoException;
  /external/proguard/src/proguard/classfile/visitor/
ExceptionCounter.java 28 * This ExceptionInfoVisitor counts the number of exceptions that has been visited.
38 * Returns the number of exceptions that has been visited so far.
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 35 * Closes the given file descriptor iff it is not null, ignoring exceptions.
42 // Ignore exceptions when closing.
  /libcore/libart/src/main/java/java/lang/reflect/
Proxy.java 163 List<Class<?>[]> exceptions = deduplicateAndGetExceptions(methods); local
169 Class<?>[][] exceptionsArray = exceptions.toArray(new Class<?>[exceptions.size()][]);
293 * @param methods the methods to find exceptions for, ordered by name and
318 * computes the exceptions of each method; this is the intersection of the
319 * exceptions of equivalent methods.
321 * @param methods the methods to find exceptions for, ordered by name and
325 List<Class<?>[]> exceptions = new ArrayList<Class<?>[]>(methods.size()); local
332 exceptions.set(i - 1, intersectExceptions(exceptions.get(i - 1), exceptionTypes))
    [all...]
  /external/chromium/chrome/browser/resources/options/
password_manager.js 13 * Encapsulated handling of password and exceptions page.
37 * The password exceptions list.
74 * Creates, decorates and initializes the password exceptions list.
78 this.passwordExceptionsList_ = $('password-exceptions-list');
106 * Updates the data model for the password exceptions list with the values
  /external/chromium/testing/gtest/test/
gtest-death-test_ex_test.cc 32 // Tests that verify interaction of exceptions and death tests.
49 // Tests that death tests report thrown exceptions as failures and that the
50 // exceptions do not escape death test macros.
77 // Tests that enabling interception of SEH exceptions with the
78 // catch_exceptions flag does not interfere with SEH exceptions being
  /external/chromium_org/testing/gtest/test/
gtest-death-test_ex_test.cc 32 // Tests that verify interaction of exceptions and death tests.
49 // Tests that death tests report thrown exceptions as failures and that the
50 // exceptions do not escape death test macros.
77 // Tests that enabling interception of SEH exceptions with the
78 // catch_exceptions flag does not interfere with SEH exceptions being
  /external/chromium_org/tools/telemetry/docs/
telemetry.core.chrome.inspector_backend.html 22 <td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="telemetry.core.exceptions.html">telemetry.core.exceptions</a><br>
50 <dt><font face="helvetica, arial"><a href="exceptions.html#Exception">exceptions.Exception</a>(<a href="exceptions.html#BaseException">exceptions.BaseException</a>)
143 <font color="#000000" face="helvetica, arial"><a name="InspectorException">class <strong>InspectorException</strong></a>(<a href="exceptions.html#Exception">exceptions.Exception</a>)</font></td></tr>
148 <dd><a href="exceptions.html#Exception">exceptions.Exception</a></dd
    [all...]
  /external/clang/test/CodeGenCXX/
sizeof-unwind-exception.cpp 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=X86-64
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=X86-32
3 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=ARM-DARWIN
4 // RUN: %clang_cc1 -triple arm-unknown-gnueabi -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=ARM-EABI
5 // RUN: %clang_cc1 -triple mipsel-unknown-unknown -emit-llvm -fcxx-exceptions -fexceptions %s -O2 -o - | FileCheck %s --check-prefix=MIPS
  /external/gtest/test/
gtest-death-test_ex_test.cc 32 // Tests that verify interaction of exceptions and death tests.
49 // Tests that death tests report thrown exceptions as failures and that the
50 // exceptions do not escape death test macros.
77 // Tests that enabling interception of SEH exceptions with the
78 // catch_exceptions flag does not interfere with SEH exceptions being
  /external/guava/guava/src/com/google/common/util/concurrent/
CheckedFuture.java 34 * <p>Implementations of this interface must adapt the exceptions thrown by
58 * {@link ExecutionException} into application-specific exceptions.
61 * @throws X on interruption, cancellation or execution exceptions.
68 * {@link ExecutionException} into application-specific exceptions. On
73 * @throws X on interruption, cancellation or execution exceptions.
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest-death-test_ex_test.cc 32 // Tests that verify interaction of exceptions and death tests.
49 // Tests that death tests report thrown exceptions as failures and that the
50 // exceptions do not escape death test macros.
77 // Tests that enabling interception of SEH exceptions with the
78 // catch_exceptions flag does not interfere with SEH exceptions being
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
java.lang.Class.html 90 Change in exceptions thrown from (<code>java.lang.NoSuchMethodException, java.lang.SecurityException</code>) to <code>java.lang.NoSuchMethodException</code>.<br>
100 Change in exceptions thrown from <code>java.lang.SecurityException</code> to no exceptions.<br>
110 Change in exceptions thrown from <code>java.lang.SecurityException</code> to no exceptions.<br>
120 Change in exceptions thrown from (<code>java.lang.NoSuchMethodException, java.lang.SecurityException</code>) to <code>java.lang.NoSuchMethodException</code>.<br>
130 Change in exceptions thrown from <code>java.lang.SecurityException</code> to no exceptions.<br>
140 Change in exceptions thrown from (<code>java.lang.NoSuchFieldException, java.lang.SecurityException</code>) to <code>java.lang.NoSuchFieldException</code>.<br>
150 Change in exceptions thrown from <code>java.lang.SecurityException</code> to no exceptions.<br
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java 80 Type[] exceptions = method.getGenericExceptionTypes(); local
81 TypeVariable t = (TypeVariable) exceptions[0];
82 assertEquals(3, exceptions.length);
85 assertEquals(Exception.class, exceptions[1]);
86 TypeVariable x = (TypeVariable) exceptions[2];

Completed in 1928 milliseconds

1 2 3 4 5 6 7 891011>>