Lines Matching refs:EntryKind
35 : Expression(Expr), EntryKind(E_Integer) { in Value()
39 : Expression(Expr), EntryKind(E_ConstantFP) { in Value()
43 : Expression(Expr), EntryKind(E_ConstantInt) { in Value()
47 : Expression(Expr), EntryKind(E_Location), Loc(Loc) { in Value()
56 enum EntryType EntryKind; member
68 bool isLocation() const { return EntryKind == E_Location; } in isLocation()
69 bool isInt() const { return EntryKind == E_Integer; } in isInt()
70 bool isConstantFP() const { return EntryKind == E_ConstantFP; } in isConstantFP()
71 bool isConstantInt() const { return EntryKind == E_ConstantInt; } in isConstantInt()
159 if (A.EntryKind != B.EntryKind)
165 switch (A.EntryKind) {