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

123

/external/libcxx/test/re/re.regex/re.regex.const/
H A Dconstants.pass.cpp38 typedef std::basic_regex<CharT> BR; typedef
39 static_assert((BR::icase == std::regex_constants::icase), "");
40 static_assert((BR::nosubs == std::regex_constants::nosubs), "");
41 static_assert((BR::optimize == std::regex_constants::optimize), "");
42 static_assert((BR::collate == std::regex_constants::collate), "");
43 static_assert((BR::ECMAScript == std::regex_constants::ECMAScript), "");
44 static_assert((BR::basic == std::regex_constants::basic), "");
45 static_assert((BR::extended == std::regex_constants::extended), "");
46 static_assert((BR::awk == std::regex_constants::awk), "");
47 static_assert((BR
[all...]
/external/libunwind/src/ia64/
H A Dgetcontext.S29 #define BR(n) (SC_BR + (n)*8) define
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(
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
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 DCheckSizeofPointer.cpp26 BugReporter &BR; member in class:__anon18171::WalkAST
32 : BR(br), Checker(checker), AC(ac) {}
66 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC);
67 BR.EmitBasicReport(AC->getDecl(), Checker,
84 BugReporter &BR) const {
85 WalkAST walker(BR, this, mgr.getAnalysisDeclContext(D));
H A DCheckObjCInstMethSignature.cpp42 BugReporter &BR, ASTContext &Ctx,
71 BR.getSourceManager());
73 BR.EmitBasicReport(
80 BugReporter &BR,
89 ASTContext &Ctx = BR.getContext();
116 CompareReturnTypes(MethDerived, M, BR, Ctx, ID, Checker);
132 BugReporter &BR) const {
133 CheckObjCInstMethSignature(D, BR, this);
40 CompareReturnTypes(const ObjCMethodDecl *MethDerived, const ObjCMethodDecl *MethAncestor, BugReporter &BR, ASTContext &Ctx, const ObjCImplementationDecl *ID, const CheckerBase *Checker) argument
79 CheckObjCInstMethSignature(const ObjCImplementationDecl *ID, BugReporter &BR, const CheckerBase *Checker) argument
H A DObjCUnusedIVarsChecker.cpp108 BugReporter &BR,
152 SourceManager &SM = BR.getSourceManager();
165 PathDiagnosticLocation::create(I->first, BR.getSourceManager());
166 BR.EmitBasicReport(D, Checker, "Unused instance variable", "Optimization",
180 BugReporter &BR) const {
181 checkObjCUnusedIvar(D, BR, this);
107 checkObjCUnusedIvar(const ObjCImplementationDecl *D, BugReporter &BR, const CheckerBase *Checker) argument
H A DCStringSyntaxChecker.cpp35 BugReporter &BR; member in class:__anon18161::WalkAST
86 : Checker(checker), BR(br), AC(ac) {}
145 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
160 BR.EmitBasicReport(FD, Checker, "Anti-pattern in the argument",
182 BugReporter &BR) const {
183 WalkAST walker(this, BR, Mgr.getAnalysisDeclContext(D));
H A DCheckObjCDealloc.cpp102 const LangOptions &LOpts, BugReporter &BR) {
106 ASTContext &Ctx = BR.getContext();
167 PathDiagnosticLocation::createBegin(D, BR.getSourceManager());
179 BR.EmitBasicReport(D, Checker, name, categories::CoreFoundationObjectiveC,
197 BR.EmitBasicReport(MD, Checker, name, categories::CoreFoundationObjectiveC,
259 PathDiagnosticLocation::createBegin(I, BR.getSourceManager());
261 BR.EmitBasicReport(MD, Checker, name,
276 BugReporter &BR) const {
280 BR);
100 checkObjCDealloc(const CheckerBase *Checker, const ObjCImplementationDecl *D, const LangOptions &LOpts, BugReporter &BR) argument
H A DDirectIvarAssignment.cpp65 BugReporter &BR; member in class:__anon18187::DirectIvarAssignment::MethodCrawler
73 : IvarToPropMap(InMap), MD(InMD), InterfD(InID), BR(InBR),
93 BugReporter &BR) const;
120 BugReporter &BR) const {
151 MethodCrawler MC(IvarToPropMap, M->getCanonicalDecl(), InterD, BR, this,
200 BR.EmitBasicReport(
204 PathDiagnosticLocation(IvarRef, BR.getSourceManager(), DCtx));
H A DObjCContainersASTChecker.cpp29 BugReporter &BR; member in class:__anon18215::WalkAST
76 : BR(br), Checker(checker), AC(ac), ASTC(AC->getASTContext()),
145 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
146 BR.EmitBasicReport(AC->getDecl(), Checker, OsName.str(),
166 BugReporter &BR) const {
167 WalkAST walker(BR, this, Mgr.getAnalysisDeclContext(D));
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 DLLVMConventionsChecker.cpp119 BugReporter &BR; member in class:__anon18197::StringRefCheckerVisitor
125 : DeclWithIssue(declWithIssue), BR(br), Checker(checker) {}
139 static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR, argument
141 StringRefCheckerVisitor walker(D, BR, Checker);
185 PathDiagnosticLocation::createBegin(VD, BR.getSourceManager());
186 BR.EmitBasicReport(DeclWithIssue, Checker, desc, "LLVM Conventions", desc,
220 BugReporter &BR; member in class:__anon18198::ASTFieldVisitor
226 : Root(root), BR(br), Checker(checker) {}
233 static void CheckASTMemory(const CXXRecordDecl *R, BugReporter &BR, argument
239 ASTFieldVisitor walker(R, BR, Checke
[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());
216 BR.EmitBasicReport(
220 BR.getSourceManager()),
227 BugReporter &BR) const {
263 OutputPossibleOverflows(PossibleMallocOverflows, D, BR, mgr);
199 OutputPossibleOverflows( SmallVectorImpl<MallocOverflowCheck> &PossibleMallocOverflows, const Decl *D, BugReporter &BR, AnalysisManager &mgr) const argument
H A DNSErrorChecker.cpp48 AnalysisManager &mgr, BugReporter &BR) const;
54 BugReporter &BR) const {
76 PathDiagnosticLocation::create(D, BR.getSourceManager());
77 BR.EmitBasicReport(D, this, "Bad return type when passing NSError**",
95 AnalysisManager &mgr, BugReporter &BR) const;
101 BugReporter &BR) const {
123 PathDiagnosticLocation::create(D, BR.getSourceManager());
124 BR.EmitBasicReport(D, this, "Bad return type when passing CFErrorRef*",
246 BugReporter &BR = *event.BR; local
[all...]
H A DTestAfterDivZeroChecker.cpp76 BugReport &BR) override;
100 BugReport &BR) {
97 VisitNode(const ExplodedNode *Succ, const ExplodedNode *Pred, BugReporterContext &BRC, BugReport &BR) argument
H A DVirtualCallChecker.cpp32 BugReporter &BR; member in class:__anon18252::WalkAST
64 : Checker(checker), BR(br), AC(ac), visitingCallExpr(nullptr) {}
184 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
190 BR.EmitBasicReport(AC->getDecl(), Checker,
199 BR.EmitBasicReport(AC->getDecl(), Checker,
215 BugReporter &BR) const {
216 WalkAST walker(this, BR, mgr.getAnalysisDeclContext(RD));
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);
H A DIdenticalExprChecker.cpp38 BugReporter &BR; member in class:__anon18193::FindIdenticalExprVisitor
45 : BR(B), Checker(Checker), AC(A) {}
71 PathDiagnosticLocation::createOperatorLoc(B, BR.getSourceManager());
72 BR.EmitBasicReport(AC->getDecl(), Checker,
125 PathDiagnosticLocation ELoc(Cond2, BR.getSourceManager(), AC);
126 BR.EmitBasicReport(AC->getDecl(), Checker, "Identical conditions",
155 PathDiagnosticLocation::createBegin(I, BR.getSourceManager(), AC);
156 BR.EmitBasicReport(AC->getDecl(), Checker,
238 PathDiagnosticLocation::createOperatorLoc(B, BR.getSourceManager());
244 BR
[all...]
/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/PathSensitive/
H A DExprEngine.h90 GRBugReporter BR; member in class:clang::ento::ExprEngine
133 BugReporter& getBugReporter() { return BR; }
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DRegionCode.java33 static final String BR = "BR"; field in class:RegionCode
/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/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...]

Completed in 2356 milliseconds

123