Searched defs:OpenMPDirectiveKindExWrapper (Results 1 – 1 of 1) sorted by relevance
66 struct OpenMPDirectiveKindExWrapper { struct67 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() argument68 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() function69 bool operator==(OpenMPDirectiveKindExWrapper V) const { in operator ==()72 bool operator!=(OpenMPDirectiveKindExWrapper V) const { in operator !=()75 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); } in operator ==()76 bool operator!=(OpenMPDirectiveKind V) const { return Value != unsigned(V); } in operator !=()77 bool operator<(OpenMPDirectiveKind V) const { return Value < unsigned(V); } in operator <()78 operator unsigned() const { return Value; } in operator unsigned()79 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); } in operator OpenMPDirectiveKind()[all …]