Searched refs:pList (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java377 ColorNode pList = thisNode;
378 int minColorCount = pList.colorCount;
381 while (pList.nextReducible != null) {
382 if (minColorCount > pList.nextReducible.colorCount) {
383 thisNode = pList;
384 minColorCount = pList.colorCount;
386 pList = pList.nextReducible;
395 pList = thisNode.nextReducible; // we need to process it
396 thisNode.nextReducible = pList
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DPrivateCredentialPermission.java332 ArrayList<CredOwner> pList = new ArrayList<>();
426 pList.add(new CredOwner(principalClass, principalName));
429 this.credOwners = new CredOwner[pList.size()];
430 pList.toArray(this.credOwners);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java1493 * pppe, is part of the current thread's principal array, pList.
1500 * @param pList an array of principals from the current thread's
1505 * @return true if the current thread's pList "contains" the
1510 private boolean checkEntryPs(Principal[] pList, argument
1513 for (int i = 0; i < pList.length; i++) {
1518 (pList[i].getClass().getName())) {
1523 (pList[i].getName())) {

Completed in 45 milliseconds