HomeSort by relevance Sort by last modified time
    Searched refs:IntSymExpr (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 62 void IntSymExpr::dumpToStream(raw_ostream &os) const {
155 itr.push_back(cast<IntSymExpr>(SE)->getRHS());
288 const IntSymExpr *SymbolManager::getIntSymExpr(const llvm::APSInt& lhs,
293 IntSymExpr::Profile(ID, lhs, op, rhs, t);
298 data = (IntSymExpr*) BPAlloc.Allocate<IntSymExpr>();
299 new (data) IntSymExpr(lhs, op, rhs, t);
303 return cast<IntSymExpr>(data);
ProgramState.cpp 520 return scan(cast<IntSymExpr>(sym)->getRHS());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 388 /// IntSymExpr - Represents symbolic expression like 3 - 'x'.
389 class IntSymExpr : public SymExpr {
396 IntSymExpr(const llvm::APSInt& lhs, BinaryOperator::Opcode op,
534 const IntSymExpr *getIntSymExpr(const llvm::APSInt& lhs,

Completed in 182 milliseconds