Searched defs:BR (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DAdjustedReturnValueChecker.cpp65 const BlockTextRegion *BR = BD->getCodeRegion(); local
66 const BlockPointerType *BT=BR->getLocationType()->getAs<BlockPointerType>();
H A DCheckSizeofPointer.cpp26 BugReporter &BR; member in class:__anon3399::WalkAST
30 WalkAST(BugReporter &br, AnalysisDeclContext* ac) : BR(br), AC(ac) {}
65 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC);
66 BR.EmitBasicReport(AC->getDecl(),
83 BugReporter &BR) const {
84 WalkAST walker(BR, mgr.getAnalysisDeclContext(D));
H A DUndefCapturedBlockVarChecker.cpp38 if (const DeclRefExpr *BR = dyn_cast<DeclRefExpr>(S))
39 if (BR->getDecl() == VD)
40 return BR;
45 const DeclRefExpr *BR = FindBlockDeclRefExpr(child, VD); local
46 if (BR)
47 return BR;
H A DCheckObjCInstMethSignature.cpp43 BugReporter &BR, ASTContext &Ctx,
71 BR.getSourceManager());
73 BR.EmitBasicReport(MethDerived,
81 BugReporter& BR) {
89 ASTContext &Ctx = BR.getContext();
122 CompareReturnTypes(MethDerived, M, BR, Ctx, ID);
138 BugReporter &BR) const {
139 CheckObjCInstMethSignature(D, BR);
41 CompareReturnTypes(const ObjCMethodDecl *MethDerived, const ObjCMethodDecl *MethAncestor, BugReporter &BR, ASTContext &Ctx, const ObjCImplementationDecl *ID) argument
80 CheckObjCInstMethSignature(const ObjCImplementationDecl *ID, BugReporter& BR) argument
H A DObjCUnusedIVarsChecker.cpp103 BugReporter &BR) {
150 SourceManager &SM = BR.getSourceManager();
163 PathDiagnosticLocation::create(I->first, BR.getSourceManager());
164 BR.EmitBasicReport(D, "Unused instance variable", "Optimization",
178 BugReporter &BR) const {
179 checkObjCUnusedIvar(D, BR);
102 checkObjCUnusedIvar(const ObjCImplementationDecl *D, BugReporter &BR) argument
H A DCStringSyntaxChecker.cpp34 BugReporter &BR; member in class:__anon3389::WalkAST
86 BR(br), AC(ac), ASTC(AC->getASTContext()) {
145 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
160 BR.EmitBasicReport(FD, "Anti-pattern in the argument", "C String API",
181 BugReporter &BR) const {
182 WalkAST walker(BR, Mgr.getAnalysisDeclContext(D));
H A DCheckObjCDealloc.cpp100 const LangOptions& LOpts, BugReporter& BR) {
104 ASTContext &Ctx = BR.getContext();
170 PathDiagnosticLocation::createBegin(D, BR.getSourceManager());
182 BR.EmitBasicReport(D, name, categories::CoreFoundationObjectiveC,
200 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
264 PathDiagnosticLocation::createBegin((*I), BR.getSourceManager());
266 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
281 BugReporter &BR) const {
284 checkObjCDealloc(cast<ObjCImplementationDecl>(D), mgr.getLangOpts(), BR);
99 checkObjCDealloc(const ObjCImplementationDecl *D, const LangOptions& LOpts, BugReporter& BR) argument
H A DCheckerDocumentation.cpp142 BugReporter &BR,
150 BugReporter &BR) const {}
224 BugReporter &BR) const {}
141 checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, ExprEngine &Eng) const argument
H A DObjCContainersASTChecker.cpp29 BugReporter &BR; member in class:__anon3441::WalkAST
77 : BR(br), AC(ac), ASTC(AC->getASTContext()),
144 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
145 BR.EmitBasicReport(AC->getDecl(),
165 BugReporter &BR) const {
166 WalkAST walker(BR, Mgr.getAnalysisDeclContext(D));
H A DVirtualCallChecker.cpp30 BugReporter &BR; member in class:__anon3479::WalkAST
61 : BR(br),
183 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
189 BR.EmitBasicReport(AC->getDecl(),
199 BR.EmitBasicReport(AC->getDecl(),
216 BugReporter &BR) const {
217 WalkAST walker(BR, mgr.getAnalysisDeclContext(RD));
H A DLLVMConventionsChecker.cpp117 BugReporter &BR; member in class:__anon3420::StringRefCheckerVisitor
121 : BR(br), DeclWithIssue(declWithIssue) {}
135 static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR) { argument
136 StringRefCheckerVisitor walker(D, BR);
180 PathDiagnosticLocation::createBegin(VD, BR.getSourceManager());
181 BR.EmitBasicReport(DeclWithIssue, desc, "LLVM Conventions", desc,
217 BugReporter &BR; member in class:__anon3421::ASTFieldVisitor
220 : Root(root), BR(br) {}
227 static void CheckASTMemory(const CXXRecordDecl *R, BugReporter &BR) { argument
233 ASTFieldVisitor walker(R, BR);
[all...]
H A DMallocOverflowSecurityChecker.cpp44 BugReporter &BR) const;
52 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const;
201 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const {
207 CheckOverflowOps c(PossibleMallocOverflows, BR.getContext());
217 BR.EmitBasicReport(D, "malloc() size overflow", categories::UnixAPI,
220 BR.getSourceManager()), &R, 1);
226 BugReporter &BR) const {
262 OutputPossibleOverflows(PossibleMallocOverflows, D, BR, mgr);
199 OutputPossibleOverflows( llvm::SmallVectorImpl<MallocOverflowCheck> &PossibleMallocOverflows, const Decl *D, BugReporter &BR, AnalysisManager &mgr) const argument
H A DNSErrorChecker.cpp47 AnalysisManager &mgr, BugReporter &BR) const;
53 BugReporter &BR) const {
76 PathDiagnosticLocation::create(D, BR.getSourceManager());
77 BR.EmitBasicReport(D, "Bad return type when passing NSError**",
95 AnalysisManager &mgr, BugReporter &BR) const;
101 BugReporter &BR) const {
124 PathDiagnosticLocation::create(D, BR.getSourceManager());
125 BR.EmitBasicReport(D, "Bad return type when passing CFErrorRef*",
257 BugReporter &BR = *event.BR; local
[all...]
H A DDeadStoresChecker.cpp90 BugReporter& BR; member in class:__anon3403::DeadStoreObs
103 : cfg(cfg), Ctx(ctx), BR(br), AC(ac), Parents(parents),
148 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
166 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
321 PathDiagnosticLocation::create(V, BR.getSourceManager());
370 BugReporter &BR) const {
377 DeadStoreObs A(cfg, BR.getContext(), BR, AC, pmap, FS.Escaped);
H A DIdempotentOperationChecker.cpp344 BugReporter &BR,
430 BR.EmitReport(report);
343 checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, ExprEngine &Eng) const argument
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
H A Djsref.js9 var BR = ""; variable
131 print( string + BR + CR );
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
H A Djsref.js9 var BR = ""; variable
129 print( string + BR + CR );
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java30 static final String BR = "BR"; field in class:RegionCode
/external/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp53 BranchInst *BR = dyn_cast<BranchInst>(entryBlock->getTerminator()); local
54 if (!BR || BR->isUnconditional())
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
H A Djsref.js14 var BR = ""; variable
139 print( string + BR + CR );
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h91 GRBugReporter BR; member in class:clang::ento::ExprEngine
126 BugReporter& getBugReporter() { return BR; }
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp80 BugReport &BR) {
87 BugReport &BR) {
92 llvm::tie(Beg, End) = BR.getRanges();
97 BR.getDescription(),
116 BugReport &BR) {
247 BugReport &BR) {
370 BugReport &BR) {
392 BR.addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, Receiver, &BR));
401 void FindLastStoreBRVisitor::registerStatementVarDecls(BugReport &BR, argument
78 getEndPath(BugReporterContext &BRC, const ExplodedNode *EndPathNode, BugReport &BR) argument
85 getDefaultEndPath(BugReporterContext &BRC, const ExplodedNode *EndPathNode, BugReport &BR) argument
113 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
244 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
367 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
438 VisitNode(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
449 VisitNodeImpl(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
[all...]
/external/jpeg/
H A Djcphuff.c625 unsigned int BR; local
663 BR = 0; /* BR = count of buffered bits added now */
680 emit_buffered_bits(entropy, BR_buffer, BR);
682 BR = 0;
692 BR_buffer[BR++] = (char) (temp & 1);
707 emit_buffered_bits(entropy, BR_buffer, BR);
709 BR = 0;
713 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */
715 entropy->BE += BR; /* conca
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djcphuff.c625 unsigned int BR; local
663 BR = 0; /* BR = count of buffered bits added now */
680 emit_buffered_bits(entropy, BR_buffer, BR);
682 BR = 0;
692 BR_buffer[BR++] = (char) (temp & 1);
707 emit_buffered_bits(entropy, BR_buffer, BR);
709 BR = 0;
713 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */
715 entropy->BE += BR; /* conca
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
H A Djsref.js22 var BR = ""; variable
182 print( string + BR + CR );

Completed in 277 milliseconds

12