Searched refs:three (Results 1 - 3 of 3) sorted by relevance

/art/test/093-serialization/src/
H A DMain.java97 String three; field in class:Base
102 three = "three";
127 System.out.println("one=" + one + " two=" + two + " three=" + three
/art/runtime/
H A Dutf.cc34 // two- or three-byte encoding
40 // three-byte encoding
94 // two- or three-byte encoding
100 // three-byte encoding
101 uint8_t three = *(*utf8_data_in)++; local
102 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
/art/test/046-reflect/src/
H A DMain.java64 String one, two, three, four;
74 three = (String) field.get(instance);
76 System.out.println(" ::: " + one + ":" + two + ":" + three);
216 String three;
218 three = (String) field.get(this);
220 + three);

Completed in 167 milliseconds