HomeSort by relevance Sort by last modified time
    Searched defs:BR (Results 1 - 25 of 45) sorted by null

1 2

  /external/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 38 typedef std::basic_regex<CharT> BR;
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::grep == std::regex_constants::grep), "")
    [all...]
  /external/libunwind/src/ia64/
getcontext.S 29 #define BR(n) (SC_BR + (n)*8)
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
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.const/
constants.pass.cpp 38 typedef std::basic_regex<CharT> BR;
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::grep == std::regex_constants::grep), "")
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSizeofPointer.cpp 26 BugReporter &BR;
31 WalkAST(BugReporter &br, const CheckerBase *checker, AnalysisDeclContext *ac)
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));
UndefCapturedBlockVarChecker.cpp 39 if (const DeclRefExpr *BR = dyn_cast<DeclRefExpr>(S))
40 if (BR->getDecl() == VD)
41 return BR;
46 const DeclRefExpr *BR = FindBlockDeclRefExpr(child, VD);
47 if (BR)
48 return BR;
CStringSyntaxChecker.cpp 35 BugReporter &BR;
85 WalkAST(const CheckerBase *checker, BugReporter &br, AnalysisDeclContext *ac)
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));
DirectIvarAssignment.cpp 65 BugReporter &BR;
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));
ObjCContainersASTChecker.cpp 29 BugReporter &BR;
75 WalkAST(BugReporter &br, const CheckerBase *checker, AnalysisDeclContext *ac)
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));
VirtualCallChecker.cpp 32 BugReporter &BR;
62 WalkAST(const CheckerBase *checker, BugReporter &br,
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));
DeadStoresChecker.cpp 126 BugReporter& BR;
138 DeadStoreObs(const CFG &cfg, ASTContext &ctx, BugReporter &br,
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)
    [all...]
IdenticalExprChecker.cpp 38 BugReporter &BR;
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.EmitBasicReport(AC->getDecl(), Checker
    [all...]
LLVMConventionsChecker.cpp 119 BugReporter &BR;
123 StringRefCheckerVisitor(const Decl *declWithIssue, BugReporter &br,
125 : DeclWithIssue(declWithIssue), BR(br), Checker(checker) {}
139 static void CheckStringRefAssignedTemporary(const Decl *D, BugReporter &BR,
141 StringRefCheckerVisitor walker(D, BR, Checker);
185 PathDiagnosticLocation::createBegin(VD, BR.getSourceManager());
186 BR.EmitBasicReport(DeclWithIssue, Checker, desc, "LLVM Conventions", desc,
220 BugReporter &BR;
224 ASTFieldVisitor(const CXXRecordDecl *root, BugReporter &br,
    [all...]
NSErrorChecker.cpp 48 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;
    [all...]
CheckSecuritySyntaxOnly.cpp 62 BugReporter &BR;
71 WalkAST(BugReporter &br, AnalysisDeclContext* ac,
73 : BR(br), AC(ac), II_setid(),
74 CheckRand(isArc4RandomAvailable(BR.getContext())),
293 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
294 BR.EmitBasicReport(AC->getDecl(), filter.checkName_FloatLoopCounter,
323 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
328 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
329 BR.EmitBasicReport(AC->getDecl(), filter.checkName_gets
    [all...]
IvarInvalidationChecker.cpp 216 BugReporter &BR;
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.getSourceManager()))
    [all...]
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 54 BranchInst *BR = dyn_cast<BranchInst>(entryBlock->getTerminator());
55 if (!BR || BR->isUnconditional())
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 90 GRBugReporter BR;
133 BugReporter& getBugReporter() { return BR; }
  /external/jpeg/
jcphuff.c 625 unsigned int BR;
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; /* concat my correction bits to older ones *
    [all...]
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 33 static final String BR = "BR";
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcphuff.c 626 unsigned int BR;
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; /* concat my correction bits to older ones */
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcphuff.c 625 unsigned int BR;
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; /* concat my correction bits to older ones *
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePatch.cpp 84 const int BR = TR + nv;
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/clang/include/clang/StaticAnalyzer/Core/
Checker.h 36 BugReporter &BR) {
37 ((const CHECKER *)checker)->checkASTDecl(cast<DECL>(D), mgr, BR);
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;
  /external/skia/samplecode/
SamplePatch.cpp 84 const int BR = TR + nv;
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/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 525 GRBugReporter &BR;
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();

Completed in 895 milliseconds

1 2