HomeSort by: relevance | last modified time | path
    Searched refs:ParentLC (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnalysisDeclContext.h 181 const StackFrameContext *getStackFrame(LocationContext const *ParentLC,
187 getBlockInvocationContext(const LocationContext *ParentLC,
310 StackFrameContext(AnalysisDeclContext *ADC, const LocationContext *ParentLC,
313 : LocationContext(StackFrame, ADC, ParentLC, ID), CallSite(S),
332 const LocationContext *ParentLC, const Stmt *S,
335 ProfileCommon(ID, StackFrame, ADC, ParentLC, S);
356 const LocationContext *ParentLC, const BlockDecl *BD,
358 : LocationContext(Block, ADC, ParentLC, ID), BD(BD), Data(Data) {}
370 const LocationContext *ParentLC, const BlockDecl *BD,
372 ProfileCommon(ID, Block, ADC, ParentLC, BD)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 311 const LocationContext *ParentLC = LC->getParent();
312 assert(ParentLC && "We don't start analysis from autosynthesized code");
313 while (ParentLC->getAnalysisDeclContext()->isBodyAutosynthesized()) {
314 LC = ParentLC;
315 ParentLC = LC->getParent();
316 assert(ParentLC && "We don't start analysis from autosynthesized code");
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp 312 AnalysisDeclContext::getStackFrame(const LocationContext *ParentLC,
315 return getLocationContextManager().getStackFrame(this, ParentLC, S, Blk,
320 const LocationContext *ParentLC, const BlockDecl *BD, const void *Data) {
321 return getLocationContextManager().getBlockInvocationContext(this, ParentLC,
391 AnalysisDeclContext *ADC, const LocationContext *ParentLC,
394 BlockInvocationContext::Profile(ID, ADC, ParentLC, BD, Data);
400 L = new BlockInvocationContext(ADC, ParentLC, BD, Data, ++NewID);

Completed in 68 milliseconds