Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/importers/json/
Djson_utils.cc62 size_t lhs_end = std::min<size_t>(s.find('.'), s.size()); in CoerceToTs() local
63 size_t rhs_start = std::min<size_t>(lhs_end + 1, s.size()); in CoerceToTs()
64 base::Optional<int64_t> lhs = base::StringToInt64(s.substr(0, lhs_end)); in CoerceToTs()
67 if ((!lhs.has_value() && lhs_end > 0) || in CoerceToTs()
/external/llvm-project/lldb/include/lldb/Utility/
DRangeMap.h94 const BaseType lhs_end = this->GetRangeEnd(); in DoesAdjoinOrIntersect() local
96 bool result = (lhs_base <= rhs_end) && (lhs_end >= rhs_base); in DoesAdjoinOrIntersect()
104 const BaseType lhs_end = this->GetRangeEnd(); in DoesIntersect() local
106 bool result = (lhs_base < rhs_end) && (lhs_end > rhs_base); in DoesIntersect()