OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeProto
(Results
1 - 5
of
5
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java
34
import org.jf.dexlib2.analysis.
TypeProto
;
55
public static Iterable<
TypeProto
> getSuperclassChain(@Nonnull final
TypeProto
typeProto
) {
56
return new Iterable<
TypeProto
>() {
58
@Override public Iterator<
TypeProto
> iterator() {
59
return new Iterator<
TypeProto
>() {
60
@Nullable private
TypeProto
type = getSuperclassAsTypeProto(
typeProto
);
66
@Override public
TypeProto
next()
[
all
...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
CustomInlineMethodResolver.java
120
TypeProto
typeProto
= classPath.getClass(className);
121
if (
typeProto
instanceof ClassProto) {
122
ClassDef classDef = ((ClassProto)
typeProto
).getClassDef();
MethodAnalyzer.java
[
all
...]
ClassProto.java
62
public class ClassProto implements
TypeProto
{
283
public
TypeProto
getCommonSuperclass(@Nonnull
TypeProto
other) {
321
List<
TypeProto
> thisChain = Lists.<
TypeProto
>newArrayList(this);
324
List<
TypeProto
> otherChain = Lists.newArrayList(other);
332
TypeProto
typeProto
= thisChain.get(i);
333
if (
typeProto
.getType().equals(otherChain.get(i).getType())) {
334
return
typeProto
;
[
all
...]
RegisterType.java
44
@Nullable public final
TypeProto
type;
46
private RegisterType(byte category, @Nullable
TypeProto
type) {
279
TypeProto
mergedType = null;
281
TypeProto
type = this.type;
311
public static RegisterType getRegisterType(byte category, @Nullable
TypeProto
typeProto
) {
349
return new RegisterType(category,
typeProto
);
Completed in 97 milliseconds