Home
last modified time | relevance | path

Searched refs:BlockScope (Results 1 – 12 of 12) sorted by relevance

/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DScope.cpp42 if ((Flags & (FnScope | ClassScope | BlockScope | TemplateParamScope | in Init()
65 if (flags & BlockScope) BlockParent = this; in Init()
158 } else if (Flags & BlockScope) { in dumpImpl()
160 Flags &= ~BlockScope; in dumpImpl()
H A DSema.cpp1100 void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) { in PushBlockScope() argument
1102 BlockScope, Block)); in PushBlockScope()
H A DSemaExprCXX.cpp624 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope | in ActOnCXXThrow()
/minix/external/bsd/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h53 std::vector<Block> BlockScope; variable
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance"); in ~BitstreamWriter()
218 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordIndex)); in EnterSubblock()
219 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in EnterSubblock()
230 assert(!BlockScope.empty() && "Block scope imbalance!"); in ExitBlock()
231 const Block &B = BlockScope.back(); in ExitBlock()
248 BlockScope.pop_back(); in ExitBlock()
H A DBitstreamReader.h200 SmallVector<Block, 8> BlockScope; variable
469 if (BlockScope.empty()) return true; in ReadBlockEnd()
482 CurCodeSize = BlockScope.back().PrevCodeSize; in popBlockScope()
484 CurAbbrevs = std::move(BlockScope.back().PrevAbbrevs); in popBlockScope()
485 BlockScope.pop_back(); in popBlockScope()
/minix/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DScope.h69 BlockScope = 0x40, enumerator
203 bool isBlockScope() const { return Flags & BlockScope; } in isBlockScope()
367 Scope::BlockScope | Scope::TemplateParamScope | in isSwitchScope()
H A DScopeInfo.h548 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) in BlockScopeInfo() argument
550 TheScope(BlockScope) in BlockScopeInfo()
H A DSema.h1065 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
/minix/external/bsd/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp23 BlockScope.clear(); in freeState()
30 BlockScope.push_back(Block(CurCodeSize)); in EnterSubBlock()
31 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in EnterSubBlock()
/minix/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseExpr.cpp2621 ParseScope BlockScope(this, Scope::BlockScope | Scope::FnScope | in ParseBlockLiteralExpression() local
2703 BlockScope.Exit(); in ParseBlockLiteralExpression()
H A DParseExprCXX.cpp1227 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope; in ParseLambdaExpressionAfterIntroducer()
H A DParseDecl.cpp2616 Scope::BlockScope | in ParseDeclarationSpecifiers()