Searched refs:fullName (Results 1 – 2 of 2) sorted by relevance
70 private final GeneralNames fullName; field in DistributionPointName73 public DistributionPointName(GeneralNames fullName) { in DistributionPointName() argument74 this.fullName = fullName; in DistributionPointName()79 this.fullName = null; in DistributionPointName()86 if (fullName != null) { in dumpValue()87 fullName.dumpValue(sb, prefix + " "); in dumpValue()103 return (dpn.fullName == null) ? 1 : 0;120 if (dpn.fullName == null) {123 return dpn.fullName;
2358 private static String getBaseName(String fullName) { in getBaseName() argument2359 int k = fullName.lastIndexOf('.'); in getBaseName()2361 if (k == -1 || k == (fullName.length() - 1)) { in getBaseName()2362 return fullName; in getBaseName()2364 return fullName.substring(k + 1); in getBaseName()