Home
last modified time | relevance | path

Searched refs:typeInStackMapFrame (Results 1 – 2 of 2) sorted by relevance

/external/desugar/java/com/google/devtools/build/android/desugar/
DBytecodeTypeInference.java862 private InferredType convertTypeInStackMapFrame(Object typeInStackMapFrame) { in convertTypeInStackMapFrame() argument
863 if (typeInStackMapFrame == Opcodes.TOP) { in convertTypeInStackMapFrame()
865 } else if (typeInStackMapFrame == Opcodes.INTEGER) { in convertTypeInStackMapFrame()
867 } else if (typeInStackMapFrame == Opcodes.FLOAT) { in convertTypeInStackMapFrame()
869 } else if (typeInStackMapFrame == Opcodes.DOUBLE) { in convertTypeInStackMapFrame()
871 } else if (typeInStackMapFrame == Opcodes.LONG) { in convertTypeInStackMapFrame()
873 } else if (typeInStackMapFrame == Opcodes.NULL) { in convertTypeInStackMapFrame()
875 } else if (typeInStackMapFrame == Opcodes.UNINITIALIZED_THIS) { in convertTypeInStackMapFrame()
877 } else if (typeInStackMapFrame instanceof String) { in convertTypeInStackMapFrame()
878 String referenceTypeName = (String) typeInStackMapFrame; in convertTypeInStackMapFrame()
[all …]
/external/truth/core/src/main/java/com/google/common/truth/
DActualValueInference.java1170 private InferredType convertTypeInStackMapFrame(Object typeInStackMapFrame) { in convertTypeInStackMapFrame() argument
1171 if (typeInStackMapFrame == Opcodes.TOP) { in convertTypeInStackMapFrame()
1173 } else if (typeInStackMapFrame == Opcodes.INTEGER) { in convertTypeInStackMapFrame()
1175 } else if (typeInStackMapFrame == Opcodes.FLOAT) { in convertTypeInStackMapFrame()
1177 } else if (typeInStackMapFrame == Opcodes.DOUBLE) { in convertTypeInStackMapFrame()
1179 } else if (typeInStackMapFrame == Opcodes.LONG) { in convertTypeInStackMapFrame()
1181 } else if (typeInStackMapFrame == Opcodes.NULL) { in convertTypeInStackMapFrame()
1183 } else if (typeInStackMapFrame == Opcodes.UNINITIALIZED_THIS) { in convertTypeInStackMapFrame()
1185 } else if (typeInStackMapFrame instanceof String) { in convertTypeInStackMapFrame()
1186 String referenceTypeName = (String) typeInStackMapFrame; in convertTypeInStackMapFrame()
[all …]