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

  /external/chromium_org/chrome/common/extensions/docs/server2/
document_parser.py 80 lhs_index, rhs_index = document.find(lhs), document.find(rhs)
81 if lhs_index == -1: return rhs_index
82 if rhs_index == -1: return lhs_index
83 return min(lhs_index, rhs_index)
  /external/chromium_org/net/spdy/
hpack_header_table.cc 26 const size_t lhs_index = lhs->IsLookup() ? 0 : 1 + lhs->InsertionIndex(); local
28 DCHECK(lhs == rhs || lhs_index != rhs_index)
31 << " lhs index: " << lhs_index << " rhs index: " << rhs_index;
32 return lhs_index < rhs_index;

Completed in 164 milliseconds