Searched defs:OpenMPDirectiveKindExWrapper (Results 1 – 1 of 1) sorted by relevance
64 struct OpenMPDirectiveKindExWrapper { struct65 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() argument66 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() argument67 bool operator==(OpenMPDirectiveKindExWrapper V) const { in operator ==()70 bool operator!=(OpenMPDirectiveKindExWrapper V) const { in operator !=()73 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); } in operator ==()74 bool operator!=(OpenMPDirectiveKind V) const { return Value != unsigned(V); } in operator !=()75 bool operator<(OpenMPDirectiveKind V) const { return Value < unsigned(V); } in operator <()76 operator unsigned() const { return Value; } in operator unsigned()77 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); } in operator OpenMPDirectiveKind()[all …]