Home
last modified time | relevance | path

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

12345678910>>...23

/external/libcxx/test/std/re/re.regex/re.regex.const/
Dconstants.pass.cpp39 typedef std::basic_regex<CharT> BR; in test() typedef
40 static_assert((BR::icase == std::regex_constants::icase), ""); in test()
41 static_assert((BR::nosubs == std::regex_constants::nosubs), ""); in test()
42 static_assert((BR::optimize == std::regex_constants::optimize), ""); in test()
43 static_assert((BR::collate == std::regex_constants::collate), ""); in test()
44 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), ""); in test()
45 static_assert((BR::basic == std::regex_constants::basic), ""); in test()
46 static_assert((BR::extended == std::regex_constants::extended), ""); in test()
47 static_assert((BR::awk == std::regex_constants::awk), ""); in test()
48 static_assert((BR::grep == std::regex_constants::grep), ""); in test()
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DCheckSecuritySyntaxOnly.cpp63 BugReporter &BR; member in __anonf96975cc0111::WalkAST
74 : BR(br), AC(ac), II_setid(), in WalkAST()
75 CheckRand(isArc4RandomAvailable(BR.getContext())), in WalkAST()
293 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC); in checkLoopConditionForFloat()
294 BR.EmitBasicReport(AC->getDecl(), filter.checkName_FloatLoopCounter, in checkLoopConditionForFloat()
323 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) in checkCall_gets()
328 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); in checkCall_gets()
329 BR.EmitBasicReport(AC->getDecl(), filter.checkName_gets, in checkCall_gets()
363 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy) in checkCall_getpw()
368 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); in checkCall_getpw()
[all …]
DLLVMConventionsChecker.cpp119 BugReporter &BR; member in __anon84d935f30111::StringRefCheckerVisitor
125 : DeclWithIssue(declWithIssue), BR(br), Checker(checker) {} in StringRefCheckerVisitor()
138 static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR, in CheckStringRefAssignedTemporary() argument
140 StringRefCheckerVisitor walker(D, BR, Checker); in CheckStringRefAssignedTemporary()
184 PathDiagnosticLocation::createBegin(VD, BR.getSourceManager()); in VisitVarDecl()
185 BR.EmitBasicReport(DeclWithIssue, Checker, desc, "LLVM Conventions", desc, in VisitVarDecl()
219 BugReporter &BR; member in __anon84d935f30211::ASTFieldVisitor
225 : Root(root), BR(br), Checker(checker) {} in ASTFieldVisitor()
232 static void CheckASTMemory(const CXXRecordDecl *R, BugReporter &BR, in CheckASTMemory() argument
238 ASTFieldVisitor walker(R, BR, Checker); in CheckASTMemory()
[all …]
DCheckObjCInstMethSignature.cpp42 BugReporter &BR, ASTContext &Ctx, in CompareReturnTypes() argument
71 BR.getSourceManager()); in CompareReturnTypes()
73 BR.EmitBasicReport( in CompareReturnTypes()
80 BugReporter &BR, in CheckObjCInstMethSignature() argument
89 ASTContext &Ctx = BR.getContext(); in CheckObjCInstMethSignature()
116 CompareReturnTypes(MethDerived, M, BR, Ctx, ID, Checker); in CheckObjCInstMethSignature()
132 BugReporter &BR) const { in checkASTDecl()
133 CheckObjCInstMethSignature(D, BR, this); in checkASTDecl()
DCheckSizeofPointer.cpp26 BugReporter &BR; member in __anona85b483c0111::WalkAST
32 : BR(br), Checker(checker), AC(ac) {} in WalkAST()
66 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC); in VisitUnaryExprOrTypeTraitExpr()
67 BR.EmitBasicReport(AC->getDecl(), Checker, in VisitUnaryExprOrTypeTraitExpr()
84 BugReporter &BR) const { in checkASTCodeBody()
85 WalkAST walker(BR, this, mgr.getAnalysisDeclContext(D)); in checkASTCodeBody()
DNSErrorChecker.cpp48 AnalysisManager &mgr, BugReporter &BR) const;
54 BugReporter &BR) const { in checkASTDecl()
76 PathDiagnosticLocation::create(D, BR.getSourceManager()); in checkASTDecl()
77 BR.EmitBasicReport(D, this, "Bad return type when passing NSError**", in checkASTDecl()
95 AnalysisManager &mgr, BugReporter &BR) const;
101 BugReporter &BR) const { in checkASTDecl()
123 PathDiagnosticLocation::create(D, BR.getSourceManager()); in checkASTDecl()
124 BR.EmitBasicReport(D, this, "Bad return type when passing CFErrorRef*", in checkASTDecl()
246 BugReporter &BR = *event.BR; in checkEvent() local
278 BR.emitReport(llvm::make_unique<BugReport>(*bug, os.str(), event.SinkNode)); in checkEvent()
DIdenticalExprChecker.cpp38 BugReporter &BR; member in __anone062d26e0111::FindIdenticalExprVisitor
45 : BR(B), Checker(Checker), AC(A) {} in FindIdenticalExprVisitor()
71 PathDiagnosticLocation::createOperatorLoc(B, BR.getSourceManager()); in reportIdenticalExpr()
72 BR.EmitBasicReport(AC->getDecl(), Checker, in reportIdenticalExpr()
120 PathDiagnosticLocation ELoc(InnerIf->getCond(), BR.getSourceManager(), AC); in VisitIfStmt()
121 BR.EmitBasicReport(AC->getDecl(), Checker, "Identical conditions", in VisitIfStmt()
143 PathDiagnosticLocation ELoc(Cond2, BR.getSourceManager(), AC); in VisitIfStmt()
144 BR.EmitBasicReport(AC->getDecl(), Checker, "Identical conditions", in VisitIfStmt()
173 PathDiagnosticLocation::createBegin(I, BR.getSourceManager(), AC); in VisitIfStmt()
174 BR.EmitBasicReport(AC->getDecl(), Checker, in VisitIfStmt()
[all …]
DDirectIvarAssignment.cpp64 BugReporter &BR; member in __anon940c8d930111::DirectIvarAssignment::MethodCrawler
72 : IvarToPropMap(InMap), MD(InMD), InterfD(InID), BR(InBR), in MethodCrawler()
92 BugReporter &BR) const;
119 BugReporter &BR) const { in checkASTDecl()
150 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, this, in checkASTDecl()
199 BR.EmitBasicReport( in VisitBinaryOperator()
203 PathDiagnosticLocation(IvarRef, BR.getSourceManager(), DCtx)); in VisitBinaryOperator()
DVirtualCallChecker.cpp32 BugReporter &BR; member in __anonb8c375050111::WalkAST
64 : Checker(checker), BR(br), AC(ac), visitingCallExpr(nullptr) {} in WalkAST()
191 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); in ReportVirtualCall()
197 BR.EmitBasicReport(AC->getDecl(), Checker, in ReportVirtualCall()
206 BR.EmitBasicReport(AC->getDecl(), Checker, in ReportVirtualCall()
222 BugReporter &BR) const { in checkASTDecl()
223 WalkAST walker(this, BR, mgr.getAnalysisDeclContext(RD)); in checkASTDecl()
DObjCContainersASTChecker.cpp29 BugReporter &BR; member in __anon3952767e0111::WalkAST
75 : BR(br), Checker(checker), AC(ac), ASTC(AC->getASTContext()), in WalkAST()
144 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC); in VisitCallExpr()
145 BR.EmitBasicReport(AC->getDecl(), Checker, OsName.str(), in VisitCallExpr()
165 BugReporter &BR) const { in checkASTCodeBody()
166 WalkAST walker(BR, this, Mgr.getAnalysisDeclContext(D)); in checkASTCodeBody()
DUndefCapturedBlockVarChecker.cpp39 if (const DeclRefExpr *BR = dyn_cast<DeclRefExpr>(S)) in FindBlockDeclRefExpr() local
40 if (BR->getDecl() == VD) in FindBlockDeclRefExpr()
41 return BR; in FindBlockDeclRefExpr()
45 if (const DeclRefExpr *BR = FindBlockDeclRefExpr(Child, VD)) in FindBlockDeclRefExpr() local
46 return BR; in FindBlockDeclRefExpr()
DDebugCheckers.cpp38 BugReporter &BR) const { in checkASTCodeBody()
60 BugReporter &BR) const { in checkASTCodeBody()
80 BugReporter &BR) const { in checkASTCodeBody()
100 BugReporter &BR) const { in checkASTCodeBody()
126 BugReporter &BR) const { in checkASTDecl()
146 BugReporter &BR) const { in checkASTDecl()
175 BugReporter &BR) const { in checkEndOfTranslationUnit()
DCStringSyntaxChecker.cpp35 BugReporter &BR; member in __anon6def30e30111::WalkAST
86 : Checker(checker), BR(br), AC(ac) {} in WalkAST()
145 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC); in VisitCallExpr()
160 BR.EmitBasicReport(FD, Checker, "Anti-pattern in the argument", in VisitCallExpr()
181 BugReporter &BR) const { in checkASTCodeBody()
182 WalkAST walker(this, BR, Mgr.getAnalysisDeclContext(D)); in checkASTCodeBody()
DObjCUnusedIVarsChecker.cpp108 BugReporter &BR, in checkObjCUnusedIvar() argument
152 SourceManager &SM = BR.getSourceManager(); in checkObjCUnusedIvar()
165 PathDiagnosticLocation::create(I->first, BR.getSourceManager()); in checkObjCUnusedIvar()
166 BR.EmitBasicReport(D, Checker, "Unused instance variable", "Optimization", in checkObjCUnusedIvar()
180 BugReporter &BR) const { in checkASTDecl()
181 checkObjCUnusedIvar(D, BR, this); in checkASTDecl()
DMallocOverflowSecurityChecker.cpp47 BugReporter &BR) const;
55 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const;
269 const Decl *D, BugReporter &BR, AnalysisManager &mgr) const { in OutputPossibleOverflows() argument
275 CheckOverflowOps c(PossibleMallocOverflows, BR.getContext()); in OutputPossibleOverflows()
284 BR.EmitBasicReport( in OutputPossibleOverflows()
288 BR.getSourceManager()), in OutputPossibleOverflows()
295 BugReporter &BR) const { in checkASTCodeBody()
331 OutputPossibleOverflows(PossibleMallocOverflows, D, BR, mgr); in checkASTCodeBody()
DObjCMissingSuperCallChecker.cpp71 BugReporter &BR) const;
168 BugReporter &BR) const { in checkASTDecl()
169 ASTContext &Ctx = BR.getContext(); in checkASTDecl()
198 BR.getSourceManager(), in checkASTDecl()
209 BR.EmitBasicReport(MD, this, Name, categories::CoreFoundationObjectiveC, in checkASTDecl()
DIvarInvalidationChecker.cpp214 BugReporter &BR; member in __anon9a80f9160111::IvarInvalidationCheckerImpl
222 Mgr (InMgr), BR(InBR), Filter(InFilter) {} in IvarInvalidationCheckerImpl()
445 BR.getContext()).VisitStmt(D->getBody()); in visit()
499 BR.getContext()).VisitStmt(D->getBody()); in visit()
545 PathDiagnosticLocation::createBegin(FirstIvarDecl, BR.getSourceManager()); in reportNoInvalidationMethod()
547 BR.EmitBasicReport(FirstIvarDecl, CheckName, "Incomplete invalidation", in reportNoInvalidationMethod()
563 BR.getSourceManager(), in reportIvarNeedsInvalidation()
565 BR.EmitBasicReport(MethodD, Filter.checkName_InstanceVariableInvalidation, in reportIvarNeedsInvalidation()
570 BR.EmitBasicReport( in reportIvarNeedsInvalidation()
574 PathDiagnosticLocation::createBegin(IvarD, BR.getSourceManager())); in reportIvarNeedsInvalidation()
[all …]
/external/libunwind/src/ia64/
Dgetcontext.S29 #define BR(n) (SC_BR + (n)*8) macro
86 .mem.offset 8,0; st8.spill [r3] = r7, (BR(0) - GR(7)) // M3, bank 0
90 st8.spill [r2] = r6, (BR(1) - GR(6)) // M2, bank 1
91 st8 [r3] = rB0, (BR(4) - BR(0)) // M3, bank 1
96 st8 [r2] = rB1, (BR(2) - BR(1)) // M3, bank 0
100 st8 [r2] = rB2, (BR(3) - BR(2)) // M2, bank 1
101 st8 [r3] = rB4, (SC_LC - BR(4)) // M3, bank 1
111 st8 [r2] = rB3, (BR(5) - BR(3)) // M3, bank 0
116 st8 [r2] = rB5, (SC_PFS - BR(5)) // M3, bank 0
/external/libyuv/files/source/
Drow_common.cc998 #define BR (VR * 128 + YGB) macro
1006 {BB, BG, BR, 0, 0, 0, 0, 0},
1013 {BR, BG, BB, 0, 0, 0, 0, 0},
1019 {BB, BG, BR, 0, 0, 0, 0, 0},
1024 {BR, BG, BB, 0, 0, 0, 0, 0},
1036 {BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR},
1045 {BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR},
1053 #undef BR
1079 #define BR (VR * 128 + YGB) macro
1087 {BB, BG, BR, 0, 0, 0, 0, 0},
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporterVisitor.h65 BugReport &BR) = 0;
74 getEndPath(BugReporterContext &BRC, const ExplodedNode *N, BugReport &BR);
81 BugReport &BR);
112 static void registerStatementVarDecls(BugReport &BR, const Stmt *S,
127 BugReport &BR) override;
156 BugReport &BR) override;
178 BugReport &BR) override;
201 BugReport &BR) override;
206 BugReport &BR);
268 BugReport &BR) override { in VisitNode() argument
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_common.cc989 #define BR (VR * 128 + YGB) macro
997 { BB, BG, BR, 0, 0, 0, 0, 0 },
1005 { BR, BG, BB, 0, 0, 0, 0, 0 },
1012 { BB, BG, BR, 0, 0, 0, 0, 0 },
1018 { BR, BG, BB, 0, 0, 0, 0, 0 },
1031 { BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR },
1041 { BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR, BR },
1050 #undef BR
1076 #define BR (VR * 128 + YGB) macro
1084 { BB, BG, BR, 0, 0, 0, 0, 0 },
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp106 const ExplodedNode *EndPathNode, BugReport &BR) { in getEndPath() argument
111 BugReporterContext &BRC, const ExplodedNode *EndPathNode, BugReport &BR) { in getDefaultEndPath() argument
115 const auto &Ranges = BR.getRanges(); in getDefaultEndPath()
120 L, BR.getDescription(), Ranges.begin() == Ranges.end()); in getDefaultEndPath()
169 BugReport &BR, in addVisitorIfNecessary() argument
220 BR.markInteresting(CalleeContext); in addVisitorIfNecessary()
221 BR.addVisitor(llvm::make_unique<ReturnVisitor>(CalleeContext, in addVisitorIfNecessary()
234 BugReport &BR) { in visitNodeInitial() argument
280 BR.markInteresting(V); in visitNodeInitial()
281 ReturnVisitor::addVisitorIfNecessary(N, RetE, BR, in visitNodeInitial()
[all …]
/external/ImageMagick/coders/
Dwmf.c636 XC(rop_draw->BR.x), YC(rop_draw->BR.y)); in ipa_rop_draw()
865 XC(ddata->bbox.BR.x),YC(ddata->bbox.BR.y)); in ipa_device_begin()
913 XC(ddata->bbox.BR.x),YC(ddata->bbox.BR.y)); in ipa_device_begin()
1023 BR, in util_draw_arc() local
1043 center.x = (draw_arc->TL.x + draw_arc->BR.x) / 2; in util_draw_arc()
1044 center.y = (draw_arc->TL.y + draw_arc->BR.y) / 2; in util_draw_arc()
1058 BR = draw_arc->BR; in util_draw_arc()
1068 Rx = (BR.x - TL.x) / 2; in util_draw_arc()
1069 Ry = (BR.y - TL.y) / 2; in util_draw_arc()
1108 XC(draw_arc->BR.x), XC(draw_arc->BR.y), phi_s, phi_e); in util_draw_arc()
[all …]
/external/libxml2/result/HTML/
Ddoc3.htm.err14 width=70 Gentus?.?></A><BR><A
20 Specials<BR><BR></FONT></A><BR></FONT></A><B><FONT color=yellow
23 Specials<BR><BR></FONT></A><BR></FONT></A><B><FONT color=yellow
65 Special<BR>Code:BP6-hd</FONT></A> </P></CENTER></TD></TR></TBODY></T
68 Special<BR>Code:BP6-hd</FONT></A> </P></CENTER></TD></TR></TBODY></T
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
DShortNumberInfoTest.java242 assertTrue(shortInfo.connectsToEmergencyNumber("911", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
243 assertTrue(shortInfo.connectsToEmergencyNumber("190", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
244 assertFalse(shortInfo.connectsToEmergencyNumber("999", RegionCode.BR)); in testConnectsToEmergencyNumber_BR()
249 assertFalse(shortInfo.connectsToEmergencyNumber("9111", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
250 assertFalse(shortInfo.connectsToEmergencyNumber("1900", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
251 assertFalse(shortInfo.connectsToEmergencyNumber("9996", RegionCode.BR)); in testConnectsToEmergencyNumberLongNumber_BR()
309 assertTrue(shortInfo.isEmergencyNumber("911", RegionCode.BR)); in testIsEmergencyNumber_BR()
310 assertTrue(shortInfo.isEmergencyNumber("190", RegionCode.BR)); in testIsEmergencyNumber_BR()
311 assertFalse(shortInfo.isEmergencyNumber("999", RegionCode.BR)); in testIsEmergencyNumber_BR()
315 assertFalse(shortInfo.isEmergencyNumber("9111", RegionCode.BR)); in testIsEmergencyNumberLongNumber_BR()
[all …]

12345678910>>...23