Home
last modified time | relevance | path

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

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java1345 return pickIf(types, IF_EQZ_INT, IF_EQZ_OBJECT, in opIfEq()
1357 return pickIf(types, IF_NEZ_INT, IF_NEZ_OBJECT, in opIfNe()
1369 return pickIf(types, IF_LTZ_INT, null, IF_LT_INT, null); in opIfLt()
1380 return pickIf(types, IF_GEZ_INT, null, IF_GE_INT, null); in opIfGe()
1391 return pickIf(types, IF_GTZ_INT, null, IF_GT_INT, null); in opIfGt()
1402 return pickIf(types, IF_LEZ_INT, null, IF_LE_INT, null); in opIfLe()
1417 private static Rop pickIf(TypeList types, Rop intZ, Rop objZ, Rop intInt, in pickIf() method in Rops