Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseOpenMP.cpp61 struct OpenMPDirectiveKindExWrapper { struct
62 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() function
63 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() argument
64 bool operator==(OpenMPDirectiveKindExWrapper V) const { in operator ==()
67 bool operator!=(OpenMPDirectiveKindExWrapper V) const { in operator !=()
70 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); } 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 operator unsigned() const { return Value; } in operator unsigned()
74 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); } in operator OpenMPDirectiveKind()
[all …]