Searched refs:IsLiteral (Results 1 – 9 of 9) sorted by relevance
97 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable108 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {} in BitCodeAbbrevOp()110 : Val(Data), IsLiteral(false), Enc(E) {} in Val()112 bool isLiteral() const { return IsLiteral; } in isLiteral()113 bool isEncoding() const { return !IsLiteral; } in isEncoding()
260 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local262 Listener->Values.push_back(IsLiteral); in ReadAbbrevRecord()263 if (IsLiteral) { in ReadAbbrevRecord()322 bool IsLiteral = Read(1) ? true : false; in SkipAbbrevRecord() local323 if (IsLiteral) { in SkipAbbrevRecord()
355 bool IsLiteral = MaybeIsLiteral.get(); in ReadAbbrevRecord() local356 if (IsLiteral) { in ReadAbbrevRecord()
382 bool IsLiteral() const { in IsLiteral() function
2858 if (t.IsLiteral()) { in expect_const_expr()
248 return x.IsClose() || x.IsIdent(tm) || x.IsLiteral(tm)
66 func (x ID) IsLiteral(m *Map) bool { func114 return x.IsClose() || x.IsKeyword() || x.IsIdent(m) || x.IsLiteral(m)
706 if id := l.Ident(); id.IsLiteral(p.tm) {1138 case x.IsLiteral(p.tm):1189 if x := p.peek1(); x.IsLiteral(p.tm) {
479 bool scanBlockScalar(bool IsLiteral);1585 bool Scanner::scanBlockScalar(bool IsLiteral) { in scanBlockScalar() argument