Searched refs:BR (Results 1 - 25 of 89) sorted by relevance

1234

/external/bison/doc/
H A Dcommon.x2 .BR lex (1),
3 .BR flex (1),
4 .BR yacc (1).
H A Dbison.x15 .BR .y .
28 .BR parse.tab.cxx ,
35 .BR parse.tab.c .
50 .BR \- .
53 .BR \-\-file-prefix ,
55 .BR = .
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp26 BugReporter &BR; member in class:__anon15498::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.cpp39 if (const DeclRefExpr *BR = dyn_cast<DeclRefExpr>(S))
40 if (BR->getDecl() == VD)
41 return BR;
46 const DeclRefExpr *BR = FindBlockDeclRefExpr(child, VD); local
47 if (BR)
48 return BR;
H A DCheckObjCInstMethSignature.cpp42 BugReporter &BR, ASTContext &Ctx,
70 BR.getSourceManager());
72 BR.EmitBasicReport(MethDerived,
80 BugReporter& BR) {
88 ASTContext &Ctx = BR.getContext();
121 CompareReturnTypes(MethDerived, M, BR, Ctx, ID);
137 BugReporter &BR) const {
138 CheckObjCInstMethSignature(D, BR);
40 CompareReturnTypes(const ObjCMethodDecl *MethDerived, const ObjCMethodDecl *MethAncestor, BugReporter &BR, ASTContext &Ctx, const ObjCImplementationDecl *ID) argument
79 CheckObjCInstMethSignature(const ObjCImplementationDecl *ID, BugReporter& BR) argument
H A DLLVMConventionsChecker.cpp118 BugReporter &BR; member in class:__anon15524::StringRefCheckerVisitor
122 : BR(br), DeclWithIssue(declWithIssue) {}
136 static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR) { argument
137 StringRefCheckerVisitor walker(D, BR);
181 PathDiagnosticLocation::createBegin(VD, BR.getSourceManager());
182 BR.EmitBasicReport(DeclWithIssue, desc, "LLVM Conventions", desc,
218 BugReporter &BR; member in class:__anon15525::ASTFieldVisitor
221 : Root(root), BR(br) {}
228 static void CheckASTMemory(const CXXRecordDecl *R, BugReporter &BR) { argument
234 ASTFieldVisitor walker(R, BR);
[all...]
H A DNSErrorChecker.cpp48 AnalysisManager &mgr, BugReporter &BR) const;
54 BugReporter &BR) const {
77 PathDiagnosticLocation::create(D, BR.getSourceManager());
78 BR.EmitBasicReport(D, "Bad return type when passing NSError**",
96 AnalysisManager &mgr, BugReporter &BR) const;
102 BugReporter &BR) const {
125 PathDiagnosticLocation::create(D, BR.getSourceManager());
126 BR.EmitBasicReport(D, "Bad return type when passing CFErrorRef*",
244 BugReporter &BR = *event.BR; local
[all...]
H A DDebugCheckers.cpp35 BugReporter &BR) const {
57 BugReporter &BR) const {
77 BugReporter &BR) const {
97 BugReporter &BR) const {
118 BugReporter &BR) const {
138 BugReporter &BR) const {
160 BugReporter &BR) const {
H A DVirtualCallChecker.cpp31 BugReporter &BR; member in class:__anon15579::WalkAST
62 : BR(br),
184 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
190 BR.EmitBasicReport(AC->getDecl(),
200 BR.EmitBasicReport(AC->getDecl(),
217 BugReporter &BR) const {
218 WalkAST walker(BR, mgr.getAnalysisDeclContext(RD));
H A DCheckSecuritySyntaxOnly.cpp52 BugReporter &BR; member in class:__anon15495::WalkAST
63 : BR(br), AC(ac), II_setid(),
64 CheckRand(isArc4RandomAvailable(BR.getContext())),
283 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
284 BR.EmitBasicReport(AC->getDecl(),
313 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
319 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
320 BR.EmitBasicReport(AC->getDecl(),
354 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
360 PathDiagnosticLocation::createBegin(CE, BR
[all...]
H A DCStringSyntaxChecker.cpp34 BugReporter &BR; member in class:__anon15488::WalkAST
85 BR(br), AC(ac) {
146 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
161 BR.EmitBasicReport(FD, "Anti-pattern in the argument", "C String API",
182 BugReporter &BR) const {
183 WalkAST walker(BR, Mgr.getAnalysisDeclContext(D));
H A DObjCContainersASTChecker.cpp29 BugReporter &BR; member in class:__anon15542::WalkAST
75 : BR(br), AC(ac), ASTC(AC->getASTContext()),
145 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
146 BR.EmitBasicReport(AC->getDecl(),
166 BugReporter &BR) const {
167 WalkAST walker(BR, Mgr.getAnalysisDeclContext(D));
H A DCheckObjCDealloc.cpp101 const LangOptions& LOpts, BugReporter& BR) {
105 ASTContext &Ctx = BR.getContext();
171 PathDiagnosticLocation::createBegin(D, BR.getSourceManager());
183 BR.EmitBasicReport(D, name, categories::CoreFoundationObjectiveC,
201 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
265 PathDiagnosticLocation::createBegin(*I, BR.getSourceManager());
267 BR.EmitBasicReport(MD, name, categories::CoreFoundationObjectiveC,
282 BugReporter &BR) const {
285 checkObjCDealloc(cast<ObjCImplementationDecl>(D), mgr.getLangOpts(), BR);
100 checkObjCDealloc(const ObjCImplementationDecl *D, const LangOptions& LOpts, BugReporter& BR) argument
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( SmallVectorImpl<MallocOverflowCheck> &PossibleMallocOverflows, const Decl *D, BugReporter &BR, AnalysisManager &mgr) const argument
H A DStackAddrEscapeChecker.cpp69 else if (const BlockDataRegion *BR = dyn_cast<BlockDataRegion>(R)) {
70 const BlockDecl *BD = BR->getCodeRegion()->getDecl();
H A DObjCMissingSuperCallChecker.cpp73 BugReporter &BR) const;
170 BugReporter &BR) const {
171 ASTContext &Ctx = BR.getContext();
204 BR.getSourceManager(),
215 BR.EmitBasicReport(MD, Name, categories::CoreFoundationObjectiveC,
H A DDirectIvarAssignment.cpp71 BugReporter &BR; member in class:__anon15514::DirectIvarAssignment::MethodCrawler
78 : IvarToPropMap(InMap), MD(InMD), InterfD(InID), BR(InBR), DCtx(InDCtx) {}
97 BugReporter &BR) const;
124 BugReporter &BR) const {
161 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, DCtx);
213 BR.EmitBasicReport(MD,
218 BR.getSourceManager(),
H A DCheckerDocumentation.cpp173 BugReporter &BR,
181 BugReporter &BR) const {}
302 BugReporter &BR) const {}
172 checkEndAnalysis(ExplodedGraph &G, BugReporter &BR, ExprEngine &Eng) const argument
H A DMallocSizeofChecker.cpp176 BugReporter &BR) const {
178 CastedAllocFinder Finder(&BR.getContext());
201 if (typesCompatible(BR.getContext(), PointeeType, SizeofType))
206 if (compatibleWithArrayType(BR.getContext(), PointeeType, SizeofType))
237 BR.getSourceManager(), ADC);
239 BR.EmitBasicReport(D, "Allocator sizeof operand mismatch",
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DShortNumberUtilTest.java58 assertTrue(shortUtil.connectsToEmergencyNumber("911", RegionCode.BR));
59 assertTrue(shortUtil.connectsToEmergencyNumber("190", RegionCode.BR));
60 assertFalse(shortUtil.connectsToEmergencyNumber("999", RegionCode.BR));
65 assertFalse(shortUtil.connectsToEmergencyNumber("9111", RegionCode.BR));
66 assertFalse(shortUtil.connectsToEmergencyNumber("1900", RegionCode.BR));
67 assertFalse(shortUtil.connectsToEmergencyNumber("9996", RegionCode.BR));
114 assertTrue(shortUtil.isEmergencyNumber("911", RegionCode.BR));
115 assertTrue(shortUtil.isEmergencyNumber("190", RegionCode.BR));
116 assertFalse(shortUtil.isEmergencyNumber("999", RegionCode.BR));
120 assertFalse(shortUtil.isEmergencyNumber("9111", RegionCode.BR));
[all...]
H A DRegionCode.java31 static final String BR = "BR"; field in class:RegionCode
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitor.h61 BugReport &BR) = 0;
71 BugReport &BR);
78 BugReport &BR);
111 static void registerStatementVarDecls(BugReport &BR, const Stmt *S,
126 BugReport &BR);
156 BugReport &BR);
178 BugReport &BR);
200 BugReport &BR);
205 BugReport &BR);
267 BugReport &BR) {
264 VisitNode(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
[all...]
H A DBugType.h49 virtual void FlushReports(BugReporter& BR);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/lc3b/tests/
H A Dlc3b-mp22NC.asm66 BR DONTBR
67 BR DONTBR
68 BR DONTBR
69 BR DONTBR
71 BR DONTBR
72 BR DONTBR
73 BR DONTBR
74 BR DONTBR
76 BR DONTBR
77 BR DONTB
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp106 BugReport &BR) {
113 BugReport &BR) {
118 llvm::tie(Beg, End) = BR.getRanges();
123 BR.getDescription(),
173 BugReport &BR,
224 BR.markInteresting(CalleeContext);
225 BR.addVisitor(new ReturnVisitor(CalleeContext, EnableNullFPSuppression));
237 BugReport &BR) {
283 BR.markInteresting(V);
284 ReturnVisitor::addVisitorIfNecessary(N, RetE, BR,
104 getEndPath(BugReporterContext &BRC, const ExplodedNode *EndPathNode, BugReport &BR) argument
111 getDefaultEndPath(BugReporterContext &BRC, const ExplodedNode *EndPathNode, BugReport &BR) argument
172 addVisitorIfNecessary(const ExplodedNode *Node, const Stmt *S, BugReport &BR, bool InEnableNullFPSuppression) argument
234 visitNodeInitial(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
333 visitNodeMaybeUnsuppress(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
386 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
402 getEndPath(BugReporterContext &BRC, const ExplodedNode *N, BugReport &BR) argument
450 VisitNode(const ExplodedNode *Succ, const ExplodedNode *Pred, BugReporterContext &BRC, BugReport &BR) argument
731 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
811 VisitNode(const ExplodedNode *Succ, const ExplodedNode *Pred, BugReporterContext &BRC, BugReport &BR) argument
1073 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
1109 registerStatementVarDecls(BugReport &BR, const Stmt *S, bool EnableNullFPSuppression) argument
1155 VisitNode(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
1168 VisitNodeImpl(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
1519 getEndPath(BugReporterContext &BRC, const ExplodedNode *N, BugReport &BR) argument
1570 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
[all...]

Completed in 326 milliseconds

1234