Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Target/
DStackID.cpp37 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope(); in operator ==() local
41 if (lhs_scope == nullptr && rhs_scope == nullptr) in operator ==()
44 return lhs_scope == rhs_scope; in operator ==()
51 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope(); in operator !=() local
54 if (lhs_scope == nullptr && rhs_scope == nullptr) in operator !=()
57 return lhs_scope != rhs_scope; in operator !=()
76 SymbolContextScope *lhs_scope = lhs.GetSymbolContextScope(); in operator <() local
79 if (lhs_scope != nullptr && rhs_scope != nullptr) { in operator <()
81 if (lhs_scope == rhs_scope) in operator <()
86 lhs_scope->CalculateSymbolContext(&lhs_sc); in operator <()