HomeSort by relevance Sort by last modified time
    Searched defs:declaringType (Results 1 - 5 of 5) sorted by null

  /dalvik/dx/src/com/android/dx/gen/
FieldId.java 27 final Type<D> declaringType;
35 FieldId(Type<D> declaringType, Type<V> type, String name) {
36 if (declaringType == null || type == null || name == null) {
39 this.declaringType = declaringType;
43 this.constant = new CstFieldRef(declaringType.constant, nat);
47 return declaringType;
60 && ((FieldId<?, ?>) o).declaringType.equals(declaringType)
65 return declaringType.hashCode() + 37 * name.hashCode()
    [all...]
MethodId.java 29 final Type<D> declaringType;
38 MethodId(Type<D> declaringType, Type<R> returnType, String name, TypeList parameters) {
39 if (declaringType == null || returnType == null || name == null || parameters == null) {
42 this.declaringType = declaringType;
47 this.constant = new CstMethodRef(declaringType.constant, nat);
51 return declaringType;
73 result.append(declaringType.name);
89 && ((MethodId<?, ?>) o).declaringType.equals(declaringType)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 258 IType declaringType = type;
260 IType tmpType = declaringType.getDeclaringType();
263 flags = declaringType.getFlags();
266 declaringType.getFullyQualifiedName());
279 declaringType = tmpType;
280 } while (declaringType != null);
  /prebuilt/sdk/tools/lib/
dx.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 93 milliseconds