OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oatVersion
(Results
1 - 2
of
2
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassPath.java
66
public final int
oatVersion
;
87
* @param
oatVersion
The applicable oat version, or NOT_ART
90
int
oatVersion
) {
95
this.
oatVersion
=
oatVersion
;
127
return
oatVersion
!= NOT_ART;
178
int
oatVersion
= NOT_ART;
183
if (
oatVersion
== NOT_ART) {
186
oatVersion
= ((OatDexFile)classPathDexFile).getOatVersion();
196
return new ClassPath(providers, checkPackagePrivateAccess,
oatVersion
);
[
all
...]
ClassProto.java
554
public static FieldGap newFieldGap(int offset, int size, int
oatVersion
) {
555
if (
oatVersion
>= 67) {
648
gaps.add(FieldGap.newFieldGap(offset, 4, classPath.
oatVersion
));
651
gaps.add(FieldGap.newFieldGap(offset, 2, classPath.
oatVersion
));
654
gaps.add(FieldGap.newFieldGap(offset, 1, classPath.
oatVersion
));
[
all
...]
Completed in 78 milliseconds