OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intArrayField
(Results
1 - 5
of
5
) sorted by null
/art/test/Transaction/
StaticArrayFieldsTest.java
22
public static int[]
intArrayField
= new int[1];
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues005Debuggee.java
33
static int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
47
intArrayField
= new int[1];
48
intArrayField
[0]= 999;
58
intArrayField
= null;
68
logWriter.println("-->
intArrayField
value = " +
intArrayField
);
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
GetValues003Debuggee.java
35
int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
50
testedObject.
intArrayField
= new int[1];
51
testedObject.
intArrayField
[0]= 999;
61
testedObject.
intArrayField
= null;
71
logWriter.println("-->
intArrayField
value = " + testedObject.
intArrayField
);
SetValues004Debuggee.java
39
int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
53
testedObject.
intArrayField
= new int[1];
54
testedObject.
intArrayField
[0]= 999;
65
logWriter.println("-->
intArrayField
value = " + testedObject.
intArrayField
);
78
logWriter.println("-->
intArrayField
value = " + testedObject.
intArrayField
);
79
if ( testedObject.
intArrayField
!= null ) {
/art/runtime/
transaction_test.cc
340
mirror::ArtField*
intArrayField
= h_klass->FindDeclaredStaticField("
intArrayField
", "[I");
341
ASSERT_TRUE(
intArrayField
!= nullptr);
342
mirror::IntArray* intArray =
intArrayField
->GetObject(h_klass.Get())->AsIntArray();
Completed in 2583 milliseconds