Home
last modified time | relevance | path

Searched refs:three (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dutf-inl.h45 const uint8_t three = *(*utf8_data_in)++; in GetUtf16FromUtf8() local
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
60 | ((three & 0x3f) << 6) | (four & 0x3f); in GetUtf16FromUtf8()
/art/test/093-serialization/
Dexpected.txt1 one=true two=2 three=three four=4.0 five=5.0 six=6 seven=7 eight=8 nine=9 thing=X
/art/test/093-serialization/src/
DMain.java97 String three; field in Base
102 three = "three"; in Base()
127 System.out.println("one=" + one + " two=" + two + " three=" + three in check()
/art/test/047-returns/
Dexpected.txt10 three running
/art/test/078-polymorphic-virtual/
Dinfo.txt2 calless invoked 10,000,000 times each in three threads.
/art/test/079-phantom/
Dexpected.txt4 Created Bitmap three/four: 20x20 (101)
/art/test/046-reflect/src/
DMain.java66 String one, two, three, four; in showStrings() local
76 three = (String) field.get(instance); in showStrings()
78 System.out.println(" ::: " + one + ":" + two + ":" + three); in showStrings()
218 String three; in run() local
220 three = (String) field.get(this); in run()
222 + three); in run()
/art/compiler/optimizing/
Dregister_allocator_test.cc792 HInstruction* three = new (&allocator) HParameterValue(0, Primitive::kPrimInt); in TEST() local
796 entry->AddInstruction(three); in TEST()
838 LiveInterval* third = BuildInterval(ranges3, arraysize(ranges3), &allocator, -1, three); in TEST()