Searched defs:BlockScopeInfo (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Sema/
H A DScopeInfo.h10 // This file defines FunctionScopeInfo and BlockScopeInfo.
115 class BlockScopeInfo : public FunctionScopeInfo { class in namespace:clang::sema
140 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) function in class:clang::sema::BlockScopeInfo
147 virtual ~BlockScopeInfo();
150 static bool classof(const BlockScopeInfo *BSI) { return true; }
/external/clang/lib/Sema/
H A DSema.cpp56 BlockScopeInfo::~BlockScopeInfo() { }
784 FunctionScopes.push_back(new BlockScopeInfo(getDiagnostics(),
817 BlockScopeInfo *Sema::getCurBlock() {
821 return dyn_cast<BlockScopeInfo>(FunctionScopes.back());

Completed in 66 milliseconds