Home
last modified time | relevance | path

Searched refs:another_value (Results 1 – 2 of 2) sorted by relevance

/art/test/163-app-image-methods/src/
DMain.java43 int another_value = 0; in main() local
47 another_value = 42; in main()
49 another_value = -1; in main()
54 System.out.println("match: " + (value == another_value)); in main()
55 if (value != another_value || (value != -1 && value != 42)) { in main()
58 System.out.println("another_value: " + another_value); in main()
/art/test/159-app-image-fields/src/
DMain.java42 int another_value = 0; in main() local
46 another_value = Derived.value; in main()
48 another_value = -1; in main()
53 System.out.println("match: " + (value == another_value)); in main()
54 if (value != another_value || (value != -1 && value != 42)) { in main()
57 System.out.println("another_value: " + another_value); in main()