OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:declaringType
(Results
1 - 9
of
9
) 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
...]
DexGenerator.java
80
TypeDeclaration typeDeclaration = getTypeDeclaration(method.
declaringType
);
93
TypeDeclaration typeDeclaration = getTypeDeclaration(fieldId.
declaringType
);
Code.java
75
: Local.get(this, method.
declaringType
);
420
RegisterSpecList.EMPTY, catches, constructor.
declaringType
.constant));
/dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java
153
*
declaringType
}.
155
private Set<Integer> getFieldIds(DexBuffer dex, Set<Integer> memberNameIndexes, int
declaringType
) {
160
&&
declaringType
== fieldId.getDeclaringClassIndex()) {
170
*
declaringType
} and its subtypes.
172
private Set<Integer> getMethodIds(DexBuffer dex, Set<Integer> memberNameIndexes, int
declaringType
) {
173
Set<Integer> subtypes = findAssignableTypes(dex,
declaringType
);
/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);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java
376
IType
declaringType
= method.getDeclaringType();
377
String fqcn =
declaringType
.getFullyQualifiedName();
379
|| (
declaringType
.getSuperclassName() != null &&
380
declaringType
.getSuperclassName().endsWith("Activity")) //$NON-NLS-1$
464
IType
declaringType
= method.getDeclaringType();
465
String fqcn =
declaringType
.getFullyQualifiedName();
/prebuilt/common/ecj/
ecj.jar
/prebuilt/sdk/tools/lib/
dx.jar
Completed in 3032 milliseconds