OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cases
(Results
1 - 25
of
2648
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/core/java/android/test/
package.html
3
A framework for writing Android test
cases
and suites.
/external/clearsilver/cs/
test9.cs.gold
2
Test for bug where in certain
cases
we didn't find the ending cs tag if
test9.cs
1
Test for bug where in certain
cases
we didn't find the ending cs tag if
/dalvik/dx/src/com/android/dx/rop/code/
SwitchInsn.java
25
* Instruction which contains switch
cases
.
29
/** {@code non-null;} list of switch
cases
*/
30
private final IntList
cases
;
field in class:SwitchInsn
39
* @param
cases
{@code non-null;} list of switch
cases
42
RegisterSpecList sources, IntList
cases
) {
49
if (
cases
== null) {
50
throw new NullPointerException("
cases
== null");
53
this.
cases
=
cases
;
[
all
...]
/dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java
37
/** {@code non-null;} sorted list of switch
cases
(keys) */
38
private final IntList
cases
;
field in class:SwitchData
56
* @param
cases
{@code non-null;} sorted list of switch
cases
(keys)
61
IntList
cases
, CodeAddress[] targets) {
68
if (
cases
== null) {
69
throw new NullPointerException("
cases
== null");
76
int sz =
cases
.size();
79
throw new IllegalArgumentException("
cases
/ targets mismatch");
83
throw new IllegalArgumentException("too many
cases
");
[
all
...]
/external/proguard/src/proguard/classfile/instruction/
LookUpSwitchInstruction.java
35
public int[]
cases
;
field in class:LookUpSwitchInstruction
49
int[]
cases
,
54
this.
cases
=
cases
;
68
this.
cases
= lookUpSwitchInstruction.
cases
;
93
cases
= new int[jumpOffsetCount];
98
cases
[index] = readInt(code, offset); offset += 4;
114
writeInt(code, offset,
cases
.length); offset += 4;
117
for (int index = 0; index <
cases
.length; index++
[
all
...]
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
exec-001.js
25
// test
cases
without subpatterns
26
// test
cases
with subpatterns
29
// test
cases
in which the exec returns null
/external/e2fsprogs/tests/progs/test_data/
test.brel
14
# Test boundary
cases
for brel_put
19
# Test other boundary
cases
/dalvik/dx/src/junit/framework/
Test.java
10
* Counts the number of test
cases
that will be run by this test.
/dalvik/dx/tests/046-dex-exceptions/
info.txt
2
a couple simple
cases
of exception handling get converted reasonably.
/dalvik/dx/tests/056-dex-call-interface/
info.txt
2
a couple
cases
of interface method invocation work properly.
/dalvik/dx/tests/057-dex-call-virtual/
info.txt
2
a couple
cases
of regular virtual method invocation work properly.
/dalvik/dx/tests/058-dex-call-direct/
info.txt
2
a couple
cases
of direct instance method invocation work properly.
/dalvik/dx/tests/059-dex-call-super/
info.txt
2
a couple
cases
of superclass virtual method invocation work properly.
/dalvik/dx/tests/060-dex-call-static/
info.txt
2
a couple
cases
of static method invocation work properly.
/dalvik/dx/tests/061-dex-try-catch/
info.txt
2
a couple
cases
of try-catch work properly.
/dalvik/dx/tests/062-dex-synch-method/
info.txt
2
a couple
cases
of synchronized methods get converted reasonably.
/dalvik/dx/tests/064-dex-array-access/
info.txt
2
a few
cases
of array access get converted reasonably.
/dalvik/dx/tests/065-dex-new-array/
info.txt
2
a few
cases
of array construction get converted reasonably.
/dalvik/dx/tests/066-dex-try-catch-rethrow/
info.txt
1
This is a smoke test of dex conversion, which looks at a few
cases
of
/dalvik/dx/tests/068-dex-infinite-loop/
info.txt
2
cases
of (potentially) infinite loops translate reasonably.
/dalvik/dx/tests/070-dex-multianewarray/
info.txt
2
cases
of multidimensional array construction get converted reasonably.
/dalvik/dx/tests/072-dex-switch-edge-cases/
info.txt
2
a bunch of switch op edge
cases
get converted reasonably.
/dalvik/libcore/junit/src/main/java/junit/framework/
Test.java
10
* Counts the number of test
cases
that will be run by this test.
/external/icu4c/test/intltest/
calcasts.h
7
* behavior of a calendar to a certain set of 'test
cases
', involving
40
* @param
cases
array of items to test. Terminate with a "-1" for era.
42
void doTestCases(const TestCase *
cases
, Calendar *cal);
56
// test
cases
Completed in 146 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>