Searched defs:AC (Results 1 - 25 of 29) sorted by relevance

12

/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/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
H A Dp3.cpp34 namespace AC { namespace
40 if (AC::i)
41 AC::f();
/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:__anon4005::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 DCStringSyntaxChecker.cpp35 AnalysisDeclContext* AC; member in class:__anon3995::WalkAST
85 BR(br), AC(ac) {
144 PathDiagnosticLocation::createBegin(LenArg, BR.getSourceManager(), AC);
H A DObjCContainersASTChecker.cpp30 AnalysisDeclContext* AC; member in class:__anon4048::WalkAST
75 : BR(br), AC(ac), ASTC(AC->getASTContext()),
145 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
146 BR.EmitBasicReport(AC->getDecl(),
H A DVirtualCallChecker.cpp32 AnalysisDeclContext *AC; member in class:__anon4085::WalkAST
63 AC(ac),
184 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
190 BR.EmitBasicReport(AC->getDecl(),
200 BR.EmitBasicReport(AC->getDecl(),
H A DDeadStoresChecker.cpp124 AnalysisDeclContext* AC; member in class:__anon4009::DeadStoreObs
137 : cfg(cfg), Ctx(ctx), BR(br), AC(ac), Parents(parents),
150 V.TraverseStmt(AC->getBody());
199 BR.EmitBasicReport(AC->getDecl(), BugType, "Dead store", os.str(), L, R);
217 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
433 AnalysisDeclContext *AC = mgr.getAnalysisDeclContext(D); local
437 DeadStoreObs A(cfg, BR.getContext(), BR, AC, pmap, FS.Escaped);
H A DIdempotentOperationChecker.cpp87 static bool isUnused(const Expr *E, AnalysisDeclContext *AC);
90 static bool pathWasCompletelyAnalyzed(AnalysisDeclContext *AC,
94 AnalysisDeclContext *AC);
96 AnalysisDeclContext *AC);
122 AnalysisDeclContext *AC = C.getCurrentAnalysisDeclContext(); local
141 LHSContainsFalsePositive = !CanVary(LHS, AC)
143 RHSContainsFalsePositive = !CanVary(RHS, AC)
198 if (!isUnused(LHS, AC) && !isTruncationExtensionAssignment(LHS, RHS)) {
374 AnalysisDeclContext *AC = (*ES.begin())->getLocationContext() local
376 if (!pathWasCompletelyAnalyzed(AC,
494 isUnused(const Expr *E, AnalysisDeclContext *AC) argument
539 pathWasCompletelyAnalyzed(AnalysisDeclContext *AC, const CFGBlock *CB, const CoreEngine &CE) argument
619 CanVary(const Expr *Ex, AnalysisDeclContext *AC) argument
701 isConstantOrPseudoConstant( const DeclRefExpr *DR, AnalysisDeclContext *AC) argument
[all...]
H A DCheckSecuritySyntaxOnly.cpp53 AnalysisDeclContext* AC; member in class:__anon4002::WalkAST
63 : BR(br), AC(ac), II_setid(),
283 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
284 BR.EmitBasicReport(AC->getDecl(),
320 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
321 BR.EmitBasicReport(AC->getDecl(),
362 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
363 BR.EmitBasicReport(AC->getDecl(),
405 PathDiagnosticLocation::createBegin(CE, BR.getSourceManager(), AC);
406 BR.EmitBasicReport(AC
[all...]
/external/clang/lib/Driver/
H A DAction.cpp22 const char *Action::getClassName(ActionClass AC) { argument
23 switch (AC) {
/external/clang/include/clang/Analysis/Analyses/
H A DDominators.h79 void buildDominatorTree(AnalysisDeclContext &AC) { argument
80 cfg = AC.getCFG();
/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.cpp240 AnalysisDeclContext *&AC = Contexts[D]; local
241 if (!AC)
242 AC = new AnalysisDeclContext(this, D, cfgBuildOptions);
243 return AC;
H A DLiveVariables.cpp506 LiveVariables::computeLiveness(AnalysisDeclContext &AC, argument
510 CFG *cfg = AC.getCFG();
519 LiveVariablesImpl *LV = new LiveVariablesImpl(AC, killAtAssign);
523 DataflowWorklist worklist(*cfg, AC);
H A DUninitializedValues.cpp325 ClassifyRefs(AnalysisDeclContext &AC) : DC(cast<DeclContext>(AC.getDecl())) {} argument
/external/kernel-headers/original/linux/
H A Dif_tr.h28 #define AC 0x10 macro
/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/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-thai.cc39 AC, enumerator in enum:thai_consonant_type_t
50 return AC;
173 T1, /* AC */
200 B0, /* AC */
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp413 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); local
417 AC->getAtCatchLoc()));
419 BuildScopeInformation(AC->getCatchBody(),
H A DAnalysisBasedWarnings.cpp74 static void CheckUnreachable(Sema &S, AnalysisDeclContext &AC) { argument
76 reachable_code::FindUnreachableCode(AC, UC);
100 static ControlFlowKind CheckFallThrough(AnalysisDeclContext &AC) { argument
101 CFG *cfg = AC.getCFG();
110 bool AddEHEdges = AC.getAddEHEdges();
326 AnalysisDeclContext &AC) {
358 switch (CheckFallThrough(AC)) {
856 static void DiagnoseSwitchLabelsFallthrough(Sema &S, AnalysisDeclContext &AC, argument
867 if (!AC.getASTContext().getLangOpts().CPlusPlus11)
871 FM.TraverseStmt(AC
323 CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body, const BlockExpr *blkExpr, const CheckFallThroughDiagnostics& CD, AnalysisDeclContext &AC) argument
1611 runUninitializedVariablesAnalysis(*cast<DeclContext>(D), *cfg, AC, local
[all...]
/external/clang/lib/AST/
H A DDumpXML.cpp861 void setAccessControl(StringRef prop, ObjCIvarDecl::AccessControl AC) { argument
862 switch (AC) {
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp373 const AnalysisDeclContext *AC,
380 BlockTextRegion::ProfileRegion(ID, BD, locTy, AC, superRegion);
868 AnalysisDeclContext *AC) {
869 return getSubRegion<BlockTextRegion>(BD, locTy, AC, getCodeRegion());
1314 AnalysisDeclContext *AC = getCodeRegion()->getAnalysisDeclContext();
1316 llvm::tie(I, E) = AC->getReferencedBlockVars(BC->getDecl());
371 ProfileRegion(llvm::FoldingSetNodeID& ID, const BlockDecl *BD, CanQualType, const AnalysisDeclContext *AC, const MemRegion*) argument
867 getBlockTextRegion(const BlockDecl *BD, CanQualType locTy, AnalysisDeclContext *AC) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h582 AnalysisDeclContext *AC; member in class:clang::ento::BlockTextRegion
587 : CodeTextRegion(sreg, BlockTextRegionKind), BD(bd), AC(ac), locTy(lTy) {}
598 AnalysisDeclContext *getAnalysisDeclContext() const { return AC; }
1244 AnalysisDeclContext *AC);

Completed in 1245 milliseconds

12