Searched refs:one (Results 1 - 16 of 16) sorted by relevance

/art/test/068-classloader/src/
H A DDoubledImplement.java29 public void one() { method in class:DoubledImplement
30 System.out.println("DoubledImplement one");
H A DDoubledImplement2.java29 public void one() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 one");
H A DMain.java44 * reference to one of these; presumably the difference is that
449 di.one();
507 di2.one();
/art/runtime/
H A Dutf-inl.h33 const uint8_t one = *(*utf8_data_in)++; local
34 if ((one & 0x80) == 0) {
35 // one-byte encoding
36 return one;
40 if ((one & 0x20) == 0) {
42 return ((one & 0x1f) << 6) | (two & 0x3f);
46 if ((one & 0x10) == 0) {
47 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
59 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12)
/art/tools/
H A Dsymbolize.sh29 function one() { function
57 one $DIR $NAME
69 one $DIR $NAME
/art/test/005-annotations/src/android/test/anno/
H A DFullyNoted.java20 @AnnoSimpleParameter int one,
29 @AnnoSimpleParameter int one,
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/test/050-sync-test/src/
H A DMain.java48 CpuThread one, two;
50 one = new CpuThread(1);
53 synchronized (one) {
54 one.start();
56 one.wait();
68 one.join();
/art/test/003-omnibus-opcodes/src/
H A DThrow.java29 public void one() { method in class:Throw
30 System.out.println("Throw.one");
119 th.one();
H A DIntMath.java91 int one = thirtyTwo / 32;
99 Main.assertTrue(1 << -one == -2147483648);
107 Main.assertTrue(1 >> -one == 0);
115 Main.assertTrue(1 >>> -one == 0);
/art/test/093-serialization/src/
H A DMain.java95 Boolean one; field in class:Base
100 one = true;
127 System.out.println("one=" + one + " two=" + two + " three=" + three
/art/runtime/jdwp/
H A Djdwp_socket.cc43 * We only talk to one debugger at a time.
130 int one = 1; local
131 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) {
427 * We can do one of three things: (1) send a signal and catch
497 * Other than this one case, the protocol [claims to be] stateless.
/art/compiler/optimizing/
H A Dregister_allocator_test.cc94 // Test with two non-intersecting intervals, with one with a lifetime hole.
428 // Put the one that should be picked in the middle of the inactive list to ensure
819 HInstruction* one = new (&allocator) HParameterValue( local
827 entry->AddInstruction(one);
840 user->AddInput(one);
849 LiveInterval* first = BuildInterval(ranges1, arraysize(ranges1), &allocator, -1, one);
901 // Set just one register available to make all intervals compete for the same.
H A Dnodes.h1632 const uint64_t one = 1; local
1636 return one << (type + offset);
1957 // have at least one use but no environment uses.
2402 // Returns the next equivalent phi (starting from the current one) or null if there is none.
2458 // Jumps from one block to another.
2870 // have one successor for each entry in the switch table, and the final successor
3015 // If `GetConstantRight()` returns one of the input, this returns the other
3016 // one. Otherwise it returns null.
3919 // There is potentially one extra argument for the HCurrentMethod node, and
3920 // potentially one othe
[all...]
/art/test/046-reflect/src/
H A DMain.java66 String one, two, three, four;
70 one = (String) field.get(instance);
78 System.out.println(" ::: " + one + ":" + two + ":" + three);
/art/test/023-many-interfaces/src/
H A DManyInterfaces.java191 Interface001 one;
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S598 lw $\reg, -4($\next_arg) # next_arg points to argument after the current one (offset is 4)
604 lw $\reg1, -8($\next_arg) # next_arg points to argument after the current one (offset is 8)
611 lwc1 $\reg, -4($\next_arg) # next_arg points to argument after the current one (offset is 4)
617 LDu $\reg1, $\reg2, -8, $\next_arg, $\tmp # next_arg points to argument after the current one

Completed in 304 milliseconds