OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xar
(Results
1 - 2
of
2
) sorted by null
/dalvik/tests/003-omnibus-opcodes/src/
Classes.java
69
static void xarTests(Object
xar
) {
70
assert(
xar
instanceof Object);
71
assert(!(
xar
instanceof Classes));
72
assert(
xar
instanceof Classes[]);
73
assert(!(
xar
instanceof MoreClasses[]));
74
assert(
xar
instanceof Object[]);
75
assert(!(
xar
instanceof Object[][]));
119
Classes[]
xar
= new Classes[1];
local
132
xarTests(
xar
);
/dalvik/tests/010-instance/src/
InstanceTest.java
13
X[]
xar
= new X[1];
local
31
test =
xar
;
32
System.out.println("
xar
instanceof Object (true): "
34
System.out.println("
xar
instanceof X (false): "
36
System.out.println("
xar
instanceof X[] (true): "
38
System.out.println("
xar
instanceof Y[] (false): "
40
System.out.println("
xar
instanceof Object[] (true): "
42
System.out.println("
xar
instanceof X[][] (false): "
Completed in 145 milliseconds