Home
last modified time | relevance | path

Searched refs:thisChain (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DTreeScope.cpp436 Vector<const TreeScope*, 16> thisChain; in commonAncestorTreeScope() local
438 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()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DClassProto.java317 List<TypeProto> thisChain = Lists.<TypeProto>newArrayList(this); in getCommonSuperclass() local
318 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()