Home
last modified time | relevance | path

Searched refs:TYPE_USE (Results 1 – 24 of 24) sorted by relevance

/external/turbine/javatests/com/google/turbine/lower/testdata/
Dtype_anno_hello.test3 import static java.lang.annotation.ElementType.TYPE_USE;
11 @Target({TYPE_USE, TYPE_PARAMETER}) @interface A {
14 @Target({TYPE_USE, TYPE_PARAMETER}) @interface B {}
15 @Target({TYPE_USE, TYPE_PARAMETER}) @interface C {}
16 @Target({TYPE_USE, TYPE_PARAMETER}) @interface D {}
17 @Target({TYPE_USE, TYPE_PARAMETER}) @interface E {}
18 @Target({TYPE_USE, TYPE_PARAMETER}) @interface F {}
Dtype_anno_cstyle_array_dims.test6 @Target(ElementType.TYPE_USE) @interface A {}
7 @Target(ElementType.TYPE_USE) @interface B {}
8 @Target(ElementType.TYPE_USE) @interface C {}
9 @Target(ElementType.TYPE_USE) @interface D {}
10 @Target(ElementType.TYPE_USE) @interface E {}
Dtype_anno_parameter_index.test3 import static java.lang.annotation.ElementType.TYPE_USE;
8 @Target({TYPE_USE, PARAMETER}) @interface A {}
9 @Target({TYPE_USE, PARAMETER}) @interface B {}
10 @Target({TYPE_USE, PARAMETER}) @interface C {}
Dtype_anno_c_array.test8 @Target(ElementType.TYPE_USE)
12 @Target(ElementType.TYPE_USE)
16 @Target(ElementType.TYPE_USE)
20 @Target(ElementType.TYPE_USE)
Dtype_anno_ambiguous.test2 import static java.lang.annotation.ElementType.TYPE_USE;
7 @Target(TYPE_USE) @interface A {}
8 @Target({TYPE_USE, FIELD}) @interface B {}
13 import static java.lang.annotation.ElementType.TYPE_USE;
18 @Target({TYPE_USE, METHOD}) @interface D {}
Dtype_anno_ambiguous_qualified.test3 import static java.lang.annotation.ElementType.TYPE_USE;
7 @Target({TYPE_USE, PARAMETER}) @interface A {}
8 @Target({TYPE_USE, PARAMETER}) @interface B {}
Dtype_anno_array_bound.test3 import static java.lang.annotation.ElementType.TYPE_USE;
7 @Target({TYPE_USE, PARAMETER}) @interface A {}
8 @Target({TYPE_USE, PARAMETER}) @interface B {}
Dtype_anno_retention.test8 @Target(ElementType.TYPE_USE)
12 @Target(ElementType.TYPE_USE)
16 @Target(ElementType.TYPE_USE)
Dtype_anno_raw.test5 import static java.lang.annotation.ElementType.TYPE_USE;
9 @Target({TYPE_USE, FIELD}) @interface A {}
10 @Target({TYPE_USE, FIELD}) @interface B {}
Dtype_anno_qual.test4 import static java.lang.annotation.ElementType.TYPE_USE;
10 @Target(TYPE_USE) @interface A {}
11 @Target(TYPE_USE) @interface B {}
Dtype_anno_ambiguous_param.test2 import static java.lang.annotation.ElementType.TYPE_USE;
6 @Target({TYPE_USE, PARAMETER}) @interface A {}
7 @Target(TYPE_USE) @interface B {}
Dc_array.test5 @Target({ElementType.TYPE_USE, ElementType.PARAMETER})
7 @Target(ElementType.TYPE_USE)
9 @Target(ElementType.TYPE_USE)
Dtype_anno_receiver.test2 import static java.lang.annotation.ElementType.TYPE_USE;
5 @Target(TYPE_USE) @interface A {}
Dtype_anno_array_dims.test6 @Target(ElementType.TYPE_USE) @interface A {}
7 @Target(ElementType.TYPE_USE) @interface B {}
Dreceiver_param.test7 @Target(ElementType.TYPE_USE) @interface A {}
8 @Target(ElementType.TYPE_USE) @interface B {}
Dtype_anno_return.test5 import static java.lang.annotation.ElementType.TYPE_USE;
10 @Target({TYPE_USE, TYPE_PARAMETER, METHOD, PARAMETER}) @interface A {}
Dtype_anno_order.test5 import static java.lang.annotation.ElementType.TYPE_USE;
10 @Target({TYPE_USE, TYPE_PARAMETER, METHOD, PARAMETER}) @interface A {}
Danno_repeated.test7 ElementType.TYPE_USE,
18 ElementType.TYPE_USE,
/external/turbine/java/com/google/turbine/model/
DTurbineElementType.java31 TYPE_USE enumConstant
/external/turbine/java/com/google/turbine/binder/bound/
DAnnotationMetadata.java38 values.remove(TurbineElementType.TYPE_USE); in getDefaultElements()
/external/javapoet/src/test/java/com/squareup/javapoet/
DAnnotatedTypeNameTest.java38 @Target(ElementType.TYPE_USE)
41 @Target(ElementType.TYPE_USE)
/external/turbine/javatests/com/google/turbine/binder/
DBinderTest.java290 assertThat(a.annotationMetadata().target()).containsExactly(TurbineElementType.TYPE_USE); in incompleteClasspath()
/external/turbine/java/com/google/turbine/binder/
DDisambiguateTypeAnnotations.java161 if (target.contains(TurbineElementType.TYPE_USE)) { in disambiguate()
/external/javapoet/
DCHANGELOG.md15 * New: Support `TYPE_USE` annotations on each enclosing `ClassName`.