Searched defs:one (Results 1 - 8 of 8) 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");
/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();
/art/test/004-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/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/
H A Dutf.cc31 // one-byte encoding
89 uint8_t one = *(*utf8_data_in)++; local
90 if ((one & 0x80) == 0) {
91 // one-byte encoding
92 return one;
96 if ((one & 0x20) == 0) {
98 return ((one & 0x1f) << 6) | (two & 0x3f);
102 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
/art/runtime/jdwp/
H A Djdwp_socket.cc43 * We only talk to one debugger at a time.
128 int one = 1; local
129 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) {
400 * We can do one of three things: (1) send a signal and catch
469 * Other than this one case, the protocol [claims to be] stateless.
/art/jdwpspy/
H A DNet.cpp251 int one = 1; local
252 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one,
253 sizeof(one)) < 0)
435 * usually only going to find one packet, which is trivial to handle.
722 * We wait for a new connection from the debugger. When one arrives we
723 * open a connection to the VM. If one side or the other goes away, we

Completed in 238 milliseconds