Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Parse/
DParseOpenMP.cpp60 struct OpenMPDirectiveKindExWrapper { struct
61 OpenMPDirectiveKindExWrapper(unsigned Value) : Value(Value) {} in OpenMPDirectiveKindExWrapper() function
62 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {} in OpenMPDirectiveKindExWrapper() argument
63 bool operator==(OpenMPDirectiveKind V) const { return Value == unsigned(V); } in operator ==()
64 bool operator!=(OpenMPDirectiveKind V) const { return Value != unsigned(V); } in operator !=()
65 bool operator<(OpenMPDirectiveKind V) const { return Value < unsigned(V); } in operator <()
66 operator unsigned() const { return Value; } in operator unsigned()
67 operator OpenMPDirectiveKind() const { return OpenMPDirectiveKind(Value); } in operator OpenMPDirectiveKind()
68 unsigned Value;