OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ArrayProto
(Results
1 - 4
of
4
) sorted by null
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ArrayProto.java
45
public class
ArrayProto
implements TypeProto {
50
public
ArrayProto
(@Nonnull ClassPath classPath, @Nonnull String type) {
101
if (other instanceof
ArrayProto
) {
103
TypeUtils.isPrimitiveType(((
ArrayProto
)other).getElementType())) {
104
if (dimensions == ((
ArrayProto
)other).dimensions &&
105
getElementType().equals(((
ArrayProto
)other).getElementType())) {
111
if (dimensions == ((
ArrayProto
)other).dimensions) {
113
TypeProto otherClass = classPath.getClass(((
ArrayProto
)other).elementType);
124
int dimensions = Math.min(this.dimensions, ((
ArrayProto
)other).dimensions);
UnknownClassProto.java
58
if (other instanceof
ArrayProto
) {
MethodAnalyzer.java
[
all
...]
ClassPath.java
138
return new
ArrayProto
(ClassPath.this, type);
Completed in 91 milliseconds