Home
last modified time | relevance | path

Searched refs:TIL_UnaryOpcode (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h85 enum TIL_UnaryOpcode : unsigned char { enum
134 const TIL_UnaryOpcode UOP_Min = UOP_Minus;
135 const TIL_UnaryOpcode UOP_Max = UOP_LogicNot;
142 StringRef getUnaryOpcodeString(TIL_UnaryOpcode Op);
1168 UnaryOp(TIL_UnaryOpcode Op, SExpr *E) : SExpr(COP_UnaryOp), Expr0(E) { in UnaryOp()
1176 TIL_UnaryOpcode unaryOpcode() const { in unaryOpcode()
1177 return static_cast<TIL_UnaryOpcode>(Flags); in unaryOpcode()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp19 StringRef til::getUnaryOpcodeString(TIL_UnaryOpcode Op) { in getUnaryOpcodeString()