Home
last modified time | relevance | path

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

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DWrappedSysUiStatsEvent.java34 private HashMap<Integer, HashMap<Byte, Object>> mAnnotations; field in WrappedSysUiStatsEvent.WrappedBuilder
42 mAnnotations = new HashMap<>(); in WrappedBuilder()
113 if (!mAnnotations.containsKey(key)) { in addAnnotation()
114 mAnnotations.put(key, new HashMap<>()); in addAnnotation()
116 mAnnotations.get(key).put(Byte.valueOf(annotation), value); in addAnnotation()
120 return ((Boolean) mAnnotations.get(Integer.valueOf(i)).get(Byte.valueOf(a))) in getBooleanAnnotation()
/frameworks/base/core/java/com/android/internal/app/
DAbstractResolverComparator.java53 protected String[] mAnnotations; field in AbstractResolverComparator
121 mAnnotations = new String[size]; in getContentAnnotations()
123 mAnnotations[i] = annotations.get(i); in getContentAnnotations()
128 mAnnotations = new String[0]; in getContentAnnotations()
240 mUsm.reportChooserSelection(packageName, userId, mContentType, mAnnotations, action); in updateChooserCounts()
DResolverRankerServiceResolverComparator.java177 if (mAnnotations != null) { in doCompute()
178 final int size = mAnnotations.length; in doCompute()
181 .getOrDefault(mAnnotations[i], 0); in doCompute()
322 int isCategoryUsed = (mAnnotations == null) ? 0 : 1; in logMetrics()
/frameworks/base/tools/processors/intdef_mappings/test/android/processor/
DIntDefProcessorTest.kt33 private val mAnnotations = arrayOf<JavaFileObject>( constant in android.processor.IntDefProcessorTest
108 val filesToCompile = concat(mAnnotations, sources, JavaFileObject::class.java) in annotationProcessorGeneratesMapping()
/frameworks/base/tools/aapt2/java/
DAnnotationProcessor.h72 std::stringstream mAnnotations; variable