HomeSort by relevance Sort by last modified time
    Searched refs:newClsApis (Results 1 - 2 of 2) sorted by null

  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 88 List<ClassInfo> newClsApis = null;
99 newClsApis = new ArrayList<>();
101 if (!pInfo.isConsistent(otherApi.getPackages().get(pInfo.name()), newClsApis, ignoredClasses)) {
104 if (diffMode && !newClsApis.isEmpty()) {
106 for (ClassInfo cInfo : newClsApis) {
  /external/doclava/src/com/google/doclava/
PackageInfo.java 497 ArrayList<MethodInfo> newClsApis = null;
508 newClsApis = new ArrayList<>();
511 if (!cInfo.isConsistent(pInfo.mClasses.get(cInfo.name()), newClsCtors, newClsApis)) {
515 if (diffMode && !(newClsCtors.isEmpty() && newClsApis.isEmpty())) {
517 ClassInfo deltaClsInfo = createDeltaClass(cInfo, newClsCtors, newClsApis);

Completed in 666 milliseconds