Searched refs:stackIndex (Results 1 - 20 of 20) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/preverification/
H A DDoubleType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackDoubleType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DFloatType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackFloatType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DIntegerType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackIntegerType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DLongType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackLongType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DNullType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackNullType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DTopType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackTopType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DUninitializedThisType.java48 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
50 verificationTypeVisitor.visitStackUninitializedThisType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DObjectType.java69 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
71 verificationTypeVisitor.visitStackObjectType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DUninitializedType.java68 public void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor) argument
70 verificationTypeVisitor.visitStackUninitializedType(clazz, method, codeAttribute, instructionOffset, stackIndex, this);
H A DVerificationType.java68 public abstract void stackAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, int instructionOffset, int stackIndex, VerificationTypeVisitor verificationTypeVisitor); argument
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationShrinker.java557 int stackIndex = stack.size() - parameterSize + index;
561 System.out.println(" ["+invocationOffset+"] Ignoring parameter #"+index+" of "+programClass.getName()+"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass)+"] (stack entry #"+stackIndex+" ["+stack.getBottom(stackIndex)+"])");
565 markStackSimplificationBefore(invocationOffset, stackIndex);
742 for (int stackIndex = stackSize - popCount; stackIndex < stackSize; stackIndex++)
745 isStackSimplifiedBefore(offset, stackIndex);
747 isStackEntryPresentBefore(offset, stackIndex);
753 if (isStackEntryPresentBefore(offset, stackIndex))
1583 markStackEntryProducers(int consumerOffset, int stackIndex) argument
1601 markStackEntryProducers(InstructionOffsetValue producerOffsets, int stackIndex) argument
2111 markStackEntryAfter(int instructionOffset, int stackIndex) argument
2156 isStackEntryPresentBefore(int instructionOffset, int stackIndex) argument
2196 isAnyStackEntryNecessaryAfter(InstructionOffsetValue instructionOffsets, int stackIndex) argument
2220 isStackEntryNecessaryAfter(int instructionOffset, int stackIndex) argument
2228 markStackSimplificationBefore(int instructionOffset, int stackIndex) argument
2235 isStackSimplifiedBefore(int instructionOffset, int stackIndex) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DClassFileWriter.java317 protected int stackIndex; field in class:ClassFileWriter.MethodWriter
330 stackIndex = 0;
492 if (stackIndex == 0)
493 stackIndex = constPool.addUtf8Info(StackMapTable.tag);
495 output.writeShort(stackIndex);
/external/swiftshader/src/Shader/
H A DPixelProgram.hpp75 Int stackIndex; // FIXME: Inc/decrement callStack member in class:sw::PixelProgram
H A DVertexProgram.hpp49 Int stackIndex; // FIXME: Inc/decrement callStack member in class:sw::VertexProgram
H A DPixelProgram.cpp68 stackIndex = 0;
1314 callStack[stackIndex++] = UInt(callSiteIndex);
1354 callStack[stackIndex++] = UInt(callSiteIndex);
1383 callStack[stackIndex++] = UInt(callSiteIndex);
1723 UInt index = callStack[--stackIndex];
H A DVertexProgram.cpp81 stackIndex = 0;
1073 callStack[stackIndex++] = UInt(callSiteIndex);
1113 callStack[stackIndex++] = UInt(callSiteIndex);
1142 callStack[stackIndex++] = UInt(callSiteIndex);
1483 UInt index = callStack[--stackIndex];
/external/skia/src/utils/
H A DSkLua.cpp209 static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) { argument
210 SkASSERT(lua_istable(L, stackIndex));
211 lua_rawgeti(L, stackIndex, arrayIndex);
218 static void getarray_scalars(lua_State* L, int stackIndex, SkScalar dst[], int count) { argument
220 dst[i] = getarray_scalar(L, stackIndex, i + 1);
224 static void getarray_points(lua_State* L, int stackIndex, SkPoint pts[], int count) { argument
225 getarray_scalars(L, stackIndex, &pts[0].fX, count * 2);
/external/skqp/src/utils/
H A DSkLua.cpp209 static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) { argument
210 SkASSERT(lua_istable(L, stackIndex));
211 lua_rawgeti(L, stackIndex, arrayIndex);
218 static void getarray_scalars(lua_State* L, int stackIndex, SkScalar dst[], int count) { argument
220 dst[i] = getarray_scalar(L, stackIndex, i + 1);
224 static void getarray_points(lua_State* L, int stackIndex, SkPoint pts[], int count) { argument
225 getarray_scalars(L, stackIndex, &pts[0].fX, count * 2);
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 822 milliseconds