Home | History | Annotate | Download | only in util

Lines Matching defs:pList

144      * @param pList The sequence of {@link CompPattern}s that must be sequentially matched to
147 private V validateAndPut(V value, List<CompPattern> pList) {
148 if (pList.size() == 0) {
151 return recursivePut(value, pList);
162 List<CompPattern> pList = new ArrayList<CompPattern>(patterns.length);
165 pList.add(null);
168 pList.add(new CompPattern(pat));
170 return validateAndPut(value, pList);
183 List<CompPattern> pList = new ArrayList<CompPattern>(regexen.length);
186 pList.add(null);
190 pList.add(new CompPattern(pat));
192 return validateAndPut(value, pList);