Searched refs:apiInfoSet (Results 1 – 2 of 2) sorted by relevance
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | APIStatusConsistencyChecker.java | 37 Set<APIInfo> apiInfoSet = APIData.read(new File(args[0]), true).getAPIInfoSet(); in main() local 38 …APIStatusConsistencyChecker checker = new APIStatusConsistencyChecker(apiInfoSet, skipClasses, new… in main() 44 private Set<APIInfo> apiInfoSet; field in APIStatusConsistencyChecker 48 …public APIStatusConsistencyChecker(Set<APIInfo> apiInfoSet, List<String> skipClasses, PrintWriter … in APIStatusConsistencyChecker() argument 49 this.apiInfoSet = apiInfoSet; in APIStatusConsistencyChecker() 70 for (APIInfo api : apiInfoSet) { in checkConsistency() 82 for (APIInfo api : apiInfoSet) { in checkConsistency()
|
D | DeprecatedAPIChecker.java | 36 Set<APIInfo> apiInfoSet = APIData.read(new File(args[0]), true).getAPIInfoSet(); in main() local 38 …DeprecatedAPIChecker checker = new DeprecatedAPIChecker(apiInfoSet, new PrintWriter(System.err, tr… in main() 44 private Set<APIInfo> apiInfoSet; field in DeprecatedAPIChecker 47 public DeprecatedAPIChecker(Set<APIInfo> apiInfoSet, PrintWriter pw) { in DeprecatedAPIChecker() argument 48 this.apiInfoSet = apiInfoSet; in DeprecatedAPIChecker() 60 for (APIInfo api : apiInfoSet) { in checkDeprecated() 102 api = findClassInfo(apiInfoSet, clsName); in checkClass() 119 api = findFieldInfo(apiInfoSet, clsName, fName); in checkClass() 148 api = findConstructorInfo(apiInfoSet, clsName, paramNames); in checkClass() 170 api = findMethodInfo(apiInfoSet, clsName, mtdName, paramNames); in checkClass() [all …]
|