Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
DOpcode.java363 …Opcode(List<VersionConstraint> versionConstraints, String opcodeName, int referenceType, Format fo… in Opcode()
367 …Opcode(List<VersionConstraint> versionConstraints, String opcodeName, int referenceType, int refer… in Opcode()
372 for (VersionConstraint versionConstraint : versionConstraints) { in Opcode()
390 private static List<VersionConstraint> firstApi(int opcodeValue, int api) { in firstApi()
391 …return Lists.newArrayList(new VersionConstraint(Range.atLeast(api), Range.openClosed(0, 0), opcode… in firstApi()
394 private static List<VersionConstraint> lastApi(int opcodeValue, int api) { in lastApi()
396 …return Lists.newArrayList(new VersionConstraint(Range.atMost(api), Range.openClosed(0, 0), opcodeV… in lastApi()
399 private static List<VersionConstraint> firstArtVersion(int opcodeValue, int artVersion) { in firstArtVersion()
400 …return Lists.newArrayList(new VersionConstraint(Range.openClosed(0, 0), Range.atLeast(artVersion),… in firstArtVersion()
403 private static List<VersionConstraint> lastArtVersion(int opcodeValue, int artVersion) { in lastArtVersion()
[all …]