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

12345678

/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/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/clang/lib/StaticAnalyzer/Checkers/
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 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,
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 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 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 DDebugCheckers.cpp35 BugReporter &BR) const {
57 BugReporter &BR) const {
77 BugReporter &BR) const {
97 BugReporter &BR) const {
123 BugReporter &BR) const {
143 BugReporter &BR) const {
172 BugReporter &BR) const {
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 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 DCheckSecuritySyntaxOnly.cpp62 BugReporter &BR; member in class:__anon18168::WalkAST
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,
363 if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
368 PathDiagnosticLocation::createBegin(CE, BR
[all...]
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 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 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 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 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 DStackAddrEscapeChecker.cpp69 else if (const BlockDataRegion *BR = dyn_cast<BlockDataRegion>(R)) {
70 const BlockDecl *BD = BR->getCodeRegion()->getDecl();
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...]
H A DObjCMissingSuperCallChecker.cpp73 BugReporter &BR) const;
170 BugReporter &BR) const {
171 ASTContext &Ctx = BR.getContext();
200 BR.getSourceManager(),
211 BR.EmitBasicReport(MD, this, Name, categories::CoreFoundationObjectiveC,
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DShortNumberUtilTest.java60 assertTrue(shortUtil.connectsToEmergencyNumber("911", RegionCode.BR));
61 assertTrue(shortUtil.connectsToEmergencyNumber("190", RegionCode.BR));
62 assertFalse(shortUtil.connectsToEmergencyNumber("999", RegionCode.BR));
67 assertFalse(shortUtil.connectsToEmergencyNumber("9111", RegionCode.BR));
68 assertFalse(shortUtil.connectsToEmergencyNumber("1900", RegionCode.BR));
69 assertFalse(shortUtil.connectsToEmergencyNumber("9996", RegionCode.BR));
116 assertTrue(shortUtil.isEmergencyNumber("911", RegionCode.BR));
117 assertTrue(shortUtil.isEmergencyNumber("190", RegionCode.BR));
118 assertFalse(shortUtil.isEmergencyNumber("999", RegionCode.BR));
122 assertFalse(shortUtil.isEmergencyNumber("9111", RegionCode.BR));
[all...]
/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) override;
156 BugReport &BR) override;
178 BugReport &BR) override;
200 BugReport &BR) override;
205 BugReport &BR);
267 BugReport &BR) overrid
[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/linux-tools-perf/perf-3.12.0/arch/sh/lib/
H A Dmemcpy-sh4.S52 bt/s 3b ! 109 BR
69 bt/s 3b ! 109 BR
79 bt 9f ! 109 BR
84 bt/s 8b ! 109 BR
125 bt/s 3b ! 109 BR
147 bt 9f ! 109 BR
152 bt/s 8b ! 109 BR
180 bt/s 99f ! 111 BR (zero len)
187 bt/s .Lcase00 ! 111 BR (aligned)
207 bf/s 6f ! 108 BR (no
[all...]
/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...]

Completed in 3041 milliseconds

12345678