Searched refs:IsLiteral (Results 1 – 4 of 4) sorted by relevance
88 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable99 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {} in BitCodeAbbrevOp()101 : Val(Data), IsLiteral(false), Enc(E) {} in Val()103 bool isLiteral() const { return IsLiteral; } in isLiteral()104 bool isEncoding() const { return !IsLiteral; } in isEncoding()
284 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local285 if (IsLiteral) { in ReadAbbrevRecord()
548 constexpr Expr(Literal l) : IsLiteral(true), l(l) {} in Expr()549 bool IsLiteral; member
454 bool scanBlockScalar(bool IsLiteral);1390 bool Scanner::scanBlockScalar(bool IsLiteral) { in scanBlockScalar() argument