Searched defs:TryResult (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Analysis/
H A DCFG.cpp218 /// TryResult - a class representing a variant over the values
222 class TryResult { class in namespace:__anon890
225 TryResult(bool b) : X(b ? 1 : 0) {} function in class:__anon890::TryResult
226 TryResult() : X(-1) {} function in class:__anon890::TryResult
237 TryResult bothKnownTrue(TryResult R1, TryResult R2) {
239 return TryResult();
240 return TryResult(R1.isTrue() && R2.isTrue());
338 typedef llvm::DenseMap<Expr *, TryResult> CachedBoolEvalsT
[all...]

Completed in 41 milliseconds