Home
last modified time | relevance | path

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

/aosp12/system/tools/aidl/
H A Daidl_language.cpp344 return GetAnnotation(annotations_, AidlAnnotation::Type::NULLABLE); in IsNullable()
348 return GetAnnotation(annotations_, AidlAnnotation::Type::UTF8_IN_CPP); in IsUtf8InCpp()
352 return GetAnnotation(annotations_, AidlAnnotation::Type::SENSITIVE_DATA); in IsSensitiveData()
356 return GetAnnotation(annotations_, AidlAnnotation::Type::VINTF_STABILITY); in IsVintfStability()
360 return GetAnnotation(annotations_, AidlAnnotation::Type::JAVA_ONLY_IMMUTABLE); in IsJavaOnlyImmutable()
364 return GetAnnotation(annotations_, AidlAnnotation::Type::FIXED_SIZE); in IsFixedSize()
368 return GetAnnotation(annotations_, AidlAnnotation::Type::UNSUPPORTED_APP_USAGE); in UnsupportedAppUsage()
372 return GetAnnotation(annotations_, AidlAnnotation::Type::RUST_DERIVE); in RustDerive()
376 return GetAnnotation(annotations_, AidlAnnotation::Type::BACKING); in BackingType()
395 return GetAnnotation(annotations_, AidlAnnotation::Type::HIDE); in IsHide()
[all …]
H A Daidl_language.h316 annotations_.emplace_back(std::move(annotation));
340 const vector<AidlAnnotation>& GetAnnotations() const { return annotations_; }
349 vector<AidlAnnotation> annotations_;
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.cc2884 annotations_(other.annotations_) { in ItemMetadata()
2918 metadata.annotations_.push_back(annotation); in ExtractProfileData()
2924 static_cast<uint32_t>(metadata.annotations_.size())); in ExtractProfileData()
2938 metadata.annotations_.push_back(annotation); in ExtractProfileData()
2942 static_cast<uint32_t>(metadata.annotations_.size())); in ExtractProfileData()
2961 metadata.annotations_.insert( in MergeData()
2962 metadata.annotations_.end(), other_annotations.begin(), other_annotations.end()); in MergeData()
2966 static_cast<uint32_t>(metadata.annotations_.size())); in MergeData()
2977 metadata.annotations_.insert( in MergeData()
2978 metadata.annotations_.end(), other_annotations.begin(), other_annotations.end()); in MergeData()
[all …]
H A Dprofile_compilation_info.h995 return annotations_; in GetAnnotations()
1011 std::list<ProfileCompilationInfo::ProfileSampleAnnotation> annotations_; variable
/aosp12/art/dexlayout/
H A Ddex_ir.h921 annotations_(annotations), in ClassDef()
935 AnnotationsDirectoryItem* Annotations() const { return annotations_; } in Annotations()
947 AnnotationsDirectoryItem* annotations_; // This can be nullptr. variable
1194 : method_id_(method_id), annotations_(annotations) { } in ParameterAnnotation()
1197 AnnotationSetRefList* GetAnnotations() { return annotations_; } in GetAnnotations()
1201 AnnotationSetRefList* annotations_; variable