Home
last modified time | relevance | path

Searched refs:turbineElements (Results 1 – 5 of 5) sorted by relevance

/external/turbine/javatests/com/google/turbine/processing/
DTurbineElementsTest.java118 TurbineElements turbineElements; field in TurbineElementsTest
139 turbineElements = new TurbineElements(factory, turbineTypes); in setup()
174 assertThat(turbineElements.getConstantExpression(value)) in constants()
181 Name n = turbineElements.getName("hello"); in getName()
192 .addEqualityGroup(turbineElements.getName("hello"), turbineElements.getName("hello")) in getName()
193 .addEqualityGroup(turbineElements.getName("goodbye")) in getName()
201 turbineElements.getAllAnnotationMirrors( in getAllAnnotationMirrors()
209 assertThat(turbineElements.getTypeElement(name).getQualifiedName().toString()) in getTypeElement()
212 assertThat(turbineElements.getTypeElement("NoSuch")).isNull(); in getTypeElement()
213 assertThat(turbineElements.getTypeElement("java.lang.Object.NoSuch")).isNull(); in getTypeElement()
[all …]
DTurbineTypesFactoryTest.java59 TurbineElements turbineElements; field in TurbineTypesFactoryTest
76 turbineElements = new TurbineElements(factory, turbineTypes); in setup()
100 turbineTypes.erasure(turbineElements.getTypeElement("java.util.Map").asType())), in arrayType()
115 .getWildcardType(turbineElements.getTypeElement("java.lang.String").asType(), null) in wildcardType()
123 .getWildcardType(null, turbineElements.getTypeElement("java.lang.String").asType()) in wildcardType()
136 turbineElements.getTypeElement("java.util.Map"), in declaredType()
137 turbineElements.getTypeElement("java.lang.String").asType(), in declaredType()
138 turbineElements.getTypeElement("java.lang.Integer").asType()), in declaredType()
152 turbineTypes.getDeclaredType(turbineElements.getTypeElement("Test")), in declaredType()
153 turbineElements.getTypeElement("Test.I")), in declaredType()
DTurbineAnnotationMirrorTest.java215 TurbineElements turbineElements = new TurbineElements(factory, turbineTypes);
222 assertThat(values(turbineElements.getElementValuesWithDefaults(a)))
229 assertThat(values(turbineElements.getElementValuesWithDefaults(b)))
DTurbineElementsGetAllMembersTest.java280 TurbineElements turbineElements = new TurbineElements(factory, turbineTypes); in test() local
282 turbineElements.getAllMembers(factory.typeElement(new ClassSymbol("Test"))); in test()
DAbstractTurbineTypesTest.java377 ImmutableMap<String, Element> turbineElements = in typeParameters() local
382 assertThat(javacElements.keySet()).containsExactlyElementsIn(turbineElements.keySet()); in typeParameters()
400 turbineElements in typeParameters()