Home
last modified time | relevance | path

Searched refs:mAnnotations (Results 1 – 7 of 7) 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()
584 AnnotationSection::AnnotationSection() : mAnnotationsDeleter(mAnnotations) {} in AnnotationSection()
587 : Entity(b), mAnnotationsDeleter(mAnnotations) {} in AnnotationSection()
592 mAnnotations.push_back(decor); in DeserializeInternal()
594 mAnnotations.push_back(decor); in DeserializeInternal()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DAbstractResolverComparator.java49 protected String[] mAnnotations; field in AbstractResolverComparator
114 mAnnotations = new String[size]; in getContentAnnotations()
116 mAnnotations[i] = annotations.get(i); in getContentAnnotations()
212 mUsm.reportChooserSelection(packageName, userId, mContentType, mAnnotations, action); in updateChooserCounts()
DResolverRankerServiceResolverComparator.java174 if (mAnnotations != null) { in doCompute()
175 final int size = mAnnotations.length; in doCompute()
178 .getOrDefault(mAnnotations[i], 0); in doCompute()
310 int isCategoryUsed = (mAnnotations == null) ? 0 : 1; in logMetrics()
/frameworks/base/tools/aapt2/java/
DAnnotationProcessor.h71 std::stringstream mAnnotations; variable
/frameworks/base/cmds/statsd/src/metrics/
DMetricsManager.cpp114 mAnnotations.emplace_back(annotation.field_int64(), annotation.field_int32()); in MetricsManager()
141 mAllAnomalyTrackers.size(), mAnnotations, mConfigValid); in MetricsManager()
248 for (const auto& annotation : mAnnotations) { in onDumpReport()
DMetricsManager.h177 std::list<std::pair<const int64_t, const int32_t>> mAnnotations; variable