HomeSort by relevance Sort by last modified time
    Searched refs:another_value (Results 1 - 2 of 2) sorted by null

  /art/test/163-app-image-methods/src/
Main.java 33 // simply check for consistency, i.e. `value == another_value`.
43 int another_value = 0; local
47 another_value = 42;
49 another_value = -1;
54 System.out.println("match: " + (value == another_value));
55 if (value != another_value || (value != -1 && value != 42)) {
58 System.out.println("another_value: " + another_value);
  /art/test/159-app-image-fields/src/
Main.java 31 // simply check for consistency, i.e. `value == another_value`.
42 int another_value = 0; local
46 another_value = Derived.value;
48 another_value = -1;
53 System.out.println("match: " + (value == another_value));
54 if (value != another_value || (value != -1 && value != 42)) {
57 System.out.println("another_value: " + another_value);
    [all...]

Completed in 163 milliseconds