OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IllegalMonitorStateException
(Results
1 - 25
of
28
) sorted by null
1
2
/dalvik/libcore/luni/src/main/java/java/lang/
IllegalMonitorStateException.java
25
public class
IllegalMonitorStateException
extends RuntimeException {
30
* Constructs a new {@code
IllegalMonitorStateException
} that includes the
33
public
IllegalMonitorStateException
() {
44
public
IllegalMonitorStateException
(String detailMessage) {
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
IllegalMonitorStateExceptionTest.java
27
@TestTargetClass(
IllegalMonitorStateException
.class)
31
* @tests java.lang.
IllegalMonitorStateException
#
IllegalMonitorStateException
()
36
method = "
IllegalMonitorStateException
",
40
IllegalMonitorStateException
e = new
IllegalMonitorStateException
();
47
* @tests java.lang.
IllegalMonitorStateException
#
IllegalMonitorStateException
(java.lang.String)
52
method = "
IllegalMonitorStateException
",
56
IllegalMonitorStateException
e = new IllegalMonitorStateException("fixture")
[
all
...]
ObjectTest.java
284
fail("
IllegalMonitorStateException
was not thrown.");
285
} catch(
IllegalMonitorStateException
imse) {
371
fail("
IllegalMonitorStateException
was not thrown.");
372
} catch(
IllegalMonitorStateException
imse) {
446
fail("
IllegalMonitorStateException
was not thrown.");
447
} catch(
IllegalMonitorStateException
imse) {
572
fail("
IllegalMonitorStateException
was not thrown.");
573
} catch(
IllegalMonitorStateException
imse) {
651
fail("
IllegalMonitorStateException
was not thrown.");
652
} catch(
IllegalMonitorStateException
imse)
[
all
...]
/cts/tools/dx-tests/src/dxc/junit/opcodes/monitorexit/
Test_monitorexit.java
43
fail("expected
IllegalMonitorStateException
");
55
fail("expected
IllegalMonitorStateException
");
56
} catch (
IllegalMonitorStateException
imse) {
115
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/opc_return/
Test_opc_return.java
51
fail("expected
IllegalMonitorStateException
");
52
} catch (
IllegalMonitorStateException
imse) {
67
//fail("expected
IllegalMonitorStateException
");
68
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/opc_return/
Test_opc_return.java
41
fail("expected
IllegalMonitorStateException
");
42
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/return_void/
Test_return_void.java
41
fail("expected
IllegalMonitorStateException
");
42
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/return_wide/
Test_return_wide.java
40
fail("expected
IllegalMonitorStateException
");
41
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/athrow/
Test_athrow.java
93
* @title
IllegalMonitorStateException
expected
99
fail("expected
IllegalMonitorStateException
");
100
} catch (
IllegalMonitorStateException
imse) {
106
* @title
IllegalMonitorStateException
if structural lock rule violated -
112
fail("expected
IllegalMonitorStateException
");
113
} catch (
IllegalMonitorStateException
imse) {
119
//fail ("expected
IllegalMonitorStateException
, but got NPE");
/cts/tools/dx-tests/src/dxc/junit/opcodes/dreturn/
Test_dreturn.java
60
fail("expected
IllegalMonitorStateException
");
61
} catch (
IllegalMonitorStateException
imse) {
76
//fail("expected
IllegalMonitorStateException
");
77
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/freturn/
Test_freturn.java
59
fail("expected
IllegalMonitorStateException
");
60
} catch (
IllegalMonitorStateException
imse) {
75
//fail("expected
IllegalMonitorStateException
");
76
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/ireturn/
Test_ireturn.java
59
fail("expected
IllegalMonitorStateException
");
60
} catch (
IllegalMonitorStateException
imse) {
75
//fail("expected
IllegalMonitorStateException
");
76
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/areturn/
Test_areturn.java
109
fail("expected
IllegalMonitorStateException
");
110
} catch (
IllegalMonitorStateException
imse) {
125
//fail("expected
IllegalMonitorStateException
");
126
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/dx-tests/src/dxc/junit/opcodes/lreturn/
Test_lreturn.java
60
fail("expected
IllegalMonitorStateException
");
61
} catch (
IllegalMonitorStateException
imse) {
77
// //fail("expected
IllegalMonitorStateException
");
78
// } catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/monitor_exit/
Test_monitor_exit.java
41
fail("expected
IllegalMonitorStateException
");
141
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/opc_throw/
Test_opc_throw.java
92
* @title expected
IllegalMonitorStateException
98
fail("expected
IllegalMonitorStateException
");
99
} catch (
IllegalMonitorStateException
imse) {
/cts/tools/vm-tests/src/dot/junit/opcodes/return_object/
Test_return_object.java
94
fail("expected
IllegalMonitorStateException
");
95
} catch (
IllegalMonitorStateException
imse) {
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java
344
throw new
IllegalMonitorStateException
();
416
private
IllegalMonitorStateException
unmatchedUnlockException() {
417
return new
IllegalMonitorStateException
(
[
all
...]
ReentrantLock.java
126
throw new
IllegalMonitorStateException
();
424
* lock then {@link
IllegalMonitorStateException
} is thrown.
426
* @throws
IllegalMonitorStateException
if the current thread does not
448
*
IllegalMonitorStateException
} is thrown.
665
* @throws
IllegalMonitorStateException
if this lock is not held
688
* @throws
IllegalMonitorStateException
if this lock is not held
713
* @throws
IllegalMonitorStateException
if this lock is not held
AbstractQueuedSynchronizer.java
177
* if (getState() == 0) throw new
IllegalMonitorStateException
();
[
all
...]
/dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
TimeUnitTest.java
191
*
IllegalMonitorStateException
207
catch(
IllegalMonitorStateException
success) {
238
catch(
IllegalMonitorStateException
failure) {
AbstractQueuedSynchronizerTest.java
42
if (getState() == 0) throw new
IllegalMonitorStateException
();
508
* Calling await without holding sync throws
IllegalMonitorStateException
517
catch (
IllegalMonitorStateException
success) {
525
* Calling signal without holding sync throws
IllegalMonitorStateException
534
catch (
IllegalMonitorStateException
success) {
695
} catch (
IllegalMonitorStateException
success) {
727
} catch (
IllegalMonitorStateException
success) {
759
} catch (
IllegalMonitorStateException
success) {
[
all
...]
ReentrantLockTest.java
100
* Unlocking an unlocked lock throws
IllegalMonitorStateException
108
} catch(
IllegalMonitorStateException
success){}
447
* Calling await without holding lock throws
IllegalMonitorStateException
456
catch (
IllegalMonitorStateException
success) {
464
* Calling signal without holding lock throws
IllegalMonitorStateException
473
catch (
IllegalMonitorStateException
success) {
632
} catch (
IllegalMonitorStateException
success) {
664
} catch (
IllegalMonitorStateException
success) {
696
} catch (
IllegalMonitorStateException
success) {
[
all
...]
ReentrantReadWriteLockTest.java
145
* write-unlocking an unlocked lock throws
IllegalMonitorStateException
152
} catch(
IllegalMonitorStateException
success){}
851
* Calling await without holding lock throws
IllegalMonitorStateException
860
catch (
IllegalMonitorStateException
success) {
868
* Calling signal without holding lock throws
IllegalMonitorStateException
877
catch (
IllegalMonitorStateException
success) {
[
all
...]
/prebuilt/sdk/5/
android.jar
Completed in 1390 milliseconds
1
2