Home
last modified time | relevance | path

Searched refs:IsLiteral (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/
DBitCodes.h97 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable
108 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()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitstreamReader.cpp260 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local
262 Listener->Values.push_back(IsLiteral); in ReadAbbrevRecord()
263 if (IsLiteral) { in ReadAbbrevRecord()
322 bool IsLiteral = Read(1) ? true : false; in SkipAbbrevRecord() local
323 if (IsLiteral) { in SkipAbbrevRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/
DBitstreamReader.cpp355 bool IsLiteral = MaybeIsLiteral.get(); in ReadAbbrevRecord() local
356 if (IsLiteral) { in ReadAbbrevRecord()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dtoken.h382 bool IsLiteral() const { in IsLiteral() function
Dparser_impl.cc2858 if (t.IsLiteral()) { in expect_const_expr()
/third_party/flutter/skia/third_party/externals/wuffs/lang/render/
Drender.go248 return x.IsClose() || x.IsIdent(tm) || x.IsLiteral(tm)
/third_party/flutter/skia/third_party/externals/wuffs/lang/token/
Dlist.go66 func (x ID) IsLiteral(m *Map) bool { func
114 return x.IsClose() || x.IsKeyword() || x.IsIdent(m) || x.IsLiteral(m)
/third_party/flutter/skia/third_party/externals/wuffs/lang/parse/
Dparse.go706 if id := l.Ident(); id.IsLiteral(p.tm) {
1138 case x.IsLiteral(p.tm):
1189 if x := p.peek1(); x.IsLiteral(p.tm) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DYAMLParser.cpp479 bool scanBlockScalar(bool IsLiteral);
1585 bool Scanner::scanBlockScalar(bool IsLiteral) { in scanBlockScalar() argument