Home
last modified time | relevance | path

Searched defs:OpenMPDirectiveKindExWrapper (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang/lib/Parse/
H A DParseOpenMP.cpp62 struct OpenMPDirectiveKindExWrapper { struct
63 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() function
64 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() function
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()
[all …]