Searched refs:BR (Results 26 - 50 of 192) sorted by relevance

12345678

/external/clang/lib/StaticAnalyzer/Checkers/
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.cpp175 BugReporter &BR) const {
177 CastedAllocFinder Finder(&BR.getContext());
200 if (typesCompatible(BR.getContext(), PointeeType, SizeofType))
205 if (compatibleWithArrayType(BR.getContext(), PointeeType, SizeofType))
236 BR.getSourceManager(), ADC);
238 BR.EmitBasicReport(D, this, "Allocator sizeof operand mismatch",
H A DIvarInvalidationChecker.cpp216 BugReporter &BR; member in class:__anon18195::IvarInvalidationCheckerImpl
224 Mgr (InMgr), BR(InBR), Filter(InFilter) {}
447 BR.getContext()).VisitStmt(D->getBody());
501 BR.getContext()).VisitStmt(D->getBody());
547 PathDiagnosticLocation::createBegin(FirstIvarDecl, BR.getSourceManager());
549 BR.EmitBasicReport(FirstIvarDecl, CheckName, "Incomplete invalidation",
565 BR.getSourceManager(),
567 BR.EmitBasicReport(MethodD, Filter.checkName_InstanceVariableInvalidation,
572 BR.EmitBasicReport(
576 PathDiagnosticLocation::createBegin(IvarD, BR
[all...]
H A DDeadStoresChecker.cpp126 BugReporter& BR; member in class:__anon18175::DeadStoreObs
142 : cfg(cfg), Ctx(ctx), BR(br), Checker(checker), AC(ac), Parents(parents),
204 BR.EmitBasicReport(AC->getDecl(), Checker, BugType, "Dead store", os.str(),
224 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
380 PathDiagnosticLocation::create(V, BR.getSourceManager());
427 BugReporter &BR) const {
443 DeadStoreObs A(cfg, BR.getContext(), BR, this, AC, pmap, FS.Escaped);
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DShortNumberInfoTest.java209 assertTrue(shortInfo.connectsToEmergencyNumber("911", RegionCode.BR));
210 assertTrue(shortInfo.connectsToEmergencyNumber("190", RegionCode.BR));
211 assertFalse(shortInfo.connectsToEmergencyNumber("999", RegionCode.BR));
216 assertFalse(shortInfo.connectsToEmergencyNumber("9111", RegionCode.BR));
217 assertFalse(shortInfo.connectsToEmergencyNumber("1900", RegionCode.BR));
218 assertFalse(shortInfo.connectsToEmergencyNumber("9996", RegionCode.BR));
276 assertTrue(shortInfo.isEmergencyNumber("911", RegionCode.BR));
277 assertTrue(shortInfo.isEmergencyNumber("190", RegionCode.BR));
278 assertFalse(shortInfo.isEmergencyNumber("999", RegionCode.BR));
282 assertFalse(shortInfo.isEmergencyNumber("9111", RegionCode.BR));
[all...]
H A DRegionCode.java33 static final String BR = "BR"; field in class:RegionCode
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp106 BugReport &BR) {
113 BugReport &BR) {
118 std::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
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
1111 registerStatementVarDecls(BugReport &BR, const Stmt *S, bool EnableNullFPSuppression) argument
1157 VisitNode(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
1170 VisitNodeImpl(const ExplodedNode *N, const ExplodedNode *Prev, BugReporterContext &BRC, BugReport &BR) argument
1522 getEndPath(BugReporterContext &BRC, const ExplodedNode *N, BugReport &BR) argument
1592 VisitNode(const ExplodedNode *N, const ExplodedNode *PrevN, BugReporterContext &BRC, BugReport &BR) argument
[all...]
H A DCheckerManager.cpp57 BugReporter &BR) {
78 (*I)(D, mgr, BR);
82 BugReporter &BR) {
86 BodyCheckers[i](D, mgr, BR);
347 BugReporter &BR,
350 EndAnalysisCheckers[i](G, BR, Eng);
574 BugReporter &BR) {
576 EndOfTranslationUnitCheckers[i](TU, mgr, BR);
56 runCheckersOnASTDecl(const Decl *D, AnalysisManager& mgr, BugReporter &BR) argument
81 runCheckersOnASTBody(const Decl *D, AnalysisManager& mgr, BugReporter &BR) argument
346 runCheckersForEndAnalysis(ExplodedGraph &G, BugReporter &BR, ExprEngine &Eng) argument
571 runCheckersOnEndOfTranslationUnit( const TranslationUnitDecl *TU, AnalysisManager &mgr, BugReporter &BR) argument
/external/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp54 BranchInst *BR = dyn_cast<BranchInst>(entryBlock->getTerminator()); local
55 if (!BR || BR->isUnconditional())
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h525 GRBugReporter &BR; member in class:clang::ento::BugReporterContext
527 BugReporterContext(GRBugReporter& br) : BR(br) {}
531 GRBugReporter& getBugReporter() { return BR; }
533 ExplodedGraph &getGraph() { return BR.getGraph(); }
536 return BR.getStateManager();
544 return BR.getContext();
548 return BR.getSourceManager();
H A DBugType.h58 virtual void FlushReports(BugReporter& BR);
/external/chromium_org/third_party/libjpeg_turbo/
H A Djcphuff.c623 unsigned int BR; local
661 BR = 0; /* BR = count of buffered bits added now */
678 emit_buffered_bits(entropy, BR_buffer, BR);
680 BR = 0;
690 BR_buffer[BR++] = (char) (temp & 1);
705 emit_buffered_bits(entropy, BR_buffer, BR);
707 BR = 0;
711 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */
713 entropy->BE += BR; /* conca
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h36 BugReporter &BR) {
37 ((const CHECKER *)checker)->checkASTDecl(cast<DECL>(D), mgr, BR); local
55 BugReporter &BR) {
56 ((const CHECKER *)checker)->checkASTCodeBody(D, mgr, BR);
72 BugReporter &BR) {
73 ((const CHECKER *)checker)->checkEndOfTranslationUnit(TU, mgr, BR);
218 BugReporter &BR, ExprEngine &Eng) {
219 ((const CHECKER *)checker)->checkEndAnalysis(G, BR, Eng);
547 BugReporter *BR; member in struct:clang::ento::ImplicitNullDerefEvent
35 _checkDecl(void *checker, const Decl *D, AnalysisManager& mgr, BugReporter &BR) argument
54 _checkBody(void *checker, const Decl *D, AnalysisManager& mgr, BugReporter &BR) argument
69 _checkEndOfTranslationUnit(void *checker, const TranslationUnitDecl *TU, AnalysisManager& mgr, BugReporter &BR) argument
217 _checkEndAnalysis(void *checker, ExplodedGraph &G, BugReporter &BR, ExprEngine &Eng) argument
/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/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcphuff.c626 unsigned int BR; local
664 BR = 0; /* BR = count of buffered bits added now */
681 emit_buffered_bits(entropy, BR_buffer, BR);
683 BR = 0;
693 BR_buffer[BR++] = (char) (temp & 1);
708 emit_buffered_bits(entropy, BR_buffer, BR);
710 BR = 0;
714 if (r > 0 || BR > 0) { /* If there are trailing zeroes, */
716 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/chromium_org/third_party/skia/samplecode/
H A DSamplePatch.cpp84 const int BR = TR + nv; local
85 const int BL = BR + nu;
96 SkScalarMul(Uv, edge[BL].fX) + SkScalarMul(uv, edge[BR].fX);
98 SkScalarMul(Uv, edge[BL].fY) + SkScalarMul(uv, edge[BR].fY);
102 SkScalarMul(v, edge[BR+nu-iu].fX) +
106 SkScalarMul(v, edge[BR+nu-iu].fY) +
/external/skia/samplecode/
H A DSamplePatch.cpp84 const int BR = TR + nv; local
85 const int BL = BR + nu;
96 SkScalarMul(Uv, edge[BL].fX) + SkScalarMul(uv, edge[BR].fX);
98 SkScalarMul(Uv, edge[BL].fY) + SkScalarMul(uv, edge[BR].fY);
102 SkScalarMul(v, edge[BR+nu-iu].fX) +
106 SkScalarMul(v, edge[BR+nu-iu].fY) +
/external/linux-tools-perf/perf-3.12.0/arch/metag/lib/
H A Dmemset.S42 BR $LLongLoop
56 BR $LLongishLoop
H A Dmemcpy.S25 BR $Lloop_byte
72 BR $Laligned_32
131 BR $Lloop_5_6_7
159 BR $Lloop_1_2_3
172 BR $Lloop_4
/external/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp512 // Introduce a scope to destroy BR before Mgr.
513 BugReporter BR(*Mgr);
515 checkerMgr->runCheckersOnASTDecl(TU, *Mgr, BR);
523 RecVisitorBR = &BR;
540 checkerMgr->runCheckersOnEndOfTranslationUnit(TU, *Mgr, BR);
614 BugReporter BR(*Mgr);
617 checkerMgr->runCheckersOnASTBody(D, *Mgr, BR);
/external/libyuv/files/source/
H A Drow_posix.cc1287 #define BR UR * 128 + VR * 128 macro
1309 { BR, BR, BR, BR, BR, BR, BR, BR },
/external/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp74 LoweredMI = MCInstBuilder(SystemZ::BR).addReg(SystemZ::R14D);
95 LoweredMI = MCInstBuilder(SystemZ::BR).addReg(SystemZ::R1D);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm132 idesc64 isrL, 0x0008, 0 ; 0x05, 5, #BR, Bound Range Exceeded
171 dw isrR, 0 ; 0x05, 5, #BR, Bound Range Exceeded
H A Dxdfprotect.asm106 idesc32 isrP, 0x0008, 0 ; 0x05, 5, #BR, Bound Range Exceeded
144 dw isrR, 0 ; 0x05, 5, #BR, Bound Range Exceeded

Completed in 9321 milliseconds

12345678