Home
last modified time | relevance | path

Searched refs:RightSubVal (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h112 RightSubVal(RightSubVal) {} in ConjunctionValue()
122 BoolValue &getRightSubValue() const { return RightSubVal; } in getRightSubValue()
126 BoolValue &RightSubVal; variable
134 RightSubVal(RightSubVal) {} in DisjunctionValue()
144 BoolValue &getRightSubValue() const { return RightSubVal; } in getRightSubValue()
148 BoolValue &RightSubVal; variable
175 RightSubVal(RightSubVal) {} in ImplicationValue()
185 BoolValue &getRightSubValue() const { return RightSubVal; } in getRightSubValue()
189 BoolValue &RightSubVal; variable
199 RightSubVal(RightSubVal) {} in BiconditionalValue()
[all …]
/llvm-project-15.0.7/clang/unittests/Analysis/FlowSensitive/
H A DTestingSupport.h233 BoolValue *conj(BoolValue *LeftSubVal, BoolValue *RightSubVal) { in conj() argument
235 std::make_unique<ConjunctionValue>(*LeftSubVal, *RightSubVal)); in conj()
240 BoolValue *disj(BoolValue *LeftSubVal, BoolValue *RightSubVal) { in disj() argument
242 std::make_unique<DisjunctionValue>(*LeftSubVal, *RightSubVal)); in disj()
253 BoolValue *impl(BoolValue *LeftSubVal, BoolValue *RightSubVal) { in impl() argument
255 std::make_unique<ImplicationValue>(*LeftSubVal, *RightSubVal)); in impl()
260 BoolValue *iff(BoolValue *LeftSubVal, BoolValue *RightSubVal) { in iff() argument
262 std::make_unique<BiconditionalValue>(*LeftSubVal, *RightSubVal)); in iff()