Searched refs:first (Results 1 - 25 of 50) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DUniformListItem.java33 * output list size (which is four bytes) and before the first item.</p>
98 OffsettedItem first = items.get(0);
99 return (items.size() * first.writeSize()) + getAlignment(items);
131 boolean first = true;
136 if (first) {
137 first = false;
162 boolean first = true;
168 if (first) {
171 first = false;
H A DParameterAnnotationStruct.java131 boolean first = true;
133 if (first) {
134 first = false;
H A DMixedItemSection.java333 boolean first = true;
339 if (first) {
340 first = false;
/dalvik/dx/src/com/android/dx/dex/file/
H A DUniformListItem.java33 * output list size (which is four bytes) and before the first item.</p>
98 OffsettedItem first = items.get(0);
99 return (items.size() * first.writeSize()) + getAlignment(items);
131 boolean first = true;
136 if (first) {
137 first = false;
162 boolean first = true;
168 if (first) {
171 first = false;
H A DParameterAnnotationStruct.java131 boolean first = true;
133 if (first) {
134 first = false;
H A DMixedItemSection.java333 boolean first = true;
339 if (first) {
340 first = false;
/dalvik/vm/mterp/x86/
H A Dstub.S3 movl %ecx,OUT_ARG0(%esp) # self is first arg to function
/dalvik/vm/mterp/armv5te/
H A Dstub.S3 mov r0, rSELF @ self is first arg to function
H A DOP_INVOKE_INTERFACE.S18 GET_VREG(r9, r2) @ r9<- first arg ("this")
/dalvik/vm/mterp/mips/
H A Dstub.S4 move a0, rSELF # self is first arg to function
H A DOP_INVOKE_INTERFACE.S18 GET_VREG(rOBJ, a2) # rOBJ <- first arg ("this")
H A DOP_INVOKE_INTERFACE_JUMBO.S15 GET_VREG(rOBJ, a2) # rOBJ <- first arg ("this")
/dalvik/dx/src/com/android/dx/ssa/
H A DPhiTypeResolver.java132 // Start by finding the first non-void operand
133 RegisterSpec first = null;
141 first = rs;
146 if (first == null) {
151 LocalItem firstLocal = first.getLocalItem();
152 TypeBearer mergedType = first.getType();
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotations.java135 boolean first = true;
140 if (first) {
141 first = false;
H A DAnnotation.java149 boolean first = true;
151 if (first) {
152 first = false;
/dalvik/dexgen/src/com/android/dexgen/util/
H A DBitIntSet.java130 boolean first = true;
134 if (!first) {
137 first = false;
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java135 boolean first = true;
140 if (first) {
141 first = false;
H A DAnnotation.java141 boolean first = true;
143 if (first) {
144 first = false;
/dalvik/dx/src/com/android/dx/util/
H A DBitIntSet.java130 boolean first = true;
134 if (!first) {
137 first = false;
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm3rc.java128 int first = regs.get(0).getReg();
129 int next = first;
131 if (!unsignedFitsInShort(first)) {
143 return unsignedFitsInByte(next - first);
/dalvik/vm/
H A DReferenceTable.cpp263 int first = count - kLast; local
264 if (first < 0) {
265 first = 0;
267 ALOGW(" Last %d entries (of %d):", (count - first), count);
268 for (int idx = count - 1; idx >= first; --idx) {
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DMain.java55 boolean first = true;
62 if (first) {
63 first = false;
/dalvik/vm/jdwp/
H A DJdwpMain.cpp286 bool first; local
315 first = true;
327 if (first && !dvmJdwpAwaitingHandshake(state)) {
329 first = false;
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java65 /** whether this is the first method being dumped */
66 private boolean first; field in class:BlockDumper
100 this.first = true;
169 if (first) {
170 first = false;
303 sb.append("first " + Hex.u2(rmeth.getFirstLabel()) + "\n");
/dalvik/tests/031-class-attributes/src/
H A DClassAttrs.java192 boolean first = true;
197 if (first) {
199 first = false;

Completed in 1008 milliseconds

12