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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 427 Vector<const TreeScope*, 16> thisChain;
429 thisChain.append(tree);
438 while (!thisChain.isEmpty() && !otherChain.isEmpty() && thisChain.last() == otherChain.last()) {
439 lastAncestor = thisChain.last();
440 thisChain.removeLast();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 317 List<TypeProto> thisChain = Lists.<TypeProto>newArrayList(this);
318 Iterables.addAll(thisChain, TypeProtoUtils.getSuperclassChain(this));
324 thisChain = Lists.reverse(thisChain);
327 for (int i=Math.min(thisChain.size(), otherChain.size())-1; i>=0; i--) {
328 TypeProto typeProto = thisChain.get(i);

Completed in 213 milliseconds