Home
last modified time | relevance | path

Searched refs:mAnnotations (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/rsov/compiler/spirit/
Dmodule.h108 if (mAnnotations) { in accept()
109 v->visit(mAnnotations.get()); in accept()
237 std::unique_ptr<AnnotationSection> mAnnotations; variable
354 for (auto inst : mAnnotations) { in accept()
360 mAnnotations.insert<T>(std::end(mAnnotations), begin, end); in addAnnotations()
364 return mAnnotations.begin(); in begin()
368 return mAnnotations.end(); in end()
371 void clear() { mAnnotations.clear(); } in clear()
374 std::vector<Instruction *> mAnnotations; // OpDecorate, etc.
Dmodule.cpp138 mAnnotations.reset(Deserialize<AnnotationSection>(IS)); in DeserializeInternal()
163 mAnnotations.reset(new AnnotationSection()); in initialize()
429 std::vector<Instruction *> annotations(mAnnotations->begin(), in consolidateAnnotations()
430 mAnnotations->end()); in consolidateAnnotations()
437 mAnnotations->clear(); in consolidateAnnotations()
438 mAnnotations->addAnnotations(annotations.begin(), annotations.end()); in consolidateAnnotations()
583 AnnotationSection::AnnotationSection() : mAnnotationsDeleter(mAnnotations) {} in AnnotationSection()
586 : Entity(b), mAnnotationsDeleter(mAnnotations) {} in AnnotationSection()
591 mAnnotations.push_back(decor); in DeserializeInternal()
593 mAnnotations.push_back(decor); in DeserializeInternal()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DResolverComparator.java103 private String[] mAnnotations; field in ResolverComparator
198 mAnnotations = new String[size]; in getContentAnnotations()
200 mAnnotations[i] = annotations.get(i); in getContentAnnotations()
253 if (mAnnotations != null) { in compute()
254 final int size = mAnnotations.length; in compute()
257 .getOrDefault(mAnnotations[i], 0); in compute()
369 mUsm.reportChooserSelection(packageName, userId, mContentType, mAnnotations, action); in updateChooserCounts()
425 int isCategoryUsed = (mAnnotations == null) ? 0 : 1; in logMetrics()
/frameworks/base/tools/aapt2/java/
DAnnotationProcessor.h80 std::stringstream mAnnotations; variable