OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:exceptions
(Results
76 - 100
of
6480
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java
25
Class[]
exceptions
= constructor.getExceptionTypes();
local
26
assertEquals(1,
exceptions
.length);
27
assertEquals(IndexOutOfBoundsException.class,
exceptions
[0]);
29
exceptions
[0] = NullPointerException.class;
30
exceptions
= constructor.getExceptionTypes();
31
assertEquals(1,
exceptions
.length);
32
assertEquals(IndexOutOfBoundsException.class,
exceptions
[0]);
/ndk/build/tools/toolchain-patches/gcc/
0001-Enable-C-exceptions-and-RTTI-by-default.patch
4
Subject: Enable C++
exceptions
and RTTI by default.
21
- "%{!fexceptions:%{!fno-
exceptions
: -fno-
exceptions
}} " \
23
+ "%{!fexceptions:%{!fno-
exceptions
: -fexceptions}} " \
36
- "%{!fexceptions:%{!fno-
exceptions
: -fno-
exceptions
}} " \
38
+ "%{!fexceptions:%{!fno-
exceptions
: -fexceptions}} " \
51
- "%{!fexceptions:%{!fno-
exceptions
: -fno-
exceptions
}} " \
53
+ "%{!fexceptions:%{!fno-
exceptions
: -fexceptions}} "
[
all
...]
/cts/tools/signature-tools/src/signature/model/impl/
SigExecutableMember.java
36
private Set<ITypeReference>
exceptions
= Uninitialized.unset();
field in class:SigExecutableMember
59
return
exceptions
;
62
public void setExceptions(Set<ITypeReference>
exceptions
) {
63
this.
exceptions
=
exceptions
;
/external/chromium/chrome/browser/
chrome_browser_application_mac_unittest.mm
29
// These
exceptions
must be in this order.
35
// Random other
exceptions
map to |kUnknownNSException|.
50
// Record some known
exceptions
.
62
// Record some unknown
exceptions
.
68
// We should have exactly the right number of
exceptions
.
79
// The unknown
exceptions
should end up in the overflow bucket.
/dalvik/dx/tests/018-method-attrib-Exceptions/
expected.txt
15
0007: utf8{"
Exceptions
"}
33
name:
Exceptions
small-class.txt
19
01 000a "
Exceptions
" # 0007: utf8["
Exceptions
"]
/external/antlr/antlr-3.4/runtime/Python/dist/
antlr_python_runtime-3.4-py2.4.egg
antlr_python_runtime-3.4-py2.6.egg
/external/antlr/antlr-3.4/runtime/Python/unittests/
testbase.py
10
def broken(reason, *
exceptions
):
17
except
exceptions
or unittest.TestCase.failureException:
/external/chromium/chrome/browser/resources/options/
password_manager.html
12
<list id="password-
exceptions
-list" class="settings-list"></list>
13
<div id="password-
exceptions
-list-empty-placeholder" hidden
/external/clang/test/CodeGenObjCXX/
exceptions.mm
1
// RUN: %clang_cc1 -x objective-c++ -triple x86_64-apple-darwin10 -emit-llvm -fcxx-
exceptions
-fexceptions -fobjc-
exceptions
-o - %s | FileCheck %s
/external/clang/test/SemaTemplate/
instantiate-try-catch.cpp
1
// RUN: %clang_cc1 -fcxx-
exceptions
-fexceptions -fsyntax-only -std=c++11 -verify %s
6
} catch (T&&) { // expected-error 2{{cannot catch
exceptions
by rvalue reference}}
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverException.java
17
package com.google.clearsilver.jsilver.
exceptions
;
20
* Base class for all JSilver
exceptions
.
/external/mockito/src/org/mockito/exceptions/base/
MockitoException.java
6
package org.mockito.
exceptions
.base;
8
import org.mockito.internal.
exceptions
.stacktrace.ConditionalStackTraceFilter;
/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/mockito/src/org/mockito/internal/exceptions/util/
ScenarioPrinter.java
5
package org.mockito.internal.
exceptions
.util;
9
import org.mockito.internal.
exceptions
.VerificationAwareInvocation;
/external/mockito/src/org/mockito/internal/junit/
JUnitTool.java
7
import org.mockito.
exceptions
.verification.ArgumentsAreDifferent;
28
Class<?> clazz = Class.forName("org.mockito.
exceptions
.verification.junit.ArgumentsAreDifferent");
/external/mockito/src/org/mockito/listeners/
InvocationListener.java
20
*
Exceptions
caused by this invocationListener will raise a {@link org.mockito.
exceptions
.base.MockitoException}.
/external/mockito/src/org/mockito/plugins/
StackTraceCleanerProvider.java
4
import org.mockito.
exceptions
.stacktrace.StackTraceCleaner;
16
* See the default implementation: {@link org.mockito.internal.
exceptions
.stacktrace.DefaultStackTraceCleanerProvider}
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
exception-001.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: CallError";
exception-002.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: ConstructError";
exception-003.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: TargetError";
exception-004.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: ToObjectError";
exception-005.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: ToObjectError";
exception-006.js
4
* Description: Tests for JavaScript Standard
Exceptions
13
var TITLE = "Tests for JavaScript Standard
Exceptions
: TypeError";
Completed in 1406 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>