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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 320 List<TypeProto> otherChain = Lists.newArrayList(other);
321 Iterables.addAll(otherChain, TypeProtoUtils.getSuperclassChain(other));
325 otherChain = Lists.reverse(otherChain);
327 for (int i=Math.min(thisChain.size(), otherChain.size())-1; i>=0; i--) {
329 if (typeProto.getType().equals(otherChain.get(i).getType())) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 440 Vector<const TreeScope*, 16> otherChain;
442 otherChain.append(tree);
447 while (!thisChain.isEmpty() && !otherChain.isEmpty() && thisChain.last() == otherChain.last()) {
450 otherChain.removeLast();

Completed in 70 milliseconds