Searched refs:AC (Results 1 - 25 of 44) sorted by relevance

12

/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
H A Dp3.cpp33 namespace AC { namespace
39 if (AC::i)
40 AC::f();
/external/clang/test/SemaCXX/
H A Dmissing-header.cpp6 static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { argument
H A Ddecltype.cpp11 typedef A const AC; typedef
16 float &fr = f2(AC().a);
/external/clang/test/CodeGenCXX/
H A Dmangle-alias-template.cpp31 Alloc<int> AC; local
32 h(AC);
35 h<Alloc>(AC);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSizeofPointer.cpp27 AnalysisDeclContext* AC; member in class:__anon3857::WalkAST
30 WalkAST(BugReporter &br, AnalysisDeclContext* ac) : BR(br), AC(ac) {}
65 PathDiagnosticLocation::createBegin(E, BR.getSourceManager(), AC);
66 BR.EmitBasicReport(AC->getDecl(),
H A DIdempotentOperationChecker.cpp86 static bool isUnused(const Expr *E, AnalysisDeclContext *AC);
89 static bool pathWasCompletelyAnalyzed(AnalysisDeclContext *AC,
93 AnalysisDeclContext *AC);
95 AnalysisDeclContext *AC);
121 AnalysisDeclContext *AC = C.getCurrentAnalysisDeclContext(); local
140 LHSContainsFalsePositive = !CanVary(LHS, AC)
142 RHSContainsFalsePositive = !CanVary(RHS, AC)
197 if (!isUnused(LHS, AC) && !isTruncationExtensionAssignment(LHS, RHS)) {
373 AnalysisDeclContext *AC = (*ES.begin())->getLocationContext() local
375 if (!pathWasCompletelyAnalyzed(AC,
493 isUnused(const Expr *E, AnalysisDeclContext *AC) argument
538 pathWasCompletelyAnalyzed(AnalysisDeclContext *AC, const CFGBlock *CB, const CoreEngine &CE) argument
621 CanVary(const Expr *Ex, AnalysisDeclContext *AC) argument
703 isConstantOrPseudoConstant( const DeclRefExpr *DR, AnalysisDeclContext *AC) argument
[all...]
H A DObjCContainersASTChecker.cpp30 AnalysisDeclContext* AC; member in class:__anon3899::WalkAST
77 : BR(br), AC(ac), ASTC(AC->getASTContext()),
146 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
147 BR.EmitBasicReport(AC->getDecl(),
H A DVirtualCallChecker.cpp31 AnalysisDeclContext *AC; member in class:__anon3936::WalkAST
62 AC(ac),
183 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
189 BR.EmitBasicReport(AC->getDecl(),
199 BR.EmitBasicReport(AC->getDecl(),
H A DCheckSecuritySyntaxOnly.cpp60 AnalysisDeclContext* AC; member in class:__anon3854::WalkAST
70 : BR(br), AC(ac), II_setid(),
289 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
290 BR.EmitBasicReport(AC->getDecl(),
326 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
327 BR.EmitBasicReport(AC->getDecl(),
368 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
369 BR.EmitBasicReport(AC->getDecl(),
411 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
412 BR.EmitBasicReport(AC
[all...]
H A DCStringSyntaxChecker.cpp35 AnalysisDeclContext* AC; member in class:__anon3847::WalkAST
86 BR(br), AC(ac), ASTC(AC->getASTContext()) {
145 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
H A DDebugCheckers.cpp34 if (AnalysisDeclContext *AC = mgr.getAnalysisDeclContext(D)) {
36 dom.buildDominatorTree(*AC);
H A DDeadStoresChecker.cpp125 AnalysisDeclContext* AC; member in class:__anon3861::DeadStoreObs
138 : cfg(cfg), Ctx(ctx), BR(br), AC(ac), Parents(parents),
151 V.TraverseStmt(AC->getBody());
200 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
218 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
425 AnalysisDeclContext *AC = mgr.getAnalysisDeclContext(D); local
429 DeadStoreObs A(cfg, BR.getContext(), BR, AC, pmap, FS.Escaped);
/external/llvm/tools/llvm-config/
H A Dllvm-config.cpp60 AvailableComponent *AC = ComponentMap.lookup(Name); local
61 assert(AC && "Invalid component name!");
64 if (!VisitedComponents.insert(AC).second) {
70 if (!AC->IsInstalled && !IncludeNonInstalled)
74 for (unsigned i = 0; AC->RequiredLibraries[i]; ++i) {
75 VisitComponent(AC->RequiredLibraries[i], ComponentMap, VisitedComponents,
80 if (AC->Library)
81 RequiredLibs.push_back(AC->Library);
101 AvailableComponent *AC = &AvailableComponents[i]; local
102 ComponentMap[AC
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h52 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB);
H A DThreadSafety.h153 void runThreadSafetyAnalysis(AnalysisDeclContext &AC,
H A DDominators.h80 void buildDominatorTree(AnalysisDeclContext &AC) { argument
81 cfg = AC.getCFG();
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp70 static void CheckUnreachable(Sema &S, AnalysisDeclContext &AC) { argument
72 reachable_code::FindUnreachableCode(AC, UC);
96 static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { argument
97 CFG *cfg = AC.getCFG();
106 bool AddEHEdges = AC.getAddEHEdges();
322 AnalysisDeclContext &AC) {
355 switch (CheckFallThrough(AC)) {
816 static void DiagnoseSwitchLabelsFallthrough(Sema &S, AnalysisDeclContext &AC, argument
819 FM.TraverseStmt(AC.getBody());
827 CFG *Cfg = AC
319 CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body, const BlockExpr *blkExpr, const CheckFallThroughDiagnostics& CD, AnalysisDeclContext &AC) argument
1340 runUninitializedVariablesAnalysis(*cast<DeclContext>(D), *cfg, AC, local
[all...]
H A DJumpDiagnostics.cpp380 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); local
384 AC->getAtCatchLoc()));
386 BuildScopeInformation(AC->getCatchBody(),
/external/clang/lib/Driver/
H A DAction.cpp23 const char *Action::getClassName(ActionClass AC) { argument
24 switch (AC) {
/external/kernel-headers/original/linux/
H A Dif_tr.h28 #define AC 0x10 macro
/external/clang/lib/Analysis/
H A DReachableCode.cpp292 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB) { argument
293 CFG *cfg = AC.getCFG();
306 if (!AC.getCFGBuildOptions().AddEHEdges) {
H A DAnalysisDeclContext.cpp206 AnalysisDeclContext *&AC = Contexts[D]; local
207 if (!AC)
208 AC = new AnalysisDeclContext(this, D, cfgBuildOptions);
209 return AC;
H A DLiveVariables.cpp495 LiveVariables::computeLiveness(AnalysisDeclContext &AC, argument
499 CFG *cfg = AC.getCFG();
508 LiveVariablesImpl *LV = new LiveVariablesImpl(AC, killAtAssign);
512 DataflowWorklist worklist(*cfg, AC);
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp367 const AnalysisDeclContext *AC,
374 BlockTextRegion::ProfileRegion(ID, BD, locTy, AC, superRegion);
854 AnalysisDeclContext *AC) {
855 return getSubRegion<BlockTextRegion>(BD, locTy, AC, getCodeRegion());
1208 AnalysisDeclContext *AC = getCodeRegion()->getAnalysisDeclContext();
1210 llvm::tie(I, E) = AC->getReferencedBlockVars(BC->getDecl());
365 ProfileRegion(llvm::FoldingSetNodeID& ID, const BlockDecl *BD, CanQualType, const AnalysisDeclContext *AC, const MemRegion*) argument
853 getBlockTextRegion(const BlockDecl *BD, CanQualType locTy, AnalysisDeclContext *AC) argument
/external/clang/include/clang/Driver/
H A DAction.h54 static const char *getClassName(ActionClass AC);

Completed in 286 milliseconds

12