Searched defs:two (Results 1 - 6 of 6) sorted by relevance

/art/test/068-classloader/src-ex/
H A DDoubledImplement.java29 public void two() { method in class:DoubledImplement
30 System.out.println("DoubledImplement two");
H A DDoubledImplement2.java29 public void two() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 two");
/art/test/005-annotations/src/android/test/anno/
H A DFullyNoted.java21 @AnnoFancyParameter(factor=3.7879912899761) long two)
30 @AnnoFancyParameter(factor=3.7879912899761) long two)
19 bar( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
28 bar1( @nnoSimpleParameter int one, @AnnoFancyParameter(factor=3.7879912899761) long two) argument
/art/runtime/
H A Dutf-inl.h39 const uint8_t two = *(*utf8_data_in)++; local
41 // two-byte encoding
42 return ((one & 0x1f) << 6) | (two & 0x3f);
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12)
63 // Step two: Write out the high (leading) surrogate to the bottom 16 bits
/art/test/093-serialization/src/
H A DMain.java96 Integer two; field in class:Base
101 two = Integer.valueOf(2);
127 System.out.println("one=" + one + " two=" + two + " three=" + three
/art/compiler/optimizing/
H A Dregister_allocator_test.cc65 // Test with two intervals of the same range.
79 // Test with two non-intersecting intervals.
94 // Test with two non-intersecting intervals, with one with a lifetime hole.
395 * allocating for at the minimum lifetime position between the two inactive intervals.
821 HInstruction* two = new (&allocator) HParameterValue( local
828 entry->AddInstruction(two);
861 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), &allocator, -1, two);

Completed in 257 milliseconds