Searched defs:BoolLiteral (Results 1 – 7 of 7) sorted by relevance
19 struct BoolLiteral : public Expression { struct20 BoolLiteral(const Context& context, int offset, bool value) in BoolLiteral() argument37 BoolLiteral& b = (BoolLiteral&) other; in compareConstant() argument42 return std::unique_ptr<Expression>(new BoolLiteral(fOffset, fValue, &fType)); in clone() argument50 BoolLiteral(int offset, bool value, const Type* type) in BoolLiteral() argument
21 using BoolLiteral = Literal<bool>; variable
198 StringRef getEquivalentForBoolLiteral(const CXXBoolLiteralExpr *BoolLiteral, in getEquivalentForBoolLiteral()384 if (const auto *BoolLiteral = in handleCastFromBool() local
143 class BoolLiteral : public Expression class
483 BoolLiteral::BoolLiteral (GeneratorState& state, ConstValueRangeAccess valueRange) in BoolLiteral() function in rsg::BoolLiteral502 BoolLiteral::BoolLiteral (bool customValue) in BoolLiteral() function in rsg::BoolLiteral
235 struct BoolLiteral struct241 struct BoolLiteral<Bool> struct243 typedef bool type;
1398 TEST_P(BuildSyntaxTreeTest, BoolLiteral) { in TEST_P() argument