Searched defs:PointerSumType (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DPointerSumType.h1 //===- llvm/ADT/PointerSumType.h --------------------------------*- C++ -*-===//
62 template <typename TagT, typename... MemberTs> class PointerSumType { class in namespace:llvm
68 PointerSumType() : Value(0) {} function in class:llvm::PointerSumType
72 static PointerSumType
74 PointerSumType Result;
98 bool operator==(const PointerSumType &R) const { return Value == R.Value; }
99 bool operator!=(const PointerSumType &R) const { return Value != R.Value; }
100 bool operator<(const PointerSumType &R) const { return Value < R.Value; }
101 bool operator>(const PointerSumType &R) const { return Value > R.Value; }
102 bool operator<=(const PointerSumType
[all...]

Completed in 1440 milliseconds