OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnalysisDeclContext
(Results
1 - 25
of
36
) sorted by null
1
2
/external/clang/test/SemaCXX/
missing-header.cpp
5
class
AnalysisDeclContext
{};
6
static ControlFlowKind CheckFallThrough(
AnalysisDeclContext
&AC) {
/external/clang/include/clang/Analysis/Analyses/
ReachableCode.h
28
class
AnalysisDeclContext
;
52
void FindUnreachableCode(
AnalysisDeclContext
&AC, Callback &CB);
LiveVariables.h
75
static LiveVariables *computeLiveness(
AnalysisDeclContext
&analysisContext,
98
static LiveVariables *create(
AnalysisDeclContext
&analysisContext) {
111
static LiveVariables *create(
AnalysisDeclContext
&analysisContext) {
UninitializedValues.h
23
class
AnalysisDeclContext
;
103
AnalysisDeclContext
&ac,
PostOrderCFGView.h
105
static PostOrderCFGView *create(
AnalysisDeclContext
&analysisContext);
ThreadSafety.h
160
void runThreadSafetyAnalysis(
AnalysisDeclContext
&AC,
Dominators.h
77
/// The CFG information is passed via
AnalysisDeclContext
79
void buildDominatorTree(
AnalysisDeclContext
&AC) {
/external/clang/include/clang/Analysis/
AnalysisContext.h
10
// This file defines
AnalysisDeclContext
, a class that manages the analysis
48
/// to
AnalysisDeclContext
.
62
// static [Derived*] create(
AnalysisDeclContext
&Ctx);
64
// which creates the analysis object given an
AnalysisDeclContext
.
68
///
AnalysisDeclContext
contains the context data for the function or method
70
class
AnalysisDeclContext
{
72
///
AnalysisDeclContext
. This may be null.
95
AnalysisDeclContext
(AnalysisDeclContextManager *Mgr,
98
AnalysisDeclContext
(AnalysisDeclContextManager *Mgr,
102
~
AnalysisDeclContext
();
[
all
...]
/external/clang/lib/Analysis/
AnalysisDeclContext.cpp
1
//==
AnalysisDeclContext
.cpp - Analysis context for Path Sens analysis -*- C++ -*-//
10
// This file defines
AnalysisDeclContext
, a class that manages the analysis context
38
AnalysisDeclContext
::
AnalysisDeclContext
(AnalysisDeclContextManager *Mgr,
53
AnalysisDeclContext
::
AnalysisDeclContext
(AnalysisDeclContextManager *Mgr,
92
Stmt *
AnalysisDeclContext
::getBody(bool &IsAutosynthesized) const {
113
Stmt *
AnalysisDeclContext
::getBody() const {
118
bool
AnalysisDeclContext
::isBodyAutosynthesized() const {
124
const ImplicitParamDecl *
AnalysisDeclContext
::getSelfDecl() const
[
all
...]
Android.mk
19
AnalysisDeclContext
.cpp \
PostOrderCFGView.cpp
31
PostOrderCFGView *PostOrderCFGView::create(
AnalysisDeclContext
&ctx) {
LiveVariables.cpp
35
DataflowWorklist(const CFG &cfg,
AnalysisDeclContext
&Ctx)
99
AnalysisDeclContext
&analysisContext;
119
LiveVariablesImpl(
AnalysisDeclContext
&ac, bool KillAtAssign)
375
AnalysisDeclContext
::referenced_decls_iterator I, E;
506
LiveVariables::computeLiveness(
AnalysisDeclContext
&AC,
/external/clang/lib/StaticAnalyzer/Checkers/
CheckSizeofPointer.cpp
27
AnalysisDeclContext
* AC;
30
WalkAST(BugReporter &br,
AnalysisDeclContext
* ac) : BR(br), AC(ac) {}