OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shadowType
(Results
1 - 4
of
4
) sorted by null
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
ImplementsValidator.java
73
public Void visitType(TypeElement
shadowType
, Element parent) {
74
captureJavadoc(
shadowType
);
77
if (
shadowType
.getEnclosingElement().getKind() == ElementKind.CLASS
78
&& !
shadowType
.getModifiers().contains(Modifier.STATIC)) {
101
addShadowNotInSdk(
shadowType
, av, cv);
114
&& !suppressWarnings(
shadowType
, "robolectric.internal.IgnoreMissingClass")) {
130
addShadowNotInSdk(
shadowType
, av, cv);
134
final List<? extends TypeParameterElement> elemTP =
shadowType
.getTypeParameters();
147
helpers.appendParameterList(message,
shadowType
.getTypeParameters());
150
messager.printMessage(Kind.ERROR, message,
shadowType
);
[
all
...]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
RobolectricModel.java
92
public void addShadowType(TypeElement
shadowType
, TypeElement actualType,
105
new ShadowInfo(
shadowType
, actualType, shadowPickerType, shadowBaseType);
108
registerType(shadowInfo.
shadowType
);
113
shadowTypes.put(
shadowType
.getQualifiedName().toString(), shadowInfo);
330
private final TypeElement
shadowType
;
345
ShadowInfo(TypeElement
shadowType
, TypeElement actualType, TypeElement shadowPickerType,
347
this.
shadowType
=
shadowType
;
387
shadowTypeReferent = referentResolver.getReferentFor(
shadowType
);
388
shadowBinaryName = helpers.getBinaryName(
shadowType
);
[
all
...]
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/generator/
JavadocJsonGenerator.java
45
String
shadowType
= entry.getKey();
47
shadowedTypes.put(
shadowType
, shadowedType);
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
InvokeDynamicSupport.java
132
Class<?>
shadowType
= mh.type().parameterType(0);
133
mh = filterArguments(mh, 0, GET_SHADOW.asType(methodType(
shadowType
, site.thisType())));
Completed in 101 milliseconds