Lines Matching refs:i
94 func (i *MonolithicHiddenAPIInfo) append(other *HiddenAPIInfo) {
95 i.FlagsFilesByCategory.append(other.FlagFilesByCategory)
107 i.StubFlagsPaths = appendIfNotNil(i.StubFlagsPaths, other.StubFlagsPath)
108 i.AnnotationFlagsPaths = appendIfNotNil(i.AnnotationFlagsPaths, other.AnnotationFlagsPath)
109 i.MetadataPaths = appendIfNotNil(i.MetadataPaths, other.MetadataPath)
110 i.IndexPaths = appendIfNotNil(i.IndexPaths, other.IndexPath)
111 i.AllFlagsPaths = appendIfNotNil(i.AllFlagsPaths, other.AllFlagsPath)
116 func (i *MonolithicHiddenAPIInfo) dedup() {
117 i.FlagsFilesByCategory.dedup()
118 i.StubFlagsPaths = android.FirstUniquePaths(i.StubFlagsPaths)
119 i.AnnotationFlagsPaths = android.FirstUniquePaths(i.AnnotationFlagsPaths)
120 i.MetadataPaths = android.FirstUniquePaths(i.MetadataPaths)
121 i.IndexPaths = android.FirstUniquePaths(i.IndexPaths)
122 i.AllFlagsPaths = android.FirstUniquePaths(i.AllFlagsPaths)