Home
last modified time | relevance | path

Searched refs:AnnotationValue (Results 1 – 19 of 19) sorted by relevance

/frameworks/proto_logging/stats/stats_log_api_gen/
DCollation.cpp154 const AnnotationValue annotationValue) { in addAnnotationToAtomDecl()
182 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
188 AnnotationValue(true)); in collate_field_restricted_annotations()
194 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
200 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
206 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
212 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
218 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
224 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
230 ANNOTATION_TYPE_BOOL, AnnotationValue(true)); in collate_field_restricted_annotations()
[all …]
DCollation.h136 union AnnotationValue { union
140 explicit AnnotationValue(const int value) : intValue(value) { in AnnotationValue() function
142 explicit AnnotationValue(const bool value) : boolValue(value) { in AnnotationValue() function
150 AnnotationValue value;
153 AnnotationValue value) in Annotation()
Dtest_api_gen_vendor.cpp261 EXPECT_TRUE(atom1.atomAnnotations.value()[0]->value.get<AnnotationValue::boolValue>()); in TEST()
274 EXPECT_TRUE(atom2.atomAnnotations.value()[0]->value.get<AnnotationValue::boolValue>()); in TEST()
285 EXPECT_TRUE(atom3.atomAnnotations.value()[0]->value.get<AnnotationValue::boolValue>()); in TEST()
313 .value.get<AnnotationValue::boolValue>()); in TEST()
346 .value.get<AnnotationValue::boolValue>()); in TEST()
354 .value.get<AnnotationValue::boolValue>()); in TEST()
388 .value.get<AnnotationValue::boolValue>()); in TEST()
396 .value.get<AnnotationValue::boolValue>()); in TEST()
404 .value.get<AnnotationValue::boolValue>()); in TEST()
437 .value.get<AnnotationValue::boolValue>()); in TEST()
[all …]
/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
DAnnotationUtils.java30 import javax.lang.model.element.AnnotationValue;
166 List<AnnotationValue> untypedArrayValuesByName( in untypedArrayValuesByName()
172 List<AnnotationValue> typedValues = new ArrayList<>(untypedValues.size()); in untypedArrayValuesByName()
175 if (untypedValue instanceof AnnotationValue) { in untypedArrayValuesByName()
176 typedValues.add((AnnotationValue) untypedValue); in untypedArrayValuesByName()
279 Optional<AnnotationValue> valueByName(
282 final Map<? extends ExecutableElement, ? extends AnnotationValue> valueMap =
DProcessingException.java26 import javax.lang.model.element.AnnotationValue;
35 private final @Nullable AnnotationValue mAnnotationValue;
56 @Nullable AnnotationValue annotationValue) { in ProcessingException()
DInspectablePropertyProcessor.java34 import javax.lang.model.element.AnnotationValue;
320 final Optional<AnnotationValue> enumMapping = in determinePropertyType()
322 final Optional<AnnotationValue> flagMapping = in determinePropertyType()
/frameworks/hardware/interfaces/stats/aidl/android/frameworks/stats/
DAnnotation.aidl19 import android.frameworks.stats.AnnotationValue;
27 AnnotationValue value;
DAnnotationValue.aidl22 union AnnotationValue {
/frameworks/native/services/stats/
DStatsAidl.cpp55 case AnnotationValue::boolValue: { in write_annotation()
57 annotation.value.get<AnnotationValue::boolValue>()); in write_annotation()
60 case AnnotationValue::intValue: { in write_annotation()
62 annotation.value.get<AnnotationValue::intValue>()); in write_annotation()
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/annotation/
DAnnotationValue.java19 public enum AnnotationValue { enum
DAnnotated2.java19 @TestAnnotation2(AnnotationValue.V1)
DAnnotated.java19 @TestAnnotation(AnnotationValue.V1)
DTestAnnotation.java24 AnnotationValue value(); in value()
DTestAnnotation2.java24 AnnotationValue value(); in value()
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/2/android/frameworks/stats/
DAnnotationValue.aidl36 union AnnotationValue {
DAnnotation.aidl38 android.frameworks.stats.AnnotationValue value;
/frameworks/hardware/interfaces/stats/aidl/aidl_api/android.frameworks.stats/current/android/frameworks/stats/
DAnnotationValue.aidl36 union AnnotationValue {
DAnnotation.aidl38 android.frameworks.stats.AnnotationValue value;
/frameworks/base/tools/processors/intdef_mappings/src/android/processor/
DIntDefProcessor.kt30 import javax.lang.model.element.AnnotationValue
94 val values = value.value as List<AnnotationValue>