OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getCommonSuperclass
(Results
1 - 8
of
8
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
TypeProto.java
47
@Nonnull TypeProto
getCommonSuperclass
(@Nonnull TypeProto other);
ArrayProto.java
100
public TypeProto
getCommonSuperclass
(@Nonnull TypeProto other) {
114
TypeProto mergedClass = thisClass.
getCommonSuperclass
(otherClass);
141
// otherwise, defer to the other class'
getCommonSuperclass
142
return other.
getCommonSuperclass
(this);
PrimitiveProto.java
57
@Nonnull @Override public TypeProto
getCommonSuperclass
(@Nonnull TypeProto other) {
58
throw new ExceptionWithContext("Cannot call
getCommonSuperclass
on PrimitiveProto");
UnknownClassProto.java
54
@Nonnull @Override public TypeProto
getCommonSuperclass
(@Nonnull TypeProto other) {
ClassProto.java
237
* This is a helper method for
getCommonSuperclass
273
// continue in
getCommonSuperclass
283
public TypeProto
getCommonSuperclass
(@Nonnull TypeProto other) {
286
return other.
getCommonSuperclass
(this);
[
all
...]
RegisterType.java
284
mergedType = type.
getCommonSuperclass
(other.type);
MethodAnalyzer.java
[
all
...]
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java
101
Assert.assertSame(commonSuperclassProto, type1Proto.
getCommonSuperclass
(type2Proto));
102
Assert.assertSame(commonSuperclassProto, type2Proto.
getCommonSuperclass
(type1Proto));
134
classPath.getClass(onetwo).
getCommonSuperclass
(new ClassProto(classPath, onetwo)).getType());
Completed in 177 milliseconds