Lines Matching refs:EntryKind
34 : Expression(Expr), EntryKind(E_Integer) { in Value()
38 : Expression(Expr), EntryKind(E_ConstantFP) { in Value()
42 : Expression(Expr), EntryKind(E_ConstantInt) { in Value()
46 : Expression(Expr), EntryKind(E_Location), Loc(Loc) { in Value()
55 enum EntryType EntryKind; member
67 bool isLocation() const { return EntryKind == E_Location; } in isLocation()
68 bool isInt() const { return EntryKind == E_Integer; } in isInt()
69 bool isConstantFP() const { return EntryKind == E_ConstantFP; } in isConstantFP()
70 bool isConstantInt() const { return EntryKind == E_ConstantInt; } in isConstantInt()
156 if (A.EntryKind != B.EntryKind)
162 switch (A.EntryKind) {