OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:objectArrayField
(Results
1 - 8
of
8
) sorted by null
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValues002Debuggee.java
41
static SetValues002Debuggee
objectArrayField
[]; // JDWP_TAG_ARRAY = 91
47
objectArrayField
= new SetValues002Debuggee[1];
48
objectArrayField
[0] = new SetValues002Debuggee();
51
logWriter.println("-->
objectArrayField
[0] value = " +
objectArrayField
[0]);
57
logWriter.println("-->
objectArrayField
[0] value = " +
objectArrayField
[0]);
58
if (
objectArrayField
[0] != null ) {
/art/test/Transaction/
StaticArrayFieldsTest.java
26
public static Object[]
objectArrayField
= new Object[1];
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues005Debuggee.java
36
static GetValues005Debuggee
objectArrayField
[]; // JDWP_TAG_ARRAY = 91
52
objectArrayField
= new GetValues005Debuggee[1];
53
objectArrayField
[0] = new GetValues005Debuggee();
62
objectArrayField
= null;
72
logWriter.println("-->
objectArrayField
value = " + Arrays.toString(
objectArrayField
));
FieldsWithGenericDebuggee.java
35
Object[]
objectArrayField
;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
GetValues003Debuggee.java
38
GetValues003Debuggee
objectArrayField
[]; // JDWP_TAG_ARRAY = 91
55
testedObject.
objectArrayField
= new GetValues003Debuggee[1];
56
testedObject.
objectArrayField
[0] = new GetValues003Debuggee();
65
testedObject.
objectArrayField
= null;
75
logWriter.println("-->
objectArrayField
value = " + Arrays.toString(testedObject.
objectArrayField
));
GetValuesDebuggee.java
40
GetValuesDebuggee[]
objectArrayField
;
57
getValuesDebuggeeObject.
objectArrayField
= new GetValuesDebuggee[1];
58
getValuesDebuggeeObject.
objectArrayField
[0] = new GetValuesDebuggee();
SetValues004Debuggee.java
42
SetValues004Debuggee
objectArrayField
[]; // JDWP_TAG_ARRAY = 91
58
testedObject.
objectArrayField
= new SetValues004Debuggee[1];
59
testedObject.
objectArrayField
[0] = new SetValues004Debuggee();
69
logWriter.println("-->
objectArrayField
value = " + Arrays.toString(testedObject.
objectArrayField
));
90
logWriter.println("-->
objectArrayField
value = " + Arrays.toString(testedObject.
objectArrayField
));
91
if ( testedObject.
objectArrayField
!= null ) {
/art/runtime/
transaction_test.cc
442
ArtField*
objectArrayField
= h_klass->FindDeclaredStaticField("
objectArrayField
",
444
ASSERT_TRUE(
objectArrayField
!= nullptr);
446
objectArrayField
->GetObject(h_klass.Get())->AsObjectArray<mirror::Object>();
Completed in 406 milliseconds