Home
last modified time | relevance | path

Searched defs:opcodeValue (Results 1 – 3 of 3) sorted by relevance

/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/
DOpcodes.java114 Short opcodeValue = versionToValueMap.get(version); in Opcodes() local
131 public Opcode getOpcodeByValue(int opcodeValue) { in getOpcodeByValue()
DOpcode.java360 Opcode(int opcodeValue, String opcodeName, int referenceType, Format format) { in Opcode()
364 Opcode(int opcodeValue, String opcodeName, int referenceType, Format format, int flags) { in Opcode()
395 private static List<VersionConstraint> firstApi(int opcodeValue, int api) { in firstApi()
399 private static List<VersionConstraint> lastApi(int opcodeValue, int api) { in lastApi()
403 private static List<VersionConstraint> betweenApi(int opcodeValue, int minApi, int maxApi) { in betweenApi()
408 private static List<VersionConstraint> firstArtVersion(int opcodeValue, int artVersion) { in firstArtVersion()
412 private static List<VersionConstraint> lastArtVersion(int opcodeValue, int artVersion) { in lastArtVersion()
416 private static List<VersionConstraint> allVersions(int opcodeValue) { in allVersions()
420 private static List<VersionConstraint> allApis(int opcodeValue) { in allApis()
424 private static List<VersionConstraint> allArtVersions(int opcodeValue) { in allArtVersions()
[all …]
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/instruction/
DDexBackedInstruction.java61 int opcodeValue = reader.peekUbyte(); in readFrom() local