| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | SValBuilder.h | 27 class CXXBoolLiteralExpr; variable 242 nonloc::ConcreteInt makeBoolVal(const CXXBoolLiteralExpr *boolean);
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | ClangForward.h | 41 class CXXBoolLiteralExpr; variable
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | SValBuilder.cpp | 90 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/ |
| D | StmtNodes.td | 106 def CXXBoolLiteralExpr : DStmt<Expr>;
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | ThreadSafety.cpp | 453 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/ |
| D | RewriteObjCFoundationAPI.cpp | 764 if (const CXXBoolLiteralExpr *BE = dyn_cast<CXXBoolLiteralExpr>(Arg)) in rewriteToNumberLiteral()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | ExprCXX.h | 427 class CXXBoolLiteralExpr : public Expr { 431 CXXBoolLiteralExpr(bool val, QualType Ty, SourceLocation l) : in CXXBoolLiteralExpr() function 436 explicit CXXBoolLiteralExpr(EmptyShell Empty) in CXXBoolLiteralExpr() function
|
| D | RecursiveASTVisitor.h | 2224 DEF_TRAVERSE_STMT(CXXBoolLiteralExpr, { })
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ASTDumper.cpp | 291 void VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node); 1793 void ASTDumper::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *Node) { in VisitCXXBoolLiteralExpr()
|
| D | StmtProfile.cpp | 802 void StmtProfiler::VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *S) { in VisitCXXBoolLiteralExpr()
|
| D | StmtPrinter.cpp | 1390 void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) { in VisitCXXBoolLiteralExpr()
|
| D | ItaniumMangle.cpp | 3051 Out << (cast<CXXBoolLiteralExpr>(E)->getValue() ? '1' : '0'); in mangleExpression()
|
| D | ExprConstant.cpp | 5706 bool VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| D | ASTMatchers.h | 1057 CXXBoolLiteralExpr> boolLiteral;
|
| D | ASTMatchersInternal.h | 1417 llvm::is_base_of<CXXBoolLiteralExpr,
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/ |
| D | ASTReaderStmt.cpp | 1283 void ASTStmtReader::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr() 2299 S = new (Context) CXXBoolLiteralExpr(Empty); in ReadStmtFromStream()
|
| D | ASTWriterStmt.cpp | 1249 void ASTStmtWriter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaExprObjC.cpp | 370 isa<CXXBoolLiteralExpr>(OrigElement)) { in CheckObjCCollectionLiteralElement() 373 : (isa<CXXBoolLiteralExpr>(OrigElement) || in CheckObjCCollectionLiteralElement()
|
| D | SemaInit.cpp | 4220 isa<CXXBoolLiteralExpr>(Init) && in isLibstdcxxPointerReturnFalseHack() 4221 !cast<CXXBoolLiteralExpr>(Init)->getValue() && in isLibstdcxxPointerReturnFalseHack()
|
| D | SemaStmt.cpp | 1274 void VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { } in VisitCXXBoolLiteralExpr()
|
| D | SemaExprCXX.cpp | 542 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true, in ActOnCXXBoolLiteral()
|
| D | SemaTemplate.cpp | 5203 E = new (Context) CXXBoolLiteralExpr(Arg.getAsIntegral().getBoolValue(), in BuildExpressionFromIntegralTemplateArgument()
|
| D | TreeTransform.h | 7481 TreeTransform<Derived>::TransformCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { in TransformCXXBoolLiteralExpr()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| D | RetainCountChecker.cpp | 1763 isa<CXXBoolLiteralExpr>(E); in isNumericLiteralExpression()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CGExprScalar.cpp | 195 Value *VisitCXXBoolLiteralExpr(const CXXBoolLiteralExpr *E) { in VisitCXXBoolLiteralExpr()
|