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
35
static int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
50
intArrayField
= new int[1];
51
intArrayField
[0]= 999;
61
intArrayField
= null;
71
logWriter.println("-->
intArrayField
value = " + Arrays.toString(
intArrayField
));
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
GetValues003Debuggee.java
37
int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
53
testedObject.
intArrayField
= new int[1];
54
testedObject.
intArrayField
[0]= 999;
64
testedObject.
intArrayField
= null;
74
logWriter.println("-->
intArrayField
value = " + Arrays.toString(testedObject.
intArrayField
));
SetValues004Debuggee.java
41
int
intArrayField
[]; // JDWP_TAG_ARRAY = 91
56
testedObject.
intArrayField
= new int[1];
57
testedObject.
intArrayField
[0]= 999;
68
logWriter.println("-->
intArrayField
value = " + Arrays.toString(testedObject.
intArrayField
));
81
logWriter.println("-->
intArrayField
value = " + Arrays.toString(testedObject.
intArrayField
));
82
if ( testedObject.
intArrayField
!= null ) {
/art/runtime/
transaction_test.cc
414
ArtField*
intArrayField
= h_klass->FindDeclaredStaticField("
intArrayField
", "[I");
415
ASSERT_TRUE(
intArrayField
!= nullptr);
416
mirror::IntArray* intArray =
intArrayField
->GetObject(h_klass.Get())->AsIntArray();
Completed in 50 milliseconds