Lines Matching defs:OpenMPDirectiveKindExWrapper
62 struct OpenMPDirectiveKindExWrapper { struct
63 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() function
64 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() argument
65 bool operator==(OpenMPDirectiveKindExWrapper V) const { in operator ==()
68 bool operator!=(OpenMPDirectiveKindExWrapper V) const { in operator !=()
71 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); } in operator ==()
72 bool operator!=(OpenMPDirectiveKind V) const { return Value != unsigned(V); } in operator !=()
73 bool operator<(OpenMPDirectiveKind V) const { return Value < unsigned(V); } in operator <()
74 operator unsigned() const { return Value; } in operator unsigned()
75 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); } in operator OpenMPDirectiveKind()
76 unsigned Value;