Lines Matching defs:pdp
1539 * @param pdp Principal array from the current ProtectionDomain.
1547 Principal[] pdp,
1579 String[][] principalInfo = getPrincipalInfo(pppe,pdp);
1673 (PolicyParser.PrincipalEntry pe, Principal[] pdp) {
1701 for (int i = 0; i < pdp.length; i++) {
1702 if(pe.principalClass.equals(pdp[i].getClass().getName()))
1703 plist.add(pdp[i]);
1721 String[][] info = new String[pdp.length][2];
1723 for (int i = 0; i < pdp.length; i++) {
1724 info[i][0] = pdp[i].getClass().getName();
1725 info[i][1] = pdp[i].getName();