Searched refs:resultList (Results 1 – 8 of 8) sorted by relevance
106 List<PhoneCallLog> resultList = new ArrayList<>(); in convertToEntity() local110 PhoneCallLog previousCallLog = resultList.isEmpty() ? null : resultList.get( in convertToEntity()111 resultList.size() - 1); in convertToEntity()114 resultList.add(phoneCallLog); in convertToEntity()117 return resultList; in convertToEntity()
43 List<Contact> resultList = new ArrayList<>(); in convertToEntity() local50 for (Contact contact : resultList) { in convertToEntity()58 resultList.add(favoriteEntry); in convertToEntity()61 return resultList; in convertToEntity()
70 List<HdHomeRunDiscoverDevice> resultList = new ArrayList<>(); in findDevices() local73 retry < HDHOMERUN_DISCOVER_RETRY_LIMIT && resultList.isEmpty(); in findDevices()101 if (resultList.contains(result)) { in findDevices()105 resultList.add(result); in findDevices()106 if (resultList.size() >= maxCount) { in findDevices()111 return resultList; in findDevices()
107 final List<AccessPoint> resultList = new ArrayList<>(); in onAccessPointsChanged() local110 resultList.add(clone(ap)); in onAccessPointsChanged()111 if (resultList.size() >= DEFAULT_EXPANDED_ROW_COUNT) { in onAccessPointsChanged()116 updateResults(resultList); in onAccessPointsChanged()
113 final List<AccessPoint> resultList = new ArrayList<>(); in onAccessPointsChanged() local116 resultList.add(clone(ap)); in onAccessPointsChanged()117 if (resultList.size() >= DEFAULT_EXPANDED_ROW_COUNT) { in onAccessPointsChanged()122 updateResults(resultList); in onAccessPointsChanged()
157 List<SearchResult> resultList = new ArrayList<>(resultSet); in query() local158 Collections.sort(resultList); in query()159 return resultList; in query()
1320 private static void appendDistinctNameIdList(ArrayList<String> resultList, String defaultName, in appendDistinctNameIdList() argument1335 if (!resultList.contains(newString)) { in appendDistinctNameIdList()1336 resultList.add(newString); in appendDistinctNameIdList()1340 for (String nameId : resultList) { in appendDistinctNameIdList()
1130 List<byte[]> expectedList, List<byte[]> resultList) { in assertByteArrayListEquals() argument1131 assertEquals(expectedList.size(), resultList.size()); in assertByteArrayListEquals()1133 assertArrayEquals(expectedList.get(i), resultList.get(i)); in assertByteArrayListEquals()