Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Bitcode/
DBitCodes.h88 bool IsLiteral : 1; // Indicate whether this is a literal value or not. variable
99 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()
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp284 bool IsLiteral = Read(1) ? true : false; in ReadAbbrevRecord() local
285 if (IsLiteral) { in ReadAbbrevRecord()
/external/clang/test/CXX/expr/expr.const/
Dp2-0x.cpp548 constexpr Expr(Literal l) : IsLiteral(true), l(l) {} in Expr()
549 bool IsLiteral; member
/external/llvm/lib/Support/
DYAMLParser.cpp454 bool scanBlockScalar(bool IsLiteral);
1390 bool Scanner::scanBlockScalar(bool IsLiteral) { in scanBlockScalar() argument