Home
last modified time | relevance | path

Searched refs:CXXBoolLiteralExpr (Results 1 – 25 of 25) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValBuilder.h27 class CXXBoolLiteralExpr; variable
242 nonloc::ConcreteInt makeBoolVal(const CXXBoolLiteralExpr *boolean);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
DClangForward.h41 class CXXBoolLiteralExpr; variable
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DSValBuilder.cpp90 nonloc::ConcreteInt SValBuilder::makeBoolVal(const CXXBoolLiteralExpr *boolean){ in makeBoolVal()
260 return makeBoolVal(cast<CXXBoolLiteralExpr>(E)); in getConstantVal()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/
DStmtNodes.td106 def CXXBoolLiteralExpr : DStmt<Expr>;
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/
DThreadSafety.cpp453 isa<CXXBoolLiteralExpr>(Exp) || in buildSExpr()
1585 if (CXXBoolLiteralExpr *BLE = dyn_cast_or_null<CXXBoolLiteralExpr>(BrE)) { in getMutexIDs()
1609 } else if (CXXBoolLiteralExpr *BLE = dyn_cast<CXXBoolLiteralExpr>(E)) { in getStaticBooleanValue()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp764 if (const CXXBoolLiteralExpr *BE = dyn_cast<CXXBoolLiteralExpr>(Arg)) in rewriteToNumberLiteral()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DExprCXX.h427 class CXXBoolLiteralExpr : public Expr {
431 CXXBoolLiteralExpr(bool val, QualType Ty, SourceLocation l) : in CXXBoolLiteralExpr() function
436 explicit CXXBoolLiteralExpr(EmptyShell Empty) in CXXBoolLiteralExpr() function
DRecursiveASTVisitor.h2224 DEF_TRAVERSE_STMT(CXXBoolLiteralExpr, { })
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
DASTDumper.cpp291 void VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node);
1793 void ASTDumper::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node) { in VisitCXXBoolLiteralExpr()
DStmtProfile.cpp802 void StmtProfiler::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *S) { in VisitCXXBoolLiteralExpr()
DStmtPrinter.cpp1390 void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) { in VisitCXXBoolLiteralExpr()
DItaniumMangle.cpp3051 Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0'); in mangleExpression()
DExprConstant.cpp5706 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/
DASTMatchers.h1057 CXXBoolLiteralExpr> boolLiteral;
DASTMatchersInternal.h1417 llvm::is_base_of<CXXBoolLiteralExpr,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderStmt.cpp1283 void ASTStmtReader::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
2299 S = new (Context) CXXBoolLiteralExpr(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1249 void ASTStmtWriter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaExprObjC.cpp370 isa<CXXBoolLiteralExpr>(OrigElement)) { in CheckObjCCollectionLiteralElement()
373 : (isa<CXXBoolLiteralExpr>(OrigElement) || in CheckObjCCollectionLiteralElement()
DSemaInit.cpp4220 isa<CXXBoolLiteralExpr>(Init) && in isLibstdcxxPointerReturnFalseHack()
4221 !cast<CXXBoolLiteralExpr>(Init)->getValue() && in isLibstdcxxPointerReturnFalseHack()
DSemaStmt.cpp1274 void VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { } in VisitCXXBoolLiteralExpr()
DSemaExprCXX.cpp542 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true, in ActOnCXXBoolLiteral()
DSemaTemplate.cpp5203 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(), in BuildExpressionFromIntegralTemplateArgument()
DTreeTransform.h7481 TreeTransform<Derived>::TransformCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in TransformCXXBoolLiteralExpr()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DRetainCountChecker.cpp1763 isa<CXXBoolLiteralExpr>(E); in isNumericLiteralExpression()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGExprScalar.cpp195 Value *VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()