Home
last modified time | relevance | path

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

/frameworks/base/tools/processors/view_inspector/src/java/android/processor/view/inspector/
DInspectableClassModel.java179 private @Nullable List<IntFlagEntry> mIntFlagEntries;
248 public List<IntFlagEntry> getIntFlagEntries() { in getIntFlagEntries()
256 public void setIntFlagEntries(@NonNull List<IntFlagEntry> intFlagEntries) { in setIntFlagEntries()
354 public static final class IntFlagEntry { class in InspectableClassModel
359 public IntFlagEntry(int mask, int target, @NonNull String name) { in IntFlagEntry() method in InspectableClassModel.IntFlagEntry
365 public IntFlagEntry(int target, String name) { in IntFlagEntry() method in InspectableClassModel.IntFlagEntry
DInspectionCompanionGenerator.java20 import android.processor.view.inspector.InspectableClassModel.IntFlagEntry;
355 final List<IntFlagEntry> flagEntries = property.getIntFlagEntries(); in generateIntFlagPropertyMapperInvocation()
356 flagEntries.sort(Comparator.comparing(IntFlagEntry::getName)); in generateIntFlagPropertyMapperInvocation()
363 for (IntFlagEntry flagEntry : flagEntries) { in generateIntFlagPropertyMapperInvocation()
DInspectablePropertyProcessor.java21 import android.processor.view.inspector.InspectableClassModel.IntFlagEntry;
670 private List<IntFlagEntry> processFlagMapping( in processFlagMapping()
675 List<IntFlagEntry> flagEntries = new ArrayList<>(flagAnnotations.size()); in processFlagMapping()
701 flagEntries.add(new IntFlagEntry(mask.get(), target, name)); in processFlagMapping()
703 flagEntries.add(new IntFlagEntry(target, name)); in processFlagMapping()
/frameworks/base/tools/processors/view_inspector/test/java/android/processor/view/inspector/
DInspectionCompanionGeneratorTest.java26 import android.processor.view.inspector.InspectableClassModel.IntFlagEntry;
132 new IntFlagEntry(0x3, 0x1, "TURBO"), in testIntFlag()
133 new IntFlagEntry(0x3, 0x2, "OVERDRIVE"), in testIntFlag()
134 new IntFlagEntry(0x4, "WARP") in testIntFlag()