Searched refs:sourceList (Results 1 – 9 of 9) sorted by relevance
19 List<Object> sourceList = Lists.newArrayList(new Object()); in testMessageHashCodeVariesWithCause() local21 Message firstMessage = new Message(sourceList, innerMessage, new Exception(innerMessage)); in testMessageHashCodeVariesWithCause()22 Message secondMessage = new Message(sourceList, innerMessage, new Exception(innerMessage)); in testMessageHashCodeVariesWithCause()
156 List<XMLSource> sourceList = new ArrayList<>(); in makeResolvingSource() local168 sourceList.add(source); in makeResolvingSource()171 return new ResolvingSource(sourceList); in makeResolvingSource()
1124 List<XMLSource> sourceList = new ArrayList<>(sources.values()); in findNonAliasedPaths() local1126 sourceList.add(constructedItems); in findNonAliasedPaths()1130 for (XMLSource curSource : sourceList) { in findNonAliasedPaths()1264 public ResolvingSource(List<XMLSource> sourceList) { in ResolvingSource() argument1266 … if (sourceList == null || !sourceList.get(sourceList.size() - 1).getLocaleID().equals("root")) { in ResolvingSource()1269 currentSource = sourceList.get(0); // Convenience variable in ResolvingSource()1271 for (XMLSource source : sourceList) { in ResolvingSource()1277 for (int i = 0, limit = sourceList.size() - 1; i < limit; i++) { in ResolvingSource()1278 sourceList.get(i).addListener(this); in ResolvingSource()
217 List<XMLSource> sourceList = new ArrayList<>(); in CLDRFile() local218 sourceList.add(dataSource); in CLDRFile()219 sourceList.addAll(Arrays.asList(resolvingParents)); in CLDRFile()220 this.dataSource = new ResolvingSource(sourceList); in CLDRFile()
4390 private int[] sourceList; field in UnicodeSetIterator24404 sourceList = source.list; in UnicodeSetIterator2()4405 current = sourceList[item++]; in UnicodeSetIterator2()4406 limit = sourceList[item++]; in UnicodeSetIterator2()4409 sourceList = null; in UnicodeSetIterator2()4418 return sourceList != null || stringIterator.hasNext(); in hasNext()4426 if (sourceList == null) { in next()4434 sourceList = null; in next()4436 current = sourceList[item++]; in next()4437 limit = sourceList[item++]; in next()
4285 private int[] sourceList; field in UnicodeSetIterator24299 sourceList = source.list; in UnicodeSetIterator2()4300 current = sourceList[item++]; in UnicodeSetIterator2()4301 limit = sourceList[item++]; in UnicodeSetIterator2()4304 sourceList = null; in UnicodeSetIterator2()4313 return sourceList != null || stringIterator.hasNext(); in hasNext()4321 if (sourceList == null) { in next()4329 sourceList = null; in next()4331 current = sourceList[item++]; in next()4332 limit = sourceList[item++]; in next()
285 private static int showItems(PrintWriter out, boolean th, String... sourceList) { in showItems() argument287 for (String source : sourceList) { in showItems()
380 List<Integer> sourceList = ...;381 int[] ints = mapper.convertValue(sourceList, int[].class);
432 NodeList sourceList = doc.getElementsByTagName(SOURCE); in createRB() local439 String xmlSrcLang = checkLangAttribute(sourceList, sourceLang); in createRB()