Searched defs:one (Results 1 - 11 of 11) sorted by relevance

/dalvik/tests/068-classloader/src/
H A DDoubledImplement.java15 public void one() { method in class:DoubledImplement
16 System.out.println("DoubledImplement one");
H A DDoubledImplement2.java29 public void one() { method in class:DoubledImplement2
30 System.out.println("DoubledImplement2 one");
/dalvik/libdex/
H A DDexUtf.h42 unsigned int one, two, three; local
44 one = *(*pUtf8Ptr)++;
45 if ((one & 0x80) != 0) {
48 if ((one & 0x20) != 0) {
51 return ((one & 0x0f) << 12) |
56 return ((one & 0x1f) << 6) |
60 /* one-byte encoding */
61 return one;
/dalvik/tests/003-omnibus-opcodes/src/
H A DThrow.java29 public void one() { method in class:Throw
30 System.out.println("Throw.one");
119 th.one();
/dalvik/tests/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
/dalvik/dx/src/com/android/dx/io/
H A DCodeReader.java84 DecodedInstruction one = decodedInstructions[i];
85 if (one == null) {
89 callVisit(decodedInstructions, one);
99 private void callVisit(DecodedInstruction[] all, DecodedInstruction one) { argument
102 switch (OpcodeInfo.getIndexType(one.getOpcode())) {
114 visitor.visit(all, one);
119 void visit(DecodedInstruction[] all, DecodedInstruction one); argument
/dalvik/dx/src/com/android/dx/merge/
H A DInstructionTransformer.java61 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
62 mappedInstructions[mappedAt++] = one;
67 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
68 int stringId = one.getIndex();
70 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
72 mappedInstructions[mappedAt++] = one.withIndex(mappedId);
77 public void visit(DecodedInstruction[] all, DecodedInstruction one) { argument
78 int fieldId = one.getIndex();
80 boolean isJumbo = (one.getOpcode() == Opcodes.CONST_STRING_JUMBO);
82 mappedInstructions[mappedAt++] = one
87 visit(DecodedInstruction[] all, DecodedInstruction one) argument
97 visit(DecodedInstruction[] all, DecodedInstruction one) argument
[all...]
/dalvik/tests/093-serialization/src/
H A DMain.java78 Boolean one; field in class:Base
83 one = true;
110 System.out.println("one=" + one + " two=" + two + " three=" + three
/dalvik/vm/compiler/template/
H A Dgen-template.py56 raise DataParseError("handler-size requires one argument")
78 raise DataParseError("import requires one argument") namespace
93 raise DataParseError("import requires one argument") namespace
283 # allow more than one %break, ignoring all following the first
/dalvik/vm/mterp/
H A Dgen-mterp.py62 raise DataParseError("handler-style requires one argument")
78 raise DataParseError("handler-size requires one argument")
100 raise DataParseError("import requires one argument") namespace
119 raise DataParseError("import requires one argument") namespace
137 raise DataParseError("import requires one argument") namespace
476 # allow more than one %break, ignoring all following the first
/dalvik/vm/jdwp/
H A DJdwpSocket.cpp51 * We only talk to one debugger at a time.
143 int one = 1; local
158 if (setsockopt(netState->listenSock, SOL_SOCKET, SO_REUSEADDR, &one,
159 sizeof(one)) < 0)
525 * usually only going to find one packet, which is trivial to handle.
707 * We can do one of three things: (1) send a signal and catch
779 * Other than this one case, the protocol [claims to be] stateless.

Completed in 399 milliseconds