Searched defs:lv2 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/com/sun/jdi/
H A DLocalVariableEqual.java156 void compareTwoEqualVars(LocalVariable lv1, LocalVariable lv2) { argument
157 if (lv1.equals(lv2)) {
162 if (lv1.hashCode() == lv2.hashCode()) {
167 if (lv1.compareTo(lv2) == 0) {
174 void compareTwoDifferentVars(LocalVariable lv1, LocalVariable lv2) { argument
175 if (!lv1.equals(lv2)) {
180 if (lv1.hashCode() != lv2.hashCode()) {
185 if (lv1.compareTo(lv2) != 0) {
212 LocalVariable lv2 = (LocalVariable) it2.next();
216 printVariable(lv2, index
[all...]

Completed in 36 milliseconds