Searched refs:thisChain (Results 1 – 2 of 2) sorted by relevance
436 Vector<const TreeScope*, 16> thisChain; in commonAncestorTreeScope() local438 thisChain.append(tree); in commonAncestorTreeScope()447 while (!thisChain.isEmpty() && !otherChain.isEmpty() && thisChain.last() == otherChain.last()) { in commonAncestorTreeScope()448 lastAncestor = thisChain.last(); in commonAncestorTreeScope()449 thisChain.removeLast(); in commonAncestorTreeScope()
317 List<TypeProto> thisChain = Lists.<TypeProto>newArrayList(this); in getCommonSuperclass() local318 Iterables.addAll(thisChain, TypeProtoUtils.getSuperclassChain(this)); in getCommonSuperclass()324 thisChain = Lists.reverse(thisChain); in getCommonSuperclass()327 for (int i=Math.min(thisChain.size(), otherChain.size())-1; i>=0; i--) { in getCommonSuperclass()328 TypeProto typeProto = thisChain.get(i); in getCommonSuperclass()