Home | History | Annotate | Download | only in Analyses

Lines Matching refs:kind

30   Opcode kind() const { return Kind; }
37 LExpr(Opcode Kind) : Kind(Kind) {}
40 Opcode Kind;
52 static bool classof(const LExpr *E) { return E->kind() == LExpr::Terminal; }
73 static bool classof(const LExpr *E) { return E->kind() == LExpr::And; }
80 static bool classof(const LExpr *E) { return E->kind() == LExpr::Or; }
92 static bool classof(const LExpr *E) { return E->kind() == LExpr::Not; }