Searched defs:one (Results 1 - 13 of 13) 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/tools/
H A Dsymbolize.sh29 function one() { function
57 one $DIR $NAME
69 one $DIR $NAME
/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/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/641-checker-arraycopy/src/
H A DMain.java50 public static void assertEquals(Object one, Object two) { argument
51 if (one != two) {
52 throw new Error("Expected " + one + ", got " + two);
/art/libdexfile/dex/
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/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/test/ti-agent/
H A Dti_utf.h68 const uint8_t one = *(*utf8_data_in)++; local
69 if ((one & 0x80) == 0) {
70 // one-byte encoding
71 return one;
75 if ((one & 0x20) == 0) {
77 return ((one & 0x1f) << 6) | (two & 0x3f);
81 if ((one & 0x10) == 0) {
82 return ((one & 0x0f) << 12) | ((two & 0x3f) << 6) | (three & 0x3f);
94 const uint32_t code_point = ((one & 0x0f) << 18) | ((two & 0x3f) << 12)
/art/runtime/jdwp/
H A Djdwp_socket.cc44 * We only talk to one debugger at a time.
131 int one = 1; local
132 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one, sizeof(one)) < 0) {
430 * We can do one of three things: (1) send a signal and catch
500 * Other than this one case, the protocol [claims to be] stateless.
/art/compiler/optimizing/
H A Dregister_allocator_test.cc131 // Test with two non-intersecting intervals, with one with a lifetime hole.
463 // Put the one that should be picked in the middle of the inactive list to ensure
868 HInstruction* one = new (GetAllocator()) HParameterValue( local
876 entry->AddInstruction(one);
889 user->AddInput(one);
898 LiveInterval* first = BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), -1, one);
952 // Set just one register available to make all intervals compete for the same.
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py66 raise DataParseError("handler-style requires one argument")
82 raise DataParseError("handler-size requires one argument")
104 raise DataParseError("import requires one argument") namespace
119 raise DataParseError("import requires one argument") namespace
135 raise DataParseError("import requires one argument") namespace
150 raise DataParseError("import requires one argument") namespace
463 # allow more than one %break, ignoring all following the first
/art/compiler/utils/mips/
H A Dassembler_mips.h89 inline InOutRegMasks& GprOuts(T one, Ts... more) { GprOuts(one); GprOuts(more...); return *this; } argument
97 inline InOutRegMasks& GprIns(T one, Ts... more) { GprIns(one); GprIns(more...); return *this; } argument
101 inline InOutRegMasks& GprInOuts(T one, Ts... more) { argument
102 GprInOuts(one);
110 inline InOutRegMasks& FprOuts(T one, Ts... more) { FprOuts(one); FprOuts(more...); return *this; } argument
115 inline InOutRegMasks& FprIns(T one, Ts... more) { FprIns(one); FprIn argument
122 FprInOuts(T one, Ts... more) argument
130 CcOuts(T one, Ts... more) argument
134 CcIns(T one, Ts... more) argument
[all...]

Completed in 284 milliseconds