Searched refs:bagEntries (Results 1 – 3 of 3) sorted by relevance
60 private final Entry[] bagEntries; field in AttributeResolution9.BagAttributeFinder63 this.bagEntries = bag == null ? null : bag.entries; in BagAttributeFinder()71 if (bagEntries == null) { in Find()75 int i = Arrays.binarySearch(bagEntries, needle, (o1, o2) -> o1.key - o2.key); in Find()76 return i < 0 ? null : bagEntries[i]; in Find()
64 private final Entry[] bagEntries; field in AttributeResolution10.BagAttributeFinder67 this.bagEntries = bag == null ? null : bag.entries; in BagAttributeFinder()75 if (bagEntries == null) { in Find()79 int i = Arrays.binarySearch(bagEntries, needle, (o1, o2) -> o1.key - o2.key); in Find()80 return i < 0 ? null : bagEntries[i]; in Find()
1434 List<Entry> bagEntries = new ArrayList<>(Arrays.asList(bag.entries)); in ApplyStyle() local1435 Collections.reverse(bagEntries); in ApplyStyle()1436 for (ResolvedBag.Entry bag_iter : bagEntries) { in ApplyStyle()