Home
last modified time | relevance | path

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

/art/test/093-serialization/
Dexpected-stdout.txt1 one=true two=2 three=three four=4.0 five=5.0 six=6 seven=7 eight=8 nine=9 thing=X
/art/libdexfile/dex/
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/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/ti-agent/
Dti_utf.h80 const uint8_t three = *(*utf8_data_in)++; in GetUtf16FromUtf8() local
82 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f); in GetUtf16FromUtf8()
95 | ((three & 0x3f) << 6) | (four & 0x3f); in GetUtf16FromUtf8()
/art/test/047-returns/
Dexpected-stdout.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-stdout.txt4 Created Bitmap three/four: 20x20 (101)
/art/test/1945-proxy-method-arguments/
Dexpected-stdout.txt12 arg3: java.lang.String "three"
/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()
217 String three; in run() local
219 three = (String) field.get(this); in run()
221 + three); in run()
/art/test/
DREADME.md29 run-test has three main parts: building the test, running the test, and checking
30 the test's output. By default, these three steps are implemented by three Bash
/art/compiler/optimizing/
Dregister_allocator_test.cc850 HInstruction* three = new (GetAllocator()) HParameterValue( in TEST_F() local
856 entry->AddInstruction(three); in TEST_F()
899 LiveInterval* third = BuildInterval(ranges3, arraysize(ranges3), GetScopedAllocator(), -1, three); in TEST_F()
/art/runtime/
Dmutator_gc_coord.md108 Suspend point checks enable three kinds of communication with mutator threads:
/art/test/510-checker-try-catch/smali/
DBuilder.smali19 # Basic test case with two try blocks and three catch handlers, one of which