Home
last modified time | relevance | path

Searched refs:testIntField (Results 1 – 4 of 4) sorted by relevance

/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DFieldWithLocationDebuggee.java33 private int testIntField = 0; field in FieldWithLocationDebuggee
37 int currentValue = testIntField; // field access in unexpectedMethodForFieldEvent()
39 testIntField = currentValue + 1; // field modification in unexpectedMethodForFieldEvent()
44 int currentValue = testIntField; // field access in expectedMethodForFieldEvent()
46 testIntField = currentValue + 1; // field modification in expectedMethodForFieldEvent()
DFieldDebuggee.java41 private int testIntField = 0; field in FieldDebuggee
51 testIntField = 512; in run()
52 logWriter.println("Access to field testIntField: value="+testIntField); in run()
DFieldModification002Debuggee.java47 public int testIntField = 0; field in FieldModification002Debuggee
82 testIntField = -1001; in run()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
DFieldDebuggee.java41 private int testIntField = 0; field in FieldDebuggee
51 testIntField = 512; in run()
53 logWriter.println("--> Access to field testIntField: value="+testIntField); in run()