Lines Matching defs:lhs
2610 /// @param lhs the first elf symbol to consider.
2614 /// @return true iff @p lhs equals @p rhs.
2616 operator==(const elf_symbol_sptr& lhs, const elf_symbol_sptr& rhs)
2618 if (!!lhs != !!rhs)
2621 if (!lhs)
2624 return *lhs == *rhs;
2629 /// @param lhs the first elf symbol to consider.
2633 /// @return true iff @p lhs is different from @p rhs.
2635 operator!=(const elf_symbol_sptr& lhs, const elf_symbol_sptr& rhs)
2636 {return !operator==(lhs, rhs);}
16037 operator|(qualified_type_def::CV lhs, qualified_type_def::CV rhs)
16040 (static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs));
16061 operator&(qualified_type_def::CV lhs, qualified_type_def::CV rhs)
16064 (static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs));
19485 /// @param lhs the first function type to consider
19490 /// information about the kind of changes carried by @p lhs and @p
19499 ///@return true if lhs == rhs, false otherwise.