Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Bitcode/
DBitstreamReader.h152 SmallVector<Block, 8> BlockScope; variable
198 BlockScope = RHS.BlockScope;
199 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size());
201 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs;
216 for (unsigned S = 0, e = static_cast<unsigned>(BlockScope.size()); in freeState()
218 std::vector<BitCodeAbbrev*> &Abbrevs = BlockScope[S].PrevAbbrevs; in freeState()
223 BlockScope.clear(); in freeState()
415 BlockScope.push_back(Block(CurCodeSize));
416 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs);
442 if (BlockScope.empty()) return true; in ReadBlockEnd()
[all …]
DBitstreamWriter.h53 std::vector<Block> BlockScope; variable
101 assert(BlockScope.empty() && CurAbbrevs.empty() && "Block imbalance"); in ~BitstreamWriter()
228 BlockScope.push_back(Block(OldCodeSize, BlockSizeWordIndex)); in EnterSubblock()
229 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in EnterSubblock()
243 assert(!BlockScope.empty() && "Block scope imbalance!"); in ExitBlock()
250 const Block &B = BlockScope.back(); in ExitBlock()
266 BlockScope.back().PrevAbbrevs.swap(CurAbbrevs); in ExitBlock()
267 BlockScope.pop_back(); in ExitBlock()
/external/clang/include/clang/Sema/
DScope.h61 BlockScope = 0x40, enumerator
161 bool isBlockScope() const { return Flags & BlockScope; } in isBlockScope()
284 Scope::BlockScope | Scope::TemplateParamScope | in isSwitchScope()
DScopeInfo.h318 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block) in BlockScopeInfo() argument
320 TheScope(BlockScope) in BlockScopeInfo()
DSema.h823 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
/external/clang/lib/Sema/
DScope.cpp51 if (flags & BlockScope) BlockParent = this; in Init()
DSema.cpp963 void Sema::PushBlockScope(Scope *BlockScope, BlockDecl *Block) { in PushBlockScope() argument
965 BlockScope, Block)); in PushBlockScope()
DSemaExprCXX.cpp540 (Scope::FnScope | Scope::ClassScope | Scope::BlockScope | in ActOnCXXThrow()
/external/clang/lib/Parse/
DParseExpr.cpp2427 ParseScope BlockScope(this, Scope::BlockScope | Scope::FnScope | in ParseBlockLiteralExpression() local
2497 BlockScope.Exit(); in ParseBlockLiteralExpression()
DParseExprCXX.cpp880 unsigned ScopeFlags = Scope::BlockScope | Scope::FnScope | Scope::DeclScope; in ParseLambdaExpressionAfterIntroducer()
DParseDecl.cpp2168 Scope::BlockScope | in ParseDeclarationSpecifiers()